kuyio-rubocop 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 158403ab37c1803e0d2edf63441793c53890e548fa963bd3ce1e7d78ad44258e
4
- data.tar.gz: 02f37ee20cf1c5e8cdf308fbb64fb0428803c8feb35f89d356d2f557fc3a023c
3
+ metadata.gz: 7113069c97131285f2819ce5c9672db870c7021c5fa7e7fcaa9682abd1f04979
4
+ data.tar.gz: 5fa7117e786399d6538ab2fdc1b5aea2b7e9758c0712b3f074f3eb04cced09fa
5
5
  SHA512:
6
- metadata.gz: 1b30fb7c60e560f00e5bba67b59fca7c5e5ebd7b6fc26395c1c48e557375026a79de0dafa4b56dfdf3f06613721b8363787a5146e84381813ac44f10b6321294
7
- data.tar.gz: af9406274ea5265fa34fca89be60a23e9416a7b9bfb3e65fa22bee2252e851832bc1b1ae5039bb42f7ee375ed41bf7a0410154db00dd33eb24f2cbf10dde2284
6
+ metadata.gz: 903a27cb53c18115d54050f6b541d56bb11204af2643f63fc7ae47ec15237497c29361ddb56d1e0d11168abc663ba423122d15a2104faefeae35cf0ec80c33a8
7
+ data.tar.gz: ab31b67d49575ab7c7c6487b1561109f1b9328312a948edd6510ad2d02c00fcfea4316470ee710b965607cfff5117d4c437948044943e0887f12b27015615b17
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 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
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Kuyio::Rubocop::VERSION
9
9
  spec.authors = ["KUY.io Inc."]
10
10
  spec.email = ["dev@kuy.io"]
11
-
11
+ spec.license = 'MIT'
12
12
  spec.summary = 'KUY.io shared rubocop configuration.'
13
13
  spec.homepage = 'https://github.com/kuyio/kuyio-rubocop'
14
14
 
@@ -1,5 +1,5 @@
1
1
  module Kuyio
2
2
  module Rubocop
3
- VERSION = '0.1.0'.freeze
3
+ VERSION = "0.1.2"
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.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - KUY.io Inc.
@@ -122,12 +122,14 @@ 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
128
129
  - lib/kuyio/rubocop/version.rb
129
130
  homepage: https://github.com/kuyio/kuyio-rubocop
130
- licenses: []
131
+ licenses:
132
+ - MIT
131
133
  metadata:
132
134
  allowed_push_host: https://rubygems.org
133
135
  post_install_message: