-
Notifications
You must be signed in to change notification settings - Fork 21
/
Gemfile
59 lines (46 loc) · 1.03 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
source 'https://rubygems.org'
ruby '2.7.4'
gem 'rails', '5.2.6'
gem 'pg', "0.18.4"
gem 'puma'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'redcarpet'
gem 'devise'
gem 'pundit'
gem 'ransack'
gem 'crummy', git: 'https://github.com/knightq/crummy'
gem 'kaminari'
gem 'kaminari-bootstrap'
gem 'font-awesome-rails'
gem 'rails-jquery-autocomplete'
gem 'momentjs-rails', '>= 2.8.1'
gem 'bootstrap3-datetimepicker-rails', '~> 4.0.0'
gem 'honeybadger', '~> 2.0'
gem 'phil_columns'
gem 'phil_columns-activerecord', git: 'https://github.com/Ariel-Thomas/phil_columns-activerecord'
gem 'pry-rails'
gem 'colorize'
gem 'pdf-reader'
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'factory_bot_rails'
gem 'faker'
gem 'database_cleaner'
gem 'launchy'
gem 'capybara'
gem 'selenium-webdriver'
gem 'dotenv-rails'
gem 'byebug'
gem 'pry-byebug'
end
group :production do
gem 'rails_12factor'
end