rf-stylez 0.2.7 → 0.2.8
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 +5 -5
- data/.circleci/config.yml +34 -0
- data/lib/rf/stylez/version.rb +1 -1
- data/ruby/rubocop.yml +5 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 8b3b6d6b532f7be4be731e6e4852e5a6c0386da34a0624afdaff5755156b184e
|
|
4
|
+
data.tar.gz: 3a6f747d3fd910d8f23c8f0c10a00f482e60e354bed48f14e21ddfa81c761f95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c6e7f19bc09e2e97411387a6d10537c6d3de16f59f4dc48bc6c1d3cc205551c291e0bca1300928f0a040e7cf661cfc1c22421970a0915bc89832f75175eaa817
|
|
7
|
+
data.tar.gz: cff1c69b32e452392121e4bec1ad9557c8e4c646733d49c54f902e60fc785239087ffc28c116a54b78ba286e527293f4241d3bdd184d946a4b3b37effbdec2ac
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
|
|
3
|
+
jobs:
|
|
4
|
+
push_to_rubygems:
|
|
5
|
+
docker:
|
|
6
|
+
- image: circleci/ruby:2.4.4
|
|
7
|
+
steps:
|
|
8
|
+
- checkout
|
|
9
|
+
- run:
|
|
10
|
+
name: Create .gem/credentials file
|
|
11
|
+
command: |
|
|
12
|
+
mkdir ~/.gem
|
|
13
|
+
echo "---
|
|
14
|
+
:rubygems_api_key: $RUBYGEMS_API_KEY
|
|
15
|
+
" > ~/.gem/credentials
|
|
16
|
+
chmod 600 ~/.gem/credentials
|
|
17
|
+
- run:
|
|
18
|
+
name: Release rf-stylez
|
|
19
|
+
command: |
|
|
20
|
+
gem build rf-stylez
|
|
21
|
+
gem push rf-stylez-*.gem
|
|
22
|
+
|
|
23
|
+
workflows:
|
|
24
|
+
version: 2
|
|
25
|
+
gem_release:
|
|
26
|
+
jobs:
|
|
27
|
+
- push_to_rubygems:
|
|
28
|
+
filters:
|
|
29
|
+
branches:
|
|
30
|
+
ignore:
|
|
31
|
+
- /.*/
|
|
32
|
+
tags:
|
|
33
|
+
only:
|
|
34
|
+
- /^v.*/
|
data/lib/rf/stylez/version.rb
CHANGED
data/ruby/rubocop.yml
CHANGED
|
@@ -107,6 +107,9 @@ Style/HashSyntax:
|
|
|
107
107
|
Enabled: true
|
|
108
108
|
Style/RedundantFreeze:
|
|
109
109
|
Enabled: true
|
|
110
|
+
Style/TrailingCommaInArguments:
|
|
111
|
+
Enabled: true
|
|
112
|
+
EnforcedStyleForMultiline: no_comma
|
|
110
113
|
Style/TrailingCommaInLiteral:
|
|
111
114
|
Enabled: true
|
|
112
115
|
EnforcedStyleForMultiline: consistent_comma
|
|
@@ -116,6 +119,8 @@ Style/Semicolon:
|
|
|
116
119
|
Enabled: true
|
|
117
120
|
Style/SignalException:
|
|
118
121
|
Enabled: true
|
|
122
|
+
Style/SymbolProc:
|
|
123
|
+
Enabled: true
|
|
119
124
|
|
|
120
125
|
Metrics/LineLength:
|
|
121
126
|
Enabled: true
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rf-stylez
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emanuel Evans
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-04-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -59,6 +59,7 @@ executables: []
|
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
+
- ".circleci/config.yml"
|
|
62
63
|
- ".gitignore"
|
|
63
64
|
- ".travis.yml"
|
|
64
65
|
- Gemfile
|
|
@@ -92,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
92
93
|
version: '0'
|
|
93
94
|
requirements: []
|
|
94
95
|
rubyforge_project:
|
|
95
|
-
rubygems_version: 2.6
|
|
96
|
+
rubygems_version: 2.7.6
|
|
96
97
|
signing_key:
|
|
97
98
|
specification_version: 4
|
|
98
99
|
summary: Styles for Rainforest code
|