ut-rubocop 0.0.3 → 0.0.4
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.markdown +11 -0
- data/default.yml +0 -1
- data/lib/ut/style_ruby/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd1cf7fb0dbfafb3af68340a16a4a013226bdcdaba47463d1d47bbdd7b67ef76
|
|
4
|
+
data.tar.gz: 75f4d800690e19fa90e4b3cd5115478f028be10b5bd0568cbc74932b884181f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b020b86877f8ce47c4295bfbfa2895e6c695fae8a50839a50a14df8913759d807e7e6ef50a90f9ade753de3072da84c2e43c55d4b4c582765a469c89b970fb4a
|
|
7
|
+
data.tar.gz: 8492d3a8dd641d14a9d8f6d6161785c744316730ec94f8f12319b220670b87255189606238c64047262d61c6a5764e3e269d9bc4ff63d1202bdea2608a078c95
|
data/README.markdown
CHANGED
|
@@ -23,6 +23,17 @@ inherit_gem:
|
|
|
23
23
|
- default.yml
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
+
## Updating Gem
|
|
27
|
+
|
|
28
|
+
- Increase version number in `lib/ut/style_ruby/version.rb` in your PR.
|
|
29
|
+
- After merging to main, tag the current HEAD with the version number chosen: `git tag v0.0.x`
|
|
30
|
+
- Build the gem: `gem build .gemspec`
|
|
31
|
+
- Push gem to rubygems.org: `gem push ut-rubocop-0.0.x.gem`
|
|
32
|
+
|
|
33
|
+
The gem is now updated on [rubygems.org](https://rubygems.org/gems/ut-rubocop).
|
|
34
|
+
|
|
35
|
+
_Note that you will need to be added as a maintainer of the gem to be able to push it._
|
|
36
|
+
|
|
26
37
|
## Usage
|
|
27
38
|
|
|
28
39
|
`bundle exec rubocop`
|
data/default.yml
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ut-rubocop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Aiken
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-10-
|
|
11
|
+
date: 2020-10-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|