forked from Genshin/spree_warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
54 lines (42 loc) · 960 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
source 'http://rubygems.org'
gem 'devise', '1.4.8'
gem 'sqlite3'
gem 'rails', '>= 3.1.1', '<= 3.1.3'
gem 'spree', "~>1.0.0"
#gem 'spree', :git => 'git://github.com/spree/spree.git', :branch => "1-0-stable
group :development , :test do
gem 'guard'
gem 'guard-livereload'
gem 'guard-bundler'
gem 'libnotify'
gem "sass", :require => 'sass'
#gem 'rack-livereload'
#optimisation for livereload
#gem 'yajl-ruby'
end
group :test do
gem 'guard-rspec', '~> 0.6.0'
gem 'guard-cucumber'
gem 'rspec-rails', '~> 2.8.0'
gem 'factory_girl_rails', '~> 1.6.0'
gem 'cucumber-rails'
gem 'ffaker'
gem 'shoulda-matchers', '~> 1.0.0'
gem 'capybara'
gem 'selenium-webdriver', '~> 2.18.0'
gem 'database_cleaner', '0.7.1'
gem 'launchy'
platform :ruby_18 do
gem 'rcov'
end
platform :ruby_19 do
gem 'simplecov'
end
end
platform :ruby_18 do
gem "ruby-debug"
end
platform :ruby_19 do
gem "ruby-debug19"
end
gemspec