-
Notifications
You must be signed in to change notification settings - Fork 36
/
Gemfile
44 lines (39 loc) · 1007 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '~> 5.2.0'
gem 'puma'
# Misc
gem 'rb-readline'
gem 'sanitize'
gem 'curb'
# Frontend
gem 'twitter-bootstrap-rails'
gem 'bootstrap-sass'
gem 'sass-rails'
gem 'jquery-rails'
gem 'underscore-rails'
gem 'uglifier'
gem 'listjs-rails'
gem 'momentjs-rails', '>= 2.9.0'
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.47'
gem 'selectize-rails'
gem 'will_paginate'
gem 'font-awesome-rails'
gem 'simple_form'
gem 'therubyracer', platforms: :ruby
gem 'ruby-filemagic'
gem 'dragonfly'
gem 'rack-cache', require: 'rack/cache'
# Debugging and testing
group :development, :test do
gem 'pry-byebug'
gem 'rspec-rails'
end
# Development gems
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'listen'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen'
end