ws-style 5.0.0 → 5.1.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 +28 -0
- data/default.yml +2 -1
- data/lib/ws/style/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: 5b1e5df9f91ab0d75f3f21a4f6489c9c5ae445d4ac64156047d497732bd4480c
|
4
|
+
data.tar.gz: a33315687b64a5d15fa1350d4266e1aa17bcc85d69922120394b2dc15be6e5d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d295e743fedeba8ad1c745b2771697993e530f73588263a4d0398bb18bdc65704a4caf208e7995e73747704b19af99f8f09edd7d1290242008e8911a47be2be1
|
7
|
+
data.tar.gz: c0c27b08a5fe989b763c2dcb9df9f6e9244b40aa278fe1402b5db3075832755c4a1ae9d12140d8cae29762b22314df3ab5f1b76de1fdd395191a9dd2031b2d87
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,34 @@ 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
|
+
## 5.1.0 - 2019-06-06
|
8
|
+
### Changed
|
9
|
+
- Added indentation cop, enforcing 2 space indentation.
|
10
|
+
|
11
|
+
This allows Rubocop to automatically format code like this:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
class Wizard
|
15
|
+
def cast_spell
|
16
|
+
# ...
|
17
|
+
end
|
18
|
+
end
|
19
|
+
```
|
20
|
+
|
21
|
+
into this:
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
class Wizard
|
25
|
+
def cast_spell
|
26
|
+
# ...
|
27
|
+
end
|
28
|
+
end
|
29
|
+
```
|
30
|
+
|
31
|
+
## 5.0.0 - 2019-05-30
|
32
|
+
### Changed
|
33
|
+
- Enforce updating timestamps when changing Rails models.
|
34
|
+
|
7
35
|
## 4.1.0 - 2019-04-29
|
8
36
|
### Fixed
|
9
37
|
- Address errors from installing latest rubocop.
|
data/default.yml
CHANGED
data/lib/ws/style/version.rb
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: 5.
|
4
|
+
version: 5.1.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-
|
11
|
+
date: 2019-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|