-
-
Notifications
You must be signed in to change notification settings - Fork 533
Expand file tree
/
Copy pathGemfile
More file actions
75 lines (62 loc) · 1.65 KB
/
Gemfile
File metadata and controls
75 lines (62 loc) · 1.65 KB
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
source 'https://rubygems.org'
gem 'actionpack-xml_parser', '~> 2.0'
gem 'activemodel-serializers-xml', '~> 1.0.3'
gem 'rails', '~> 7.2'
gem 'font-awesome-sass', '~> 6.7.2'
gem 'jquery-rails', '~> 4.6'
gem 'jquery-ui-rails', '~>8.0.0'
gem 'aasm', '~> 5.5.2'
gem 'acts_as_list'
gem 'bcrypt', '~> 3.1.21'
gem 'htmlentities'
gem "kt-paperclip", "~> 7.2"
gem 'puma', '~> 7.2'
gem 'rails_autolink'
gem 'RedCloth'
gem 'sanitize', '~> 7.0'
gem 'tracks-chartjs-ror'
gem 'will_paginate'
gem 'rexml'
# Use --without <group> argument to skip unnecessary drivers
gem 'sqlite3', '~> 2.9', group: :sqlite
gem 'mysql2', '~> 0.5', group: :mysql
gem 'pg', '~> 1.6', group: :postgresql
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'mini_racer', group: :therubyracer
gem 'sprockets-rails'
gem 'coffee-rails', '~> 5.0.0'
gem 'dartsass-sprockets'
gem 'bootstrap-sass', '3.4.1'
gem 'terser'
gem 'listen'
gem 'tolk', '~> 6.0.0'
gem 'superfish-rails'
gem 'jquery-form-rails'
gem 'jquery_block_ui'
group :development, :optional => true do
gem 'spring', '~> 4'
gem 'yard'
gem 'bullet'
gem 'rack-mini-profiler'
gem 'solargraph'
gem 'i18n-tasks', '~> 1.0.15'
end
group :development, :test, :optional => true do
gem 'byebug'
gem 'rubocop', '~> 1.85'
end
group :test, :optional => true do
# get test coverage info on codeclimate
gem 'codeclimate-test-reporter', '1.0.9'
gem 'database_cleaner', '~> 2'
gem 'factory_bot_rails'
gem 'minitest-stub-const'
gem 'mocha'
gem 'rails-controller-testing'
gem 'rails-dom-testing', '~> 2.3.0'
gem 'rspec-expectations'
gem 'simplecov'
end
group :stripe, :optional => true do
gem 'stripe'
end