forked from github-education-resources/classroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
91 lines (73 loc) · 1.88 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
source 'https://rubygems.org'
ruby '2.3.1'
gem 'rails', '~> 5.0', '>= 5.0.0.1'
gem 'airbrake'
gem 'autoprefixer-rails'
gem 'chewy', git: 'https://github.com/toptal/chewy.git', ref: '4ae2065e9204d39f8ab16df9e6b6b6b187220f87'
gem 'faraday-http-cache'
gem 'flipper'
gem 'flipper-redis'
gem 'flipper-ui'
gem 'geo_pattern'
gem 'jbuilder'
gem 'jquery-turbolinks'
gem 'kaminari'
gem 'local_time'
gem 'octicons_helper', '~> 2.1'
gem 'octokit'
gem 'omniauth'
gem 'omniauth-github'
gem 'peek'
gem 'peek-dalli'
gem 'peek-gc'
gem 'peek-git'
gem 'peek-performance_bar'
gem 'peek-pg', git: 'https://github.com/mkcode/peek-pg.git', ref: '9bbe212ed1b6b4a4ad56ded1ef4cf9179cdac0cd'
gem 'peek-sidekiq', git: 'https://github.com/Soliah/peek-sidekiq.git', ref: '261c857578ae6dc189506a35194785a4db51e54c'
gem 'pg'
gem 'pry-rails'
gem 'pry-byebug'
gem 'puma', '~> 3.0'
gem 'rack-canonical-host'
gem 'rack-timeout', require: false
gem 'rails-i18n', '~> 5.0', '>= 5.0.1'
gem 'rb-readline'
gem 'redis-namespace'
gem 'sprockets'
gem 'sass-rails', '~> 5.0', '>= 5.0.6'
gem 'sidekiq', git: 'https://github.com/mperham/sidekiq.git', ref: 'c187be65214728e212b23e2d49ad6da563a00559'
gem 'turbolinks', '~> 2.5.3'
gem 'uglifier', '>= 1.3.0'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'foreman'
end
group :development, :test do
gem 'awesome_print', require: 'ap'
gem 'bullet'
gem 'dotenv-rails'
gem 'guard-rspec', require: false
gem 'rspec-rails'
gem 'rails-controller-testing'
gem 'rubocop', require: false
gem 'scss_lint', require: false
gem 'spring'
gem 'terminal-notifier-guard'
end
group :production do
gem 'dalli'
gem 'newrelic_rpm'
gem 'pinglish'
gem 'puma_worker_killer'
gem 'rack-tracker'
gem 'rails_12factor'
end
group :test do
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'faker'
gem 'simplecov', require: false
gem 'vcr'
gem 'webmock'
end