-
Notifications
You must be signed in to change notification settings - Fork 260
/
Gemfile
56 lines (47 loc) · 1.35 KB
/
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
55
56
source 'http://rubygems.org'
ruby '2.3.0'
# Load this project as a gem.
gemspec
gem "mysql2"
gem 'yard', :groups=>[:development, :test]
gem 'bluecloth', :groups=>[:development, :test] # For YARD
# gem 'query_reviewer' # Enable for performance tuning
gem "thin" # To avoid annoying Ruby 1.9.3/Rails/Webrick warnings - See http://stackoverflow.com/questions/7082364/what-does-warn-could-not-determine-content-length-of-response-body-mean-and-h
gem 'sass-rails', '~>5.0.0'
gem 'sprockets-rails', '~>2.3.1'
# Uncomment to confirm that older versions work (for compaitiblity with Spree 2.2.4/bcms_spree)
# gem 'paperclip', '~> 3.4.1'
# For testing behavior in production
group :production do
gem 'uglifier'
end
group :development do
gem 'rake'
# gem 'debugger'
gem 'better_errors'
gem 'binding_of_caller'
gem 'pry'
end
group :test, :development do
gem 'minitest'
gem "test-unit", "~> 3.0"
gem 'minitest-rails'
gem 'minitest-reporters', '~>1.0.0'
gem 'rails-controller-testing'
end
group :test do
gem 'poltergeist'
gem 'm', '~> 1.2'
gem 'single_test'
gem 'factory_girl_rails', '3.3.0'
gem "mocha", :require=>false
gem "sqlite3-ruby", :require => "sqlite3"
# Cucumber and dependencies
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails', '~> 1.4.1', :require=> false
gem 'cucumber'
gem 'launchy'
gem 'ruby-prof'
gem 'aruba'
end