-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduced rspec and wrote the first spec for this codebase.
- Loading branch information
Vijay Raghavan Aravamudhan
committed
Oct 20, 2017
1 parent
3b00c84
commit f58d9f0
Showing
16 changed files
with
546 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,6 @@ | |
/public/system | ||
|
||
.DS_Store | ||
Passwords.txt | ||
Passwords.txt | ||
|
||
/coverage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--color | ||
--order random | ||
--profile | ||
--backtrace | ||
--format Fuubar | ||
--require rails_helper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Bee-Connect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
SimpleCov.minimum_coverage 7.50 | ||
# TODO: Uncomment once you write tests for each file | ||
# SimpleCov.minimum_coverage_by_file 80 | ||
SimpleCov.refuse_coverage_drop | ||
SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter | ||
SimpleCov.start :rails do | ||
add_group 'Channels', 'app/channels' | ||
add_group 'Mailers', 'app/mailers' | ||
add_group 'Policies', 'app/policies' | ||
add_filter 'vendor/' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
development: | ||
default: &default | ||
adapter: sqlite3 | ||
# For details on connection pooling, see rails configuration guide | ||
# http://guides.rubyonrails.org/configuring.html#database-pooling | ||
pool: 5 | ||
timeout: 5000 | ||
|
||
development: | ||
<<: *default | ||
database: db/development.sqlite3 | ||
|
||
test: | ||
<<: *default | ||
database: db/test.sqlite3 | ||
|
||
production: | ||
adapter: mysql2 | ||
encoding: utf8 | ||
reconnect: false | ||
database: chatounce_production | ||
pool: 5 | ||
username: laxman | ||
password: chatouncem* | ||
password: chatouncem* |
Oops, something went wrong.