Skip to content

Commit

Permalink
gemfile updates to support rspec tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkkelly committed Dec 25, 2010
1 parent da0bbd3 commit f01bae5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 21 deletions.
29 changes: 15 additions & 14 deletions test/railsapp/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ source 'http://rubygems.org'

gem 'rails', '3.0.3'

gem 'will_paginate', '3.0.pre2', :require => 'will_paginate'
gem 'acts_as_tree', :git => 'https://github.com/parasew/acts_as_tree.git'
gem 'radius', :path => '../../vendor/radius'
gem 'radiant', :path => '../../'
gem 'will_paginate', '3.0.pre2', :require => 'will_paginate'
gem 'acts_as_tree', :git => 'https://github.com/parasew/acts_as_tree.git'
gem 'radius', :path => '../../vendor/radius'
gem 'radiant', :path => '../../'

#gem 'radiant-page_menu-extension', :path => 'lib/extensions/page_menu'
#gem 'radiant-archive-extension', :path => 'lib/extensions/archive'
Expand All @@ -15,18 +15,19 @@ gem 'radiant', :path => '../../'
#gem 'radiant-site_templates-extension', :path => 'lib/extensions/site_templates'

group :development do
gem 'sqlite3-ruby', '~> 1.2.5', :require => 'sqlite3'
gem 'mysql', '~> 2.8.1'
gem 'mongrel', '~> 1.2.0.pre2'
gem 'sqlite3-ruby', '~> 1.2.5', :require => 'sqlite3'
gem 'mysql', '~> 2.8.1'
gem 'mongrel', '~> 1.2.0.pre2'
gem 'rspec-rails', '~> 2.3.1'
end

group :test do
gem 'ruby-debug19', '0.11.6', :require => 'ruby-debug'
gem 'rspec-rails', '2.3.1'
gem 'cucumber', '0.10.0'
gem 'cucumber-rails', '0.3.2'
gem 'database_cleaner', '0.6.0'
gem 'capybara', '0.4.0'
gem 'ruby-debug19', '~> 0.11.6', :require => 'ruby-debug'
gem 'rspec-rails', '~> 2.3.1'
gem 'cucumber', '~> 0.10.0'
gem 'cucumber-rails', '~> 0.3.2'
gem 'database_cleaner', '~> 0.6.0'
gem 'capybara', '~> 0.4.0'
gem 'dataset', :git => 'git://github.com/radiant/dataset.git', :require => nil
gem 'autotest', '4.4.6'
gem 'autotest', '~> 4.4.6'
end
14 changes: 7 additions & 7 deletions test/railsapp/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -192,18 +192,18 @@ PLATFORMS

DEPENDENCIES
acts_as_tree!
autotest (= 4.4.6)
capybara (= 0.4.0)
cucumber (= 0.10.0)
cucumber-rails (= 0.3.2)
database_cleaner (= 0.6.0)
autotest (~> 4.4.6)
capybara (~> 0.4.0)
cucumber (~> 0.10.0)
cucumber-rails (~> 0.3.2)
database_cleaner (~> 0.6.0)
dataset!
mongrel (~> 1.2.0.pre2)
mysql (~> 2.8.1)
radiant!
radius!
rails (= 3.0.3)
rspec-rails (= 2.3.1)
ruby-debug19 (= 0.11.6)
rspec-rails (~> 2.3.1)
ruby-debug19 (~> 0.11.6)
sqlite3-ruby (~> 1.2.5)
will_paginate (= 3.0.pre2)

0 comments on commit f01bae5

Please sign in to comment.