Skip to content
This repository has been archived by the owner on Nov 11, 2017. It is now read-only.

Commit

Permalink
Update gem dependency to add database_cleaner
Browse files Browse the repository at this point in the history
Yep, that's needed.
  • Loading branch information
sikachu committed Jun 8, 2011
1 parent bf52523 commit ce9cdc1
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 12 deletions.
1 change: 1 addition & 0 deletions Gemfile
@@ -1,3 +1,4 @@
source "http://rubygems.org"
gemspec
gem "rails", ">= 3.0"
gem "database_cleaner", :require => false
36 changes: 30 additions & 6 deletions Gemfile.lock
Expand Up @@ -39,20 +39,33 @@ GEM
bundler
rake
arel (2.0.10)
aruba (0.3.6)
childprocess (>= 0.1.7)
cucumber (>= 0.10.0)
rspec (>= 2.5.0)
aruba (0.3.7)
childprocess (>= 0.1.9)
cucumber (>= 0.10.5)
rspec (>= 2.6.0)
builder (2.1.2)
capybara (1.0.0.rc1)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
selenium-webdriver (~> 0.2.0)
xpath (~> 0.1.4)
childprocess (0.1.9)
ffi (~> 1.0.6)
cucumber (0.10.5)
cucumber (0.10.6)
builder (>= 2.1.2)
diff-lcs (>= 1.1.2)
gherkin (~> 2.4.0)
json (>= 1.4.6)
term-ansicolor (>= 1.0.5)
cucumber-rails (0.5.2)
capybara (>= 1.0.0.rc1)
cucumber (>= 0.10.5)
nokogiri (>= 1.4.4)
rack-test (>= 0.5.7)
daemons (1.1.3)
database_cleaner (0.6.7)
diff-lcs (1.1.2)
erubis (2.6.6)
abstract (>= 1.0.0)
Expand All @@ -62,12 +75,14 @@ GEM
json (>= 1.4.6)
i18n (0.5.0)
json (1.5.1)
json_pure (1.5.1)
mail (2.2.19)
activesupport (>= 2.3.6)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.16)
nokogiri (1.4.4)
polyglot (0.3.1)
rack (1.2.3)
rack-mount (0.6.14)
Expand Down Expand Up @@ -101,6 +116,12 @@ GEM
activesupport (~> 3.0)
railties (~> 3.0)
rspec (~> 2.6.0)
rubyzip (0.9.4)
selenium-webdriver (0.2.1)
childprocess (>= 0.1.7)
ffi (>= 1.0.7)
json_pure
rubyzip
sqlite3 (1.3.3)
sqlite3-ruby (1.3.3)
sqlite3 (>= 1.3.3)
Expand All @@ -113,13 +134,16 @@ GEM
treetop (1.4.9)
polyglot (>= 0.3.1)
tzinfo (0.3.27)
xpath (0.1.4)
nokogiri (~> 1.3)

PLATFORMS
ruby

DEPENDENCIES
appraisal
cucumber
cucumber-rails (~> 0.5.1)
database_cleaner
diesel!
rails (>= 3.0)
rspec-rails (~> 2.6.1)
Expand Down
2 changes: 1 addition & 1 deletion diesel.gemspec
Expand Up @@ -26,7 +26,7 @@ Gem::Specification.new do |s|

s.add_dependency('railties')

