-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
76 lines (63 loc) · 1.6 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
ruby '~> 3.2.0'
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'bootsnap', require: false
gem 'jbuilder'
gem 'jquery-rails', '>= 1.0.3'
gem 'mysql2'
gem 'puma'
gem 'rails', '~> 7.0'
gem 'rails-i18n'
gem 'sass-rails'
gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'
gem 'http_accept_language'
gem 'virtus'
gem 'slim'
gem 'pundit'
gem 'devise'
gem 'rest-client'
gem 'validates_email_format_of'
gem 'gradients'
gem 'tty-progressbar'
gem 'remotipart', '~> 1.2'
gem 'archive-zip', '~> 0.9.0'
gem 'sentry-raven'
gem 'deep_cloneable'
gem 'str_enum'
gem 'git'
gem 'transformer', ref: 'cb766b1', github: 'quintel/transformer'
gem 'atlas', ref: '58dc99f', github: 'quintel/atlas'
gem 'rubel', ref: 'ad3d44e', github: 'quintel/rubel'
gem 'refinery', ref: '5439199', github: 'quintel/refinery'
group :development, :test do
gem 'byebug', platform: :mri
gem 'rspec'
gem 'rspec-collection_matchers'
gem 'rspec-rails'
gem 'pry-rails'
gem 'dotenv-rails'
end
group :test do
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'webmock'
gem 'timecop'
gem 'simplecov', require: false
gem 'rspec_junit_formatter', require: false
end
group :development do
gem 'listen'
gem 'spring'
gem 'web-console', '>= 3.3.0'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
end
gem 'mini_racer', '~> 0.6.3'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]