-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·52 lines (45 loc) · 975 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
47
48
49
50
51
52
source 'https://rubygems.org'
# Standard Rails gems
# ruby '2.6.3'
ruby '2.6.8'
gem 'rails', '4.2.8'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails', "~> 2.3.0"
gem 'momentjs-rails', '>= 2.9.0'
gem 'bootstrap3-datetimepicker-rails', '~> 4.14.30'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'bootstrap-sass'
gem 'devise'
#gem 'simple_form'
gem "simple_form", ">= 3.5.1"
gem 'unicorn'
gem 'unicorn-rails'
gem 'bootswatch-rails'
gem 'kaminari'
gem 'rails_db'
gem "pundit"
gem 'rails_12factor'
gem "puma"
# gem 'pg', '1.2.3'
#gem 'sqlite3'
# Use sqlite3 as the database for Active Record
#gem "rack", ">= 2.1.4"
#gem "nokogiri" "1.12.3"
group :production do
gem 'pg', '~> 0.21'
end
group :development do
gem 'sqlite3', '~> 1.3.6'
gem 'better_errors'
gem 'quiet_assets'
gem 'rails_layout'
end
group :development, :test do
#gem 'sqlite3'
gem 'byebug'
gem 'web-console', '~> 2.0'
#gem 'spring'
end