forked from AdWerx/pronto-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
40 lines (35 loc) · 891 Bytes
/
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
# -*- mode: ruby -*-
# Run: bundle install
source 'https://rubygems.org'
gem 'pronto'
gem 'pronto-rubocop'
gem 'pronto-brakeman'
gem 'pronto-bundler_audit'
gem 'pronto-eslint_npm'
gem 'pronto-rails_best_practices'
gem 'pronto-rails_schema'
gem 'pronto-rails_data_schema'
gem 'pronto-poper'
gem 'pronto-yamllint'
gem 'pronto-reek'
gem 'pronto-flay'
gem 'pronto-fasterer'
gem 'pronto-scss'
gem 'pronto-erb_lint', '~>0.1'
gem 'pronto-stylelint'
# https://github.com/libgit2/rugged/issues/860
gem 'rugged', '~>0.28.5'
gem 'rubocop-performance', require: false
gem 'rubocop-minitest', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-thread_safety', require: false
gem 'rubocop-i18n', require: false
gem 'rubocop-rake', require: false
group :test do
gem 'climate_control'
gem 'rspec'
gem 'webmock'
gem 'pry'
gem 'rb-readline'
end