freistil-rubocop 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/Rakefile +2 -0
- data/default.yml +6 -10
- data/lib/freistil/rubocop/version.rb +1 -1
- metadata +1 -3
- data/bin/console +0 -14
- data/bin/setup +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 619e1fbc41afbb04d330594cc81e1d977a85a95d
|
|
4
|
+
data.tar.gz: 2e4659d426e3f8f95c3a96a74e05eb3971e8bce6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 483889a101a25e70d526102d13cc3b78d35d338703c8485d3c75756f39a3cbe1b4c1cd0e3a6bdd6348a5e9a51376dfe7c3122a18849950228b64acae86c3f504
|
|
7
|
+
data.tar.gz: 01686ada5722898b2b91d33abdedd6724c4ab496edf4cd5987620799a259d228f9a6180ccc8e3ccfae656336e9afdbfce0a44d27d94df686ce27f8a0cf09b880
|
data/README.md
CHANGED
|
@@ -40,4 +40,4 @@ Now, run:
|
|
|
40
40
|
bundle exec rubocop
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
You do not need to include rubocop directly in your application's dependencies.
|
|
43
|
+
You do not need to include rubocop directly in your application's dependencies. freistil-rubocop will include a specific version of `rubocop` and `rubocop-rspec` that is shared across all our projects.
|
data/Rakefile
CHANGED
data/default.yml
CHANGED
|
@@ -1,17 +1,13 @@
|
|
|
1
|
+
require: rubocop-rspec
|
|
2
|
+
|
|
1
3
|
AllCops:
|
|
2
|
-
TargetRubyVersion: 2.
|
|
4
|
+
TargetRubyVersion: 2.4
|
|
3
5
|
Include:
|
|
4
|
-
-
|
|
6
|
+
- Rakefile
|
|
7
|
+
- lib/**/*.rake
|
|
5
8
|
Exclude:
|
|
6
|
-
- Gemfile
|
|
7
|
-
- Guardfile
|
|
8
|
-
- '**/Rakefile'
|
|
9
|
-
- 'bin/**/*'
|
|
10
|
-
- 'db/**/*'
|
|
11
|
-
- 'config/**/*'
|
|
12
9
|
- 'vendor/**/*'
|
|
13
|
-
- '
|
|
14
|
-
- 'lib/tasks/*.rake'
|
|
10
|
+
- '*.gemspec'
|
|
15
11
|
|
|
16
12
|
Metrics/BlockLength:
|
|
17
13
|
Description: 'Avoid blocks longer than 25 lines of code.'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: freistil-rubocop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- freistil IT Ltd
|
|
@@ -85,8 +85,6 @@ files:
|
|
|
85
85
|
- Gemfile
|
|
86
86
|
- README.md
|
|
87
87
|
- Rakefile
|
|
88
|
-
- bin/console
|
|
89
|
-
- bin/setup
|
|
90
88
|
- default.yml
|
|
91
89
|
- freistil-rubocop.gemspec
|
|
92
90
|
- lib/freistil/rubocop.rb
|
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require "bundler/setup"
|
|
4
|
-
require "freistil/rubocop"
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require "pry"
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require "irb"
|
|
14
|
-
IRB.start(__FILE__)
|