forked from rubygems/adoption-center
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (38 loc) · 787 Bytes
/
Gemfile
File metadata and controls
45 lines (38 loc) · 787 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
42
43
44
45
source 'https://rubygems.org'
gem 'rails', '4.2.2'
group :development, :test do
gem 'byebug'
gem 'dotenv-rails'
gem 'spring'
gem 'sqlite3'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'bullet'
gem 'faker'
gem 'letter_opener'
gem 'quiet_assets'
end
group :test do
gem 'vcr', '~> 2.9.3'
gem 'webmock', '~> 1.21.0'
gem 'shoulda', '~> 3.5'
end
group :production do
gem 'pg'
gem 'rails_12factor'
gem 'unicorn'
end
# Assets
gem 'coffee-rails', '~> 4.1.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
# Others
gem 'gems', '~> 0.8.3'
gem 'jquery-rails'
gem 'kaminari', '~> 0.16.3'
gem 'omniauth-github', :github => 'intridea/omniauth-github'
gem 'page_title_helper'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'turbolinks'