-
Notifications
You must be signed in to change notification settings - Fork 16
/
Gemfile
103 lines (93 loc) · 2.57 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# frozen_string_literal: true
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '5.2.8.1'
gem 'bootsnap'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.5.0'
# Use Puma as the app server
gem 'puma', '~> 5.0'
# Use SCSS for stylesheets
gem 'sassc-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'flatpickr'
gem 'momentjs-rails'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5.x'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem 'aasm', '~> 4'
gem 'active_hash'
gem 'biz'
gem 'bootstrap-sass'
gem 'cancancan'
gem 'cocoon'
gem 'date_validator'
gem 'devise', '~> 4.7.0'
gem 'omniauth', '< 2.0'
gem 'omniauth_openid_connect', '~> 0.7'
gem 'haml', '~> 5.0'
gem 'kaminari','~> 1.2'
gem 'paranoia', '~> 2.2'
gem 'seed-fu'
gem 'settingslogic'
gem 'simple_form', '~> 5.3'
gem 'ransack', '~> 2.0'
gem 'activerecord-import'
gem 'rails-observers'
gem 'pivot_table'
gem 'sinatra', require: nil
gem 'daemons'
gem 'act-fluent-logger-rails'
gem 'lograge'
gem 'logstash-event'
gem 'capybara', '~> 3.28'
gem 'carrierwave', '~> 1.3.0'
gem 'airbrake', '~> 13.0'
group :development, :test do
gem 'awesome_print'
gem 'byebug', platform: :mri
gem 'factory_bot_rails', '~> 4'
gem 'faker', '~> 2'
gem 'pry-byebug'
gem 'timecop'
gem 'rspec-rails'
gem "letter_opener"
gem 'dotenv-rails', '~> 2'
end
group :development do
gem 'listen'
gem 'rack-mini-profiler', '~> 0.10.1'
gem 'rubocop', '0.69.0'
gem 'rubocop-performance'
gem 'spring'
gem 'spring-watcher-listen'
gem 'web-console', '3.7.0'
gem 'i18n-debug'
gem 'ed25519'
gem 'bcrypt_pbkdf'
end
group :test do
gem 'codeclimate-test-reporter', '~> 1.0.9'
gem 'database_rewinder'
gem 'rails-controller-testing'
gem 'shoulda-matchers'
gem 'shoulda-callback-matchers'
gem 'simplecov', '<= 0.13'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "postal-rails", "~> 1.0"
gem "good_job", "~> 2.99"
gem "openbox", "~> 0.5.1"