forked from organicweb/spree-easy-contact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
36 lines (33 loc) · 831 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
source 'http://rubygems.org'
group :test do
gem 'rspec-rails', '= 2.5.0'
gem 'factory_girl', '= 1.3.3'
gem 'factory_girl_rails', '= 1.0.1'
gem 'rcov'
gem 'shoulda'
gem 'faker'
if RUBY_VERSION < "1.9"
gem "ruby-debug"
else
gem "ruby-debug19"
end
end
group :cucumber do
gem 'cucumber-rails'
gem 'database_cleaner', '= 0.6.7'
gem 'nokogiri'
gem 'capybara', '= 0.4.1.2'
gem 'factory_girl', '= 1.3.3'
gem 'factory_girl_rails', '= 1.0.1'
gem 'faker'
gem 'launchy'
if RUBY_VERSION < "1.9"
gem "ruby-debug"
else
gem "ruby-debug19"
end
end
gem 'spree', :path => 'c:\ror_projects\git_projects\spree'
gem 'spree_fitscrubs', :path => 'c:\ror_projects\git_projects\spree-fitscrubs'
gem 'spree_easy_contact', :path => 'C:/ror_projects/git_projects/spree-easy-contact'
gem 'sqlite3-ruby'