s.add_development_dependency('cucumber')
s.add_development_dependency('cucumber-rails', '~> 0.5.1')
s.add_development_dependency('appraisal')
s.add_development_dependency('rspec-rails', '~> 2.6.1')
s.add_development_dependency('thin')
Expand Down
28 changes: 26 additions & 2 deletions gemfiles/3.0.7.gemfile.lock
Expand Up @@ -44,15 +44,28 @@ GEM
cucumber (>= 0.10.5)
rspec (>= 2.6.0)
builder (2.1.2)
capybara (1.0.0.rc1)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
selenium-webdriver (~> 0.2.0)
xpath (~> 0.1.4)
childprocess (0.1.9)
ffi (~> 1.0.6)
cucumber (0.10.5)
cucumber (0.10.6)
builder (>= 2.1.2)
diff-lcs (>= 1.1.2)
gherkin (~> 2.4.0)
json (>= 1.4.6)
term-ansicolor (>= 1.0.5)
cucumber-rails (0.5.2)
capybara (>= 1.0.0.rc1)
cucumber (>= 0.10.5)
nokogiri (>= 1.4.4)
rack-test (>= 0.5.7)
daemons (1.1.3)
database_cleaner (0.6.7)
diff-lcs (1.1.2)
erubis (2.6.6)
abstract (>= 1.0.0)
Expand All @@ -62,12 +75,14 @@ GEM
json (>= 1.4.6)
i18n (0.5.0)
json (1.5.1)
json_pure (1.5.1)
mail (2.2.19)
activesupport (>= 2.3.6)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.16)
nokogiri (1.4.4)
polyglot (0.3.1)
rack (1.2.3)
rack-mount (0.6.14)
Expand Down Expand Up @@ -101,6 +116,12 @@ GEM
activesupport (~> 3.0)
railties (~> 3.0)
rspec (~> 2.6.0)
rubyzip (0.9.4)
selenium-webdriver (0.2.1)
childprocess (>= 0.1.7)
ffi (>= 1.0.7)
json_pure
rubyzip
sqlite3 (1.3.3)
sqlite3-ruby (1.3.3)
sqlite3 (>= 1.3.3)
Expand All @@ -113,13 +134,16 @@ GEM
treetop (1.4.9)
polyglot (>= 0.3.1)
tzinfo (0.3.27)
xpath (0.1.4)
nokogiri (~> 1.3)

PLATFORMS
ruby

DEPENDENCIES
appraisal
cucumber
cucumber-rails (~> 0.5.1)
database_cleaner
diesel!
rails (= 3.0.7)
rake (~> 0.8.7)
Expand Down
30 changes: 27 additions & 3 deletions gemfiles/3.1.0.rc1.gemfile.lock
Expand Up @@ -48,23 +48,36 @@ GEM
rspec (>= 2.6.0)
bcrypt-ruby (2.1.4)
builder (3.0.0)
capybara (1.0.0.rc1)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
selenium-webdriver (~> 0.2.0)
xpath (~> 0.1.4)
childprocess (0.1.9)
ffi (~> 1.0.6)
coffee-script (2.2.0)
coffee-script-source
execjs
coffee-script-source (1.1.1)
cucumber (0.10.5)
cucumber (0.10.6)
builder (>= 2.1.2)
diff-lcs (>= 1.1.2)
gherkin (~> 2.4.0)
json (>= 1.4.6)
term-ansicolor (>= 1.0.5)
cucumber-rails (0.5.2)
capybara (>= 1.0.0.rc1)
cucumber (>= 0.10.5)
nokogiri (>= 1.4.4)
rack-test (>= 0.5.7)
daemons (1.1.3)
database_cleaner (0.6.7)
diff-lcs (1.1.2)
erubis (2.7.0)
eventmachine (0.12.10)
execjs (1.1.0)
execjs (1.1.1)
multi_json (~> 1.0)
ffi (1.0.9)
gherkin (2.4.0)
Expand All @@ -75,12 +88,14 @@ GEM
railties (~> 3.0)
thor (~> 0.14)
json (1.5.1)
json_pure (1.5.1)
mail (2.3.0)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.16)
multi_json (1.0.3)
nokogiri (1.4.4)
polyglot (0.3.1)
rack (1.3.0)
rack-cache (1.0.2)
Expand Down Expand Up @@ -119,7 +134,13 @@ GEM
activesupport (~> 3.0)
railties (~> 3.0)
rspec (~> 2.6.0)
rubyzip (0.9.4)
sass (3.1.2)
selenium-webdriver (0.2.1)
childprocess (>= 0.1.7)
ffi (>= 1.0.7)
json_pure
rubyzip
sprockets (2.0.0.beta.10)
hike (~> 1.0)
rack (~> 1.0)
Expand All @@ -140,14 +161,17 @@ GEM
uglifier (0.5.4)
execjs (>= 0.3.0)
multi_json (>= 1.0.2)
xpath (0.1.4)
nokogiri (~> 1.3)

PLATFORMS
ruby

DEPENDENCIES
appraisal
coffee-script
cucumber
cucumber-rails (~> 0.5.1)
database_cleaner
diesel!
jquery-rails
rails (= 3.1.0.rc1)
Expand Down

0 comments on commit ce9cdc1

Please sign in to comment.