ws-style 2.0.0 → 3.0.0
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/CHANGELOG.md +4 -0
- data/README.md +3 -1
- data/default.yml +3 -0
- data/lib/ws/style/version.rb +1 -1
- data/ws-style.gemspec +1 -0
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7f82736c68e74eb3c304384b10613029993d120a1a67a94b202f59022953ca9e
|
|
4
|
+
data.tar.gz: edb72e3ccfca5f07ac31e41ca671674d90bed0053f445bce8bbb0b72bc6b3680
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 244d8ecfb9779a5522068bc2c1ba174ba93c6407f214c10ab29ed39987a387ffb13324fa16a1c107529bc8ae57c6608f277d139054553f8778b7e05fe650e1bd
|
|
7
|
+
data.tar.gz: f226dfc625a3c23b6c12ff5ac7cf136f4ef1d8e6ed35464cc994f6b6c85027879ab1ed10e13c86aedb0c92b6d8009ea5295dfa9f9d8dc75e78a4a7d7e246cb0d
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## 3.0.0 - 2019-02-26
|
|
8
|
+
### Changed
|
|
9
|
+
- Added rubocop-rspec to enforce good rspec hygiene. https://wealthsimple.quip.com/ywj9AznUePvo/HOWTO-ws-style-10-Rubocop-Upgrade-guide
|
|
10
|
+
|
|
7
11
|
## 2.0.0 - 2019-02-12
|
|
8
12
|
### Changed
|
|
9
13
|
- Use trailing dots for multiline chained method invocations. This prevents bugs when pasting Ruby snippets into REPLs.
|
data/README.md
CHANGED
|
@@ -63,4 +63,6 @@ Style/HashSyntax:
|
|
|
63
63
|
|
|
64
64
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
65
65
|
|
|
66
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
66
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
67
|
+
|
|
68
|
+
New versions are automatically released by CI when merged to `master`.
|
data/default.yml
CHANGED
data/lib/ws/style/version.rb
CHANGED
data/ws-style.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ws-style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Graham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-02-
|
|
11
|
+
date: 2019-02-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -24,6 +24,20 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0.64'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rubocop-rspec
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.32'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.32'
|
|
27
41
|
- !ruby/object:Gem::Dependency
|
|
28
42
|
name: bundler
|
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|