-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathGemfile
59 lines (46 loc) · 1.25 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
57
58
59
source 'http://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.12'
gem 'mysql2', '0.3.11'
gem 'jquery-rails', '2.1.3'
gem "inherited_resources", "1.3.0"
gem "haml", "3.1.4"
gem "haml-rails", "0.3.4"
gem "sass", "3.2.1"
gem "simple_form", "1.5.2"
gem "uniquify", "0.1.1", :git => "git://github.com/tommyh/uniquify.git"
gem "thor", "0.17.0"
gem "airbrake", "3.1.5"
gem "newrelic_rpm", "3.5.0"
gem "thin", "1.5.0"
gem "github_api", "0.8.11"
group :test do
gem 'turn', '0.9.6', :require => false
gem 'rspec', '2.12.0'
gem "factory_girl", '4.2.0'
gem "factory_girl_rails", "4.2.1"
gem "cucumber", "1.1.4"
gem "cucumber-rails", "1.2.1", :require => false
gem 'database_cleaner', "0.9.1"
gem "capybara", "1.1.2"
gem "launchy", "2.0.5"
gem "webmock", "1.9.2"
end
group :test, :development do
gem "rspec-rails", "~> 2.6"
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.0'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'