-
Notifications
You must be signed in to change notification settings - Fork 13
/
Gemfile
71 lines (66 loc) · 1.92 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
# Edit this Gemfile to bundle your application's dependencies.
# This preamble is the current preamble for Rails 3 apps; edit as needed.
source 'https://rubygems.org'
ruby '3.1.4', engine: 'jruby', engine_version: '9.4.9.0'
gem 'rails', '~> 6.1.5'
# Needed for the new asset pipeline
gem 'coffee-rails'
gem 'sass-rails', '~> 6'
gem 'therubyrhino'
gem 'uglifier', '>= 1.0.3'
group :test do
gem 'database_cleaner-active_record'
gem 'factory_bot_rails'
gem 'mocha'
gem 'rails-controller-testing'
gem 'rake'
gem 'shoulda-context'
gem 'shoulda-matchers'
end
group :development, :test do
gem 'rubocop'
gem 'rubocop-minitest'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rake'
end
gem 'haml-rails', '~> 2.0'
gem 'jquery-rails'
gem 'jruby-jars', File.read('.ruby-version').chomp.sub(/^jruby-/, '')
gem 'sass'
# gem 'json-jruby', '>= 1.6.6', :require => 'json', :platform => :jruby
gem 'actionpack-page_caching'
gem 'activerecord-jdbc-adapter', '>= 61.3', '~> 61', platform: :jruby
gem 'activerecord-jdbcmysql-adapter', '>= 61.3', '~> 61', platform: :jruby
gem 'activerecord-jdbcpostgresql-adapter', '>= 61.3', '~> 61', platform: :jruby
gem 'activerecord-jdbcsqlite3-adapter', '>= 61.3', '~> 61', platform: :jruby
gem 'activerecord-session_store'
gem 'airbrake'
gem 'capistrano', '~> 2.15.0'
gem 'devise', '~> 4.8'
gem 'dotenv-rails'
gem 'dynamic_form'
gem 'handle_invalid_percent_encoding_requests'
gem 'httpclient'
gem 'i18n'
gem 'jdbc-mysql', require: false
gem 'jdbc-sqlite3', '>= 3.7.2', platform: :jruby
gem 'json', '>=1.6.6'
gem 'lograge'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection'
gem 'pry', '~> 0.14.0'
gem 'pry-rails', '~> 0.3.9'
gem 'puma', '< 7'
gem 'rack', '>= 1.1.0'
gem 'rack-attack', '~> 6.0'
gem 'rapporteur'
gem 'rexml'
gem 'rubyzip', '~> 2'
gem 'silencer'
gem 'sucker_punch', '~> 3.0'
gem 'thwait'
gem 'tzinfo-data', platform: :jruby
gem 'webrick'
gem 'with_advisory_lock'
gem 'zip-zip'