forked from waihon/filterrific_demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (41 loc) · 972 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
45
46
source 'https://rubygems.org'
ruby "2.3.1"
gem 'rails', '5.0.0'
gem 'bootstrap-datepicker-rails'
gem 'bootstrap-sass'
gem 'chardinjs-rails'
gem 'filterrific' #, path: '../filterrific'
gem 'haml-rails'
gem 'jbuilder'
gem 'jquery-rails'
group :production do
gem 'pg'
end
gem 'random_data'
gem 'thin'
gem 'turbolinks'
gem 'will_paginate'
gem 'will_paginate-bootstrap'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'uglifier'
end
gem 'coffee-rails' # specify in default group to avoid autoload warnings on tests
group :development, :test do
# supported database adapters
# gem 'pg' # already specified in default group higher up
# gem 'mysql2' # use sqlite3 for development & test
gem 'sqlite3'
end
group :development do
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console'
gem "rails-erd"
end
group :test do
gem 'wwtd'
end