-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathGemfile
74 lines (56 loc) · 1.11 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.4.1'
gem 'puma'
gem 'rails', '5.1.1'
gem 'rails-i18n', '~> 5.0.0'
gem 'pg'
gem 'redis'
gem 'redis-namespace'
gem 'graphql', '1.6.4'
gem 'pundit'
gem 'gemoji', '~> 2.0'
gem 'konpow', github: 'rutan/konpow'
gem 'slim-rails'
gem 'therubyracer', platforms: :ruby
gem 'uglifier', '>= 1.3.0'
gem 'draper'
gem 'omniauth'
gem 'omniauth-github'
gem 'omniauth-google-oauth2'
gem 'omniauth-slack'
gem 'omniauth-twitter'
gem 'slack-api'
gem 'boffin'
gem 'diffy'
gem 'kaminari'
gem 'ransack'
gem 'carrierwave'
gem 'carrierwave-aws'
gem 'mini_magick'
gem 'html-pipeline-nico_link'
gem 'nokogiri', '~> 1.8.1'
gem 'pot_markdown'
gem 'dotenv-rails'
gem 'foreman'
group :production do
gem 'rails_12factor'
gem 'sprockets-redirect'
end
group :development, :test do
gem 'awesome_print'
gem 'better_errors'
gem 'binding_of_caller'
gem 'pry-byebug'
gem 'pry-rails'
gem 'annotate'
gem 'ruby-prof'
gem 'yard'
gem 'rubocop'
gem 'factory_bot_rails'
gem 'faker'
gem 'fakes3'
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'webmock'
end