-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
70 lines (58 loc) · 1.37 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby "3.0.3"
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem "rails", "~> 7.0.1"
gem "coffee-rails", "~> 4.2"
gem "cpf_cnpj"
gem "validators"
gem "jbuilder", "~> 2.5"
gem "jquery-rails"
gem "nokogiri", "~> 1.10.8"
gem "pg"
gem "puma", "~> 4.3"
gem "sass-rails", "~> 5.0"
gem "turbolinks", "~> 5"
gem "uglifier", ">= 1.3.0"
gem "webpacker", "~> 4.x"
gem "react-rails"
gem "bootstrap", ">= 4.3.1"
gem "bootstrap_sb_admin_base_v2"
gem "devise"
gem "omniauth"
gem "omniauth-facebook"
gem "omniauth-google-oauth2"
gem "activestorage", ">= 5.2.1.1"
gem "route_translator"
gem "i18n"
gem "sidekiq", "5.2.7"
group :development, :test do
gem "byebug"
gem "capybara"
gem "dotenv-rails"
gem "faker"
gem "factory_bot_rails"
gem "rspec-rails"
gem "rails-controller-testing"
gem "shoulda-matchers"
gem "simplecov"
gem "rspec_junit_formatter"
end
group :development do
gem "listen", "~> 3.0.5"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console", ">= 3.3.0"
gem "guard-livereload"
gem "guard-rspec"
gem "rubocop-shopify", require: false
end
group :production do
gem "unicorn"
gem "sentry-raven"
gem "aws-sdk-s3"
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]