forked from turbosquid/hound
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
41 lines (36 loc) · 732 Bytes
/
Gemfile
File metadata and controls
41 lines (36 loc) · 732 Bytes
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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'angularjs-rails'
gem 'bourbon'
gem 'coffee-rails'
gem 'delayed_job_active_record'
gem 'font-awesome-rails'
gem 'haml-rails'
gem 'high_voltage'
gem 'jquery-rails'
gem 'octokit'
gem 'omniauth-github'
gem 'pg'
gem 'rails', '4.0.4'
gem 'rubocop'
gem 'sass-rails', '~> 4.0.2'
gem 'sentry-raven'
gem 'uglifier', '>= 1.0.3'
gem 'unicorn'
group :development, :test do
gem 'debugger'
gem 'foreman'
gem 'rspec-rails', '>= 2.14'
end
group :test do
gem 'capybara', '~> 2.1.0'
gem 'capybara-webkit', '~> 1.1.1'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'launchy'
gem 'shoulda-matchers'
gem 'webmock'
end
group :staging, :production do
gem 'rails_12factor'
end