-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (34 loc) · 812 Bytes
/
Gemfile
File metadata and controls
42 lines (34 loc) · 812 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
source 'https://rubygems.org'
ruby '2.3.5'
gem 'rails', '~> 5.1.6'
# infrastructure
gem 'puma', '~> 3.0'
gem 'sqlite3', group: [:development, :test]
gem 'pg', group: :production
gem 'sidekiq', group: :production
# frontend
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
gem 'sass-rails', '~> 5.0'
gem 'rails_real_favicon', group: :development
# libs
gem 'state_machines'
gem 'state_machines-activerecord'
gem 'feedjira'
gem 'nokogiri', '~> 1'
# helpers
gem 'annotate', group: :development
group :development, :test do
gem 'fakeweb'
gem 'byebug', platform: :mri
gem 'rspec-rails'
gem 'rails-controller-testing'
gem 'foreman'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end