Skip to content

Commit

Permalink
The Gems
Browse files Browse the repository at this point in the history
  • Loading branch information
arailsdemo committed Jan 29, 2011
1 parent 20d3fcf commit 83e5245
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 3 deletions.
19 changes: 16 additions & 3 deletions Gemfile
Expand Up @@ -7,8 +7,21 @@ gem 'simple_form', '>= 1.3.0'

group :development, :test do
gem 'rspec-rails', '>= 2.4.1'
gem 'webrat', '>= 0.7.3'
gem 'spork', '>= 0.9.0.rc2'

gem 'ruby-debug'
end
if ENV["RUBY_VERSION"] =~ /ruby-1.9/
gem 'ruby-debug19'
else
gem 'ruby-debug'
end
end

group :test do
gem 'factory_girl_rails', '1.1.beta1'

gem 'capybara', '0.4.1.1'
gem 'launchy', '0.3.7'
gem 'database_cleaner', '0.6.0'

gem 'webrat', '>= 0.7.3'
end
37 changes: 37 additions & 0 deletions Gemfile.lock
Expand Up @@ -30,17 +30,42 @@ GEM
activesupport (3.0.3)
arel (2.0.6)
builder (2.1.2)
capybara (0.4.1.1)
celerity (>= 0.7.9)
culerity (>= 0.2.4)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
selenium-webdriver (>= 0.0.27)
xpath (~> 0.1.3)
celerity (0.8.7)
childprocess (0.1.6)
ffi (~> 0.6.3)
columnize (0.3.2)
configuration (1.2.0)
culerity (0.2.14)
database_cleaner (0.6.0)
diff-lcs (1.1.2)
erubis (2.6.6)
abstract (>= 1.0.0)
factory_girl (2.0.0.beta1)
factory_girl_rails (1.1.beta1)
factory_girl (~> 2.0.0.beta)
rails (>= 3.0.0)
ffi (0.6.3)
rake (>= 0.8.7)
haml (3.0.25)
haml-rails (0.3.4)
actionpack (~> 3.0)
activesupport (~> 3.0)
haml (~> 3.0)
railties (~> 3.0)
i18n (0.5.0)
json_pure (1.4.6)
launchy (0.3.7)
configuration (>= 0.0.5)
rake (>= 0.8.1)
linecache (0.43)
mail (2.2.14)
activesupport (>= 2.3.6)
Expand Down Expand Up @@ -87,6 +112,12 @@ GEM
ruby-debug-base (~> 0.10.4.0)
ruby-debug-base (0.10.4)
linecache (>= 0.3)
rubyzip (0.9.4)
selenium-webdriver (0.1.2)
childprocess (~> 0.1.5)
ffi (~> 0.6.3)
json_pure
rubyzip
simple_form (1.3.0)
rails (~> 3.0.0)
spork (0.9.0.rc2)
Expand All @@ -99,12 +130,18 @@ GEM
nokogiri (>= 1.2.0)
rack (>= 1.0)
rack-test (>= 0.5.3)
xpath (0.1.3)
nokogiri (~> 1.3)

PLATFORMS
ruby

DEPENDENCIES
capybara (= 0.4.1.1)
database_cleaner (= 0.6.0)
factory_girl_rails (= 1.1.beta1)
haml-rails (>= 0.3.4)
launchy (= 0.3.7)
rails (= 3.0.3)
rspec-rails (>= 2.4.1)
ruby-debug
Expand Down
1 change: 1 addition & 0 deletions spec/spec_helper.rb
Expand Up @@ -16,4 +16,5 @@
end

Spork.each_run do
require 'factory_girl_rails'
end

0 comments on commit 83e5245

Please sign in to comment.