kuyio-rubocop 0.1.0 → 0.1.1

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
  SHA256:
3
- metadata.gz: 158403ab37c1803e0d2edf63441793c53890e548fa963bd3ce1e7d78ad44258e
4
- data.tar.gz: 02f37ee20cf1c5e8cdf308fbb64fb0428803c8feb35f89d356d2f557fc3a023c
3
+ metadata.gz: ce8c8cd72f6e9f25b7b7de89ae86d9759c5cd2ca4dd8686f9d22bfe6713b22b7
4
+ data.tar.gz: d5343250a8a4a96afdedf8a563cbb37e493d310060f624f2902a7b22b76343fd
5
5
  SHA512:
6
- metadata.gz: 1b30fb7c60e560f00e5bba67b59fca7c5e5ebd7b6fc26395c1c48e557375026a79de0dafa4b56dfdf3f06613721b8363787a5146e84381813ac44f10b6321294
7
- data.tar.gz: af9406274ea5265fa34fca89be60a23e9416a7b9bfb3e65fa22bee2252e851832bc1b1ae5039bb42f7ee375ed41bf7a0410154db00dd33eb24f2cbf10dde2284
6
+ metadata.gz: cb30b4324cbf547ebec9290f270f68416530d094028885a4bbee3eec58fdacf37f9f57eeb9ef96d7640d26515a306c47ab49225e7da3c5c74864e5fde90aea86
7
+ data.tar.gz: c1b1153a82a7b3d1e5aec353fdf6c9262bddafa9d136b12954a7c67b2e1ef12e874e31b0a766900dfda2c2ec1c24d97a3c3b2dd91f7056c2f23b3572b79654ae
data/bin/release ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env bash
2
+
3
+ VERSION=$1
4
+
5
+ printf "module Kuyio\n module Rubocop\n VERSION = \"$VERSION\"\n end\nend" > ./lib/kuyio/rubocop/version.rb
6
+ bundle
7
+ git add Gemfile.lock lib/kuyio/rubocop/version.rb
8
+ git commit -m "Bump version for $VERSION"
9
+ git push
10
+ git tag v$VERSION
11
+ git push --tags
12
+ gem build kuyio-rubocop.gemspec
13
+ gem push "kuyio-rubocop-$VERSION.gem" --host https://rubygems.org
14
+ rm "kuyio-rubocop-$VERSION.gem"
data/default.yml CHANGED
@@ -11,6 +11,7 @@ AllCops:
11
11
  Exclude:
12
12
  - 'vendor/**/*'
13
13
  - '*.gemspec'
14
+ NewCops: enable
14
15
 
15
16
  Bundler/OrderedGems:
16
17
  Enabled: false
@@ -1,5 +1,5 @@
1
1
  module Kuyio
2
2
  module Rubocop
3
- VERSION = '0.1.0'.freeze
3
+ VERSION = "0.1.1"
4
4
  end
5
- end
5
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kuyio-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - KUY.io Inc.
@@ -122,6 +122,7 @@ files:
122
122
  - README.md
123
123
  - RELEASING.md
124
124
  - Rakefile
125
+ - bin/release
125
126
  - default.yml
126
127
  - kuyio-rubocop.gemspec
127
128
  - lib/kuyio/rubocop.rb