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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9c31473c559005d43c4138035cc352985ef19cd0
4
- data.tar.gz: 042cf262f4d3bee914ad8f36f07b48ade93004ff
3
+ metadata.gz: 0fcbf82f2ab4bb27c5c02389c83f99eb7f057712
4
+ data.tar.gz: 6b9f3f5f3180650bd6111c23e0e961a9fc1a6bf3
5
5
  SHA512:
6
- metadata.gz: 4fa94651c2b21b9bd297250b42003a8002c787dd643c69dcbc5ee1158937bc65b6dc18478f8f15c1fbad5686657e2f97fca83727bf20e036502ca4d930201e50
7
- data.tar.gz: 93e7cfc71e764efbc1e467fe9f114b0ec8f6f78438dc2912994d92b7518ae5d351f6d5f4bd5665b380b210d759e2879f17473d72a50525227591f2600a2a0e8c
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
@@ -1,5 +1,5 @@
1
1
  module Reinteractive
2
2
  module Style
3
- VERSION = "0.2.2".freeze
3
+ VERSION = "0.2.3".freeze
4
4
  end
5
5
  end
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.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-10-20 00:00:00.000000000 Z
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