-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
52 lines (43 loc) · 1.27 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
source 'https://rubygems.org'
gem 'rails', '>= 5.0.0', '< 5.1'
gem 'puma'
gem 'pg'
gem 'acts_as_paranoid'
gem 'jbuilder', '~> 2.0'
gem "audited", "~> 4.5"
group :assets do
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
end
group :development, :test do
gem 'byebug'
gem 'sqlite3', '~> 1.3.13'
gem 'rspec-rails'
gem 'factory_girl_rails'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 3.0'
# 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', '~> 2.0.0'
gem 'listen'
gem 'rails_best_practices'
gem 'rubocop'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:jruby]
gem 'devise', git: 'https://github.com/plataformatec/devise'
gem 'simple_token_authentication', '~> 1.0'
gem 'activeadmin', '~> 1.1.0'
gem 'activeadmin_addons'
gem "kaminari", "~> 1.0.0"
gem 'browserify-rails'
gem 'devise-two-factor', '~> 3.0.0' # for two factor
gem 'rqrcode_png'
gem 'delayed_job', "~> 4.1.4"
gem 'delayed_job_active_record'
gem 'daemons'
gem 'delayed_job_web'
gem 'bigdecimal', "~> 1.4.3"
gem 'amoeba', "~> 3.1.0"