-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathGemfile
62 lines (60 loc) · 1.25 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
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 "yard"
gem "rake"
gem "rdoc"
gem "rails"
gem "activesupport"
gem "actiontext"
gem "actionmailbox"
gem "actioncable"
gem "actionmailer"
gem "bigdecimal"
gem "bootsnap"
gem "capybara"
gem "importmap-rails"
gem "jbuilder"
gem "mocha"
gem "parser"
gem "pry"
gem "puma"
gem "safe_yaml"
gem "dark_finger"
gem "rubocop-migrations"
gem "rubocop-minitest"
gem "rubocop"
gem "turbo-rails"
#Needed to be referenced on some user configs
gem "graphql"
gem "prettier"
#Rubocop official modules
gem "rubocop-capybara"
gem "rubocop-changes"
gem "rubocop-faker"
gem "rubocop-factory_bot"
gem "rubocop-i18n"
gem "rubocop-md"
gem "rubocop-mdsol"
gem "rubocop-performance"
gem 'rubocop-rails', require: false
gem "rubocop-rake"
gem "rubocop-rspec"
gem "rubocop-rspec_rails"
gem "rubocop-rubycw"
gem "rubocop-sorbet"
gem "rubocop-shopify", require: false
gem "rubocop-graphql"
gem 'rubocop-thread_safety', require: false
gem "rollbar"
gem "sprockets-rails"
gem "sqlite3"
gem "stimulus-rails"
gem "sanitize_email"
gem "selenium-webdriver"
gem "simplecov"
gem "simplecov-cobertura"
gem "standard"
gem "web-console"