forked from rughh/on_ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
56 lines (51 loc) · 1.11 KB
/
Copy pathGemfile
File metadata and controls
56 lines (51 loc) · 1.11 KB
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
source 'http://rubygems.org'
ruby '~> 2.5.0'
gem 'puma'
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'rails', '6.0.0.rc1'
gem 'pg', '1.1.4'
gem 'rack-cache'
gem 'slim-rails'
gem 'redcarpet'
gem 'omniauth'
gem 'omniauth-twitter'
gem 'omniauth-github'
gem 'ri_cal'
gem 'decent_exposure'
gem 'geocoder'
gem 'acts_as_api'
gem 'whitelabel'
gem 'exception_notification'
gem 'feedjira'
gem 'formtastic'
gem 'kaminari'
gem 'link_thumbnailer'
gem 'validate_url'
gem 'addressable'
gem 'public_suffix'
gem 'administrate'
# assets
gem 'sass-rails'
gem 'font-awesome-rails'
gem 'uglifier'
group :production do
gem 'dalli', '~> 2.7.10'
gem 'kgio', '~> 2.11.1'
gem 'lograge', '~> 0.11.0'
gem 'rails_12factor', '~> 0.0.2'
end
group :development do
gem 'partially_useful', github: 'phoet/partially_useful', branch: 'prepare_rails6'
gem 'listen'
gem 'web-console'
end
group :development, :test do
gem 'letter_opener'
gem 'faker'
gem 'byebug'
gem 'rspec-rails', '>= 3.9.0.pre'
gem 'rspec-collection_matchers'
gem 'factory_bot_rails'
gem 'rails-controller-testing'
gem 'localer'
end