forked from octobox/octobox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
50 lines (45 loc) · 940 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
source 'https://rubygems.org'
ruby '2.4.0'
gem 'rails', '~> 5.0', '>= 5.0.2'
gem 'bootstrap-sass'
gem 'jquery-rails'
gem 'kaminari'
gem 'local_time', git: 'https://github.com/twalpole/local_time', branch: 'turbolinks5'
gem 'octicons_helper'
gem 'octokit', '~> 4.7'
gem 'omniauth-github'
gem 'pg'
gem 'puma'
gem 'sassc-rails'
gem 'turbolinks'
gem 'typhoeus'
gem 'uglifier'
gem 'pg_search'
gem 'jbuilder'
group :development, :test do
gem 'byebug', platform: :mri
gem 'dotenv-rails'
gem 'rails-controller-testing'
end
group :test do
gem 'rake', '~> 12.0'
gem 'factory_girl'
gem 'simplecov'
gem 'codeclimate-test-reporter'
gem 'webmock'
gem 'mocha'
end
group :development do
gem 'web-console'
gem 'listen'
gem 'rubocop', require: false
gem 'spring'
gem 'spring-watcher-listen'
end
group :production do
gem 'newrelic_rpm'
gem 'lograge'
gem 'rails_safe_tasks'
gem 'bugsnag'
gem 'puma_worker_killer'
end