-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
43 lines (35 loc) · 941 Bytes
/
Copy pathGemfile
File metadata and controls
43 lines (35 loc) · 941 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
43
source 'https://rubygems.org'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
# database
gem 'sqlite3'
gem 'mysql2', '~> 0.4.4'
gem 'puma', '~> 3.0'
# paging
gem 'kaminari', '~> 0.17.0'
gem 'bootstrap-kaminari-views', '~> 0.0.5'
# ui
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'haml-rails'
gem 'bootstrap-sass', '~> 3.3', '>= 3.3.7'
gem 'unobtrusive_flash', '~> 3.2'
# util
gem 'envyable', '~> 1.1'
gem 'meta-tags', '~> 2.3', '>= 2.3.1'
gem 'slack-notifier', '~> 1.5', '>= 1.5.1'
gem 'exception_notification', '~> 4.2', '>= 4.2.1'
gem 'meta-tags', '~> 2.3', '>= 2.3.1'
group :development, :test do
gem 'byebug', platform: :mri
end
group :development do
gem 'web-console'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]