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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ee30c5b6a5eed89d21c0596bb4d71a17c748957
4
- data.tar.gz: 6a3d735ab736e6e0cb839d1c6c7264ad8f4bb84b
3
+ metadata.gz: 619e1fbc41afbb04d330594cc81e1d977a85a95d
4
+ data.tar.gz: 2e4659d426e3f8f95c3a96a74e05eb3971e8bce6
5
5
  SHA512:
6
- metadata.gz: 3abfb9170d25665993e54a9c0216b54eec6d9d417ab723c8ebefb2d6398c6db667532cc71dbf7ebf11987b690a0351176a142d5c8a9e7726c50f19cc8b60148c
7
- data.tar.gz: 09bd438c5cd84cdfe51a134f83c95b823ca477256fafa5c95b63353b368023808fbeb274ad2da66c8037b79823750d22940d88f0efa504df7698af693af294fe
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. Percy-style will include a specific version of `rubocop` and `rubocop-rspec` that is shared across all projects.
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
@@ -1 +1,3 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "bundler/gem_tasks"
data/default.yml CHANGED
@@ -1,17 +1,13 @@
1
+ require: rubocop-rspec
2
+
1
3
  AllCops:
2
- TargetRubyVersion: 2.2
4
+ TargetRubyVersion: 2.4
3
5
  Include:
4
- - '**/config.ru'
6
+ - Rakefile
7
+ - lib/**/*.rake
5
8
  Exclude:
6
- - Gemfile
7
- - Guardfile
8
- - '**/Rakefile'
9
- - 'bin/**/*'
10
- - 'db/**/*'
11
- - 'config/**/*'
12
9
  - 'vendor/**/*'
13
- - '.chef/*'
14
- - 'lib/tasks/*.rake'
10
+ - '*.gemspec'
15
11
 
16
12
  Metrics/BlockLength:
17
13
  Description: 'Avoid blocks longer than 25 lines of code.'
@@ -1,5 +1,5 @@
1
1
  module Freistil
2
2
  module Rubocop
3
- VERSION = "0.1.1".freeze
3
+ VERSION = "0.1.2".freeze
4
4
  end
5
5
  end
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.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__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here