Commit 6bad75a753db28f6d6c229b77e8670989a572147

Authored by Ábner Silva de Oliveira
1 parent 84355ff9

revert Gemfile sources change

Showing 3 changed files with 8 additions and 7 deletions   Show diff stats
Gemfile
1   -source 'https://www.rubygems.org'
2   -#source :rubygems
3   -#source "http://gems.github.com"
  1 +source :rubygems
  2 +source "http://gems.github.com"
4 3  
5 4 gem "rake", "~> 0.9.2.2"
6 5 gem "rdoc", "~> 3.12"
... ...
Gemfile.lock
1 1 GEM
2   - remote: http://rubygems.org/
3   - remote: http://gems.github.com/
  2 + remote: https://www.rubygems.org/
4 3 specs:
5 4 actionmailer (2.3.18)
6 5 actionpack (= 2.3.18)
... ... @@ -77,6 +76,7 @@ GEM
77 76 activesupport
78 77 sendgrid (0.1.4)
79 78 shoulda (2.10.3)
  79 + sqlite3 (1.3.8)
80 80 term-ansicolor (1.0.7)
81 81 test-unit (1.2.3)
82 82 hoe (>= 1.5.1)
... ... @@ -123,6 +123,7 @@ DEPENDENCIES
123 123 rubaidh-google_analytics (= 1.1.4)
124 124 sendgrid (= 0.1.4)
125 125 shoulda (~> 2.10.1)
  126 + sqlite3
126 127 test-unit (= 1.2.3)
127 128 thoughtbot-clearance (= 0.8.2)
128 129 webrat (= 0.5.3)
... ...
config/database.yml
... ... @@ -6,10 +6,11 @@ development: &default
6 6 database: rebirth_development
7 7 pool: 5
8 8 timeout: 5000
  9 + password: r3dfr0g
9 10  
10 11 test: &test
11   - <<: *default
12   - database: pairwise_test
  12 + adapter: sqlite3
  13 + database: db/test.sqlite3
13 14  
14 15 cucumber:
15 16 <<: *test
... ...