forked from spree/spree
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Add isolated Gemfile for core so that other components of Spr…
…ee are not included." This reverts commit 105db90. This commit should not be here just yet...
- Loading branch information
Showing
2 changed files
with
46 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
This file was deleted.
Oops, something went wrong.