-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
69 lines (48 loc) · 1.92 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
source 'https://rubygems.org'
# Looking to use the Edge version? gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.1'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# Use Rack Timeout. Read more: https://github.com/heroku/rack-timeout
gem 'rack-timeout', '~> 0.4'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use MySQL as the database for Active Record
gem 'mysql2'
# Use Redis Rails to set up a Redis backed Cache and / or Session
gem 'redis-rails', '~> 5.0.0.pre'
# Use Sidekiq as a background job processor through Active Job
gem 'sidekiq', '~> 4.2'
# Use Clockwork for recurring background tasks without needing cron
# gem 'clockwork', '~> 2.0'
# Use Kaminari for pagination
# gem 'kaminari', '~> 0.16'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as the compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use jQuery as the JavaScript library
gem 'jquery-rails'
# Use Turbolinks. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Use Bootstrap SASS for Bootstrap support
gem 'bootstrap-sass', '~> 3.3'
# Use Font Awesome Rails for Font Awesome icons
gem 'font-awesome-rails', '~> 4.7'
group :development, :test do
# Call 'byebug' anywhere in your code to drop into a debugger console
gem 'byebug', platform: :mri
end
group :development do
# Enable a debug toolbar to help profile your application
gem 'rack-mini-profiler', '~> 0.10'
# Access an IRB console on exception pages or by using <%= console %>
gem 'web-console', '~> 3.3.0'
# Get notified of file changes. Read more: https://github.com/guard/listen
gem 'listen', '~> 3.0.5'
# Use Spring. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]