Skip to content

Commit

Permalink
Revert "Add isolated Gemfile for core so that other components of Spr…
Browse files Browse the repository at this point in the history
…ee are not included."

This reverts commit 105db90.

This commit should not be here just yet...
  • Loading branch information
radar committed Mar 20, 2012
1 parent 5379fef commit a980448
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 52 deletions.
47 changes: 46 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,48 @@
eval(File.read(File.dirname(__FILE__) + '/common_spree_dependencies.rb'))
source 'http://rubygems.org'

gem 'json'
gem 'sqlite3'
gem 'mysql2'
gem 'pg'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', "~> 3.2"
gem 'coffee-rails', "~> 3.2"
end

group :test do
gem 'guard'
gem 'guard-rspec', '~> 0.5.0'
gem 'rspec-rails', '~> 2.8.0'
gem 'factory_girl_rails', '~> 1.7.0'
gem 'email_spec', '~> 1.2.1'

platform :ruby_18 do
gem 'rcov'
end

platform :ruby_19 do
gem 'simplecov'
end

gem 'ffaker'
gem 'shoulda-matchers', '~> 1.0.0'
gem 'capybara'
gem 'selenium-webdriver', '2.16.0'
gem 'database_cleaner', '0.7.1'
gem 'launchy'
end

# platform :ruby_18 do
# gem "ruby-debug"
# end

# platform :ruby_19 do
# gem "ruby-debug19"
# end

gemspec


51 changes: 0 additions & 51 deletions common_spree_dependencies.rb

This file was deleted.

0 comments on commit a980448

Please sign in to comment.