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 +4 -4
- data/bin/release +14 -0
- data/default.yml +1 -0
- data/lib/kuyio/rubocop/version.rb +2 -2
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce8c8cd72f6e9f25b7b7de89ae86d9759c5cd2ca4dd8686f9d22bfe6713b22b7
|
|
4
|
+
data.tar.gz: d5343250a8a4a96afdedf8a563cbb37e493d310060f624f2902a7b22b76343fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
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.
|
|
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
|