File tree Expand file tree Collapse file tree 4 files changed +51
-135
lines changed Expand file tree Collapse file tree 4 files changed +51
-135
lines changed Original file line number Diff line number Diff line change 1+ AllCops :
2+ Include :
3+ - ' **/Rakefile'
4+ - ' **/*.rake'
5+
6+ ClassLength :
7+ Enabled : false
8+
9+ CyclomaticComplexity :
10+ Enabled : false
11+
12+ Documentation :
13+ Enabled : false
14+
15+ EmptyLineBetweenDefs :
16+ AllowAdjacentOneLineDefs : true
17+
18+ Encoding :
19+ EnforcedStyle : when_needed
20+
21+ LineLength :
22+ Max : 120
23+
24+ MethodLength :
25+ Enabled : false
26+
27+ NumericLiterals :
28+ Enabled : false
29+
30+ ParameterLists :
31+ Enabled : false
32+
33+ Semicolon :
34+ AllowAsExpressionSeparator : true
35+
36+ SignalException :
37+ EnforcedStyle : only_raise
38+
39+ SingleLineBlockParams :
40+ Enabled : false
41+
42+ SingleLineMethods :
43+ AllowIfMethodIsEmpty : true
44+
45+ UnusedBlockArgument :
46+ Enabled : false
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ source 'https://rubygems.org'
33group :test do
44 gem 'rspec'
55 gem "simplecov"
6- gem "guard-rspec"
7- gem "tailor"
86 gem 'coveralls' , require : false
97end
108
11- group :debug do
9+ group :development do
10+ gem "guard-rspec"
11+ gem "rubocop"
1212 gem "pry-debugger"
1313 gem "pry-stack_explorer"
1414end
Original file line number Diff line number Diff line change 33require 'rake/clean'
44require 'rspec/core/rake_task'
55require 'bundler/gem_tasks'
6- require 'tailor /rake_task'
6+ require 'rubocop /rake_task'
77
88CLOBBER . include ( 'coverage' )
99
10- Tailor ::RakeTask . new
10+ Rubocop ::RakeTask . new
1111
1212desc "Run all specs"
1313RSpec ::Core ::RakeTask . new do |t |
You can’t perform that action at this time.
0 commit comments