-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
68 lines (58 loc) · 1.45 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
source 'https://rubygems.org'
ruby '2.4.0'
gem 'rails', '5.0.1'
gem 'bootstrap-sass'
gem 'sass-rails'
gem 'uglifier', '>= 1.3.0'
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'turbolinks'
gem 'sdoc', '>= 0.4.0', group: :doc
gem 'bcrypt', '>= 3.1.7'
gem 'pg', '~> 0.18.0'
gem 'select2-rails'
gem 'sprockets-rails', :require => 'sprockets/railtie'
gem 'jquery-datatables-rails', '~> 3.4.0'
gem 'dotenv-rails'
gem 'roadie'
gem 'sidekiq'
gem 'sidekiq-scheduler'
gem 'redis-rails'
gem 'whenever', :require => false
gem 'kaminari'
# Use Unicorn as the app server
gem 'devise'
gem 'devise-bootstrap-views'
gem 'figaro'
gem 'puma'
group :development, :test do
gem 'factory_bot_rails'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails'
gem 'database_cleaner'
gem 'capybara'
gem 'shoulda-matchers'
gem 'faker'
gem 'guard-rspec'
gem 'launchy'
gem 'webmock'
end
group :test do
gem 'simplecov', :require => false
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '>= 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'capistrano'
gem 'capistrano3-puma'
gem 'capistrano-rails', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-rvm'
end
source 'https://rails-assets.org' do
gem 'rails-assets-tether', '>= 1.1.0'
end