reinteractive-style 0.2.2 → 0.2.3
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/DEPLOYMENT.md +14 -0
- data/default.yml +0 -8
- data/lib/reinteractive/style/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0fcbf82f2ab4bb27c5c02389c83f99eb7f057712
|
|
4
|
+
data.tar.gz: 6b9f3f5f3180650bd6111c23e0e961a9fc1a6bf3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cfd009886cdddbcef2cb9e8a0926f2cb78eee8e306aa692d86c8f2fb25cd17c82d58a163dd0dee59c955c7c1e462d739e4e162d075c996de6f625efa04ccad98
|
|
7
|
+
data.tar.gz: 198eaf33f9191ec65e3389381b57036fd8ffb92b74a503183dc9c06dcedc21631c831fb69d148d64ea61142e5503f289ac2d8fdc44663f7a3283a601eb2a1da4
|
data/DEPLOYMENT.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Deployment
|
|
2
|
+
|
|
3
|
+
This gem is available on [RubyGems](https://rubygems.org/gems/reinteractive-style) to deploy a new version of the gem you will need to be an owner and follow the instructions below.
|
|
4
|
+
|
|
5
|
+
git flow release start v0.0.0
|
|
6
|
+
|
|
7
|
+
change the version number in `lib/reinteractive/style/version.rb` to match the branch name created in the step above.
|
|
8
|
+
|
|
9
|
+
git flow release finish v0.0.0
|
|
10
|
+
git push origin
|
|
11
|
+
git push --tags
|
|
12
|
+
|
|
13
|
+
gem build reinteractive-style.gemspec
|
|
14
|
+
gem push reinteractive-style-0.2.2.gem
|
data/default.yml
CHANGED
|
@@ -76,10 +76,6 @@ Style/Encoding:
|
|
|
76
76
|
Description: Use UTF-8 as the source file encoding.
|
|
77
77
|
StyleGuide: https://github.com/bbatsov/ruby-style-guide#utf-8
|
|
78
78
|
Enabled: false
|
|
79
|
-
EnforcedStyle: always
|
|
80
|
-
SupportedStyles:
|
|
81
|
-
- when_needed
|
|
82
|
-
- always
|
|
83
79
|
Naming/FileName:
|
|
84
80
|
Description: Use snake_case for source file names.
|
|
85
81
|
StyleGuide: https://github.com/bbatsov/ruby-style-guide#snake-case-files
|
|
@@ -1003,10 +999,6 @@ Lint/HandleExceptions:
|
|
|
1003
999
|
Description: Don't suppress exception.
|
|
1004
1000
|
StyleGuide: https://github.com/bbatsov/ruby-style-guide#dont-hide-exceptions
|
|
1005
1001
|
Enabled: false
|
|
1006
|
-
Lint/InvalidCharacterLiteral:
|
|
1007
|
-
Description: Checks for invalid character literals with a non-escaped whitespace
|
|
1008
|
-
character.
|
|
1009
|
-
Enabled: false
|
|
1010
1002
|
Lint/LiteralInCondition:
|
|
1011
1003
|
Description: Checks of literals used in conditions.
|
|
1012
1004
|
Enabled: false
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: reinteractive-style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- reinteractive
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-12-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -75,6 +75,7 @@ extra_rdoc_files: []
|
|
|
75
75
|
files:
|
|
76
76
|
- ".gitignore"
|
|
77
77
|
- ".rubocop.yml"
|
|
78
|
+
- DEPLOYMENT.md
|
|
78
79
|
- Gemfile
|
|
79
80
|
- LICENSE.txt
|
|
80
81
|
- README.md
|