percy-style 0.3.0 → 0.4.1
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/RELEASING.md +16 -0
- data/default.yml +4 -0
- data/lib/percy/style/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57d422c69ed55de1e66b7a8993976a0bc4df8065
|
|
4
|
+
data.tar.gz: bdd86c7eddbf0e373ccccf9df7e56569b9514c5c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06457f0a697c94a2a60248af6f0f2a9dfc23790dd0e4552212e6c90d0b6b1952efc3eb6b63a6a5499a028ba46b09f85c1a557a516fead042644c919583ca9a35
|
|
7
|
+
data.tar.gz: f1c94aa485a572aabb6e87aa8d944f3b85dbc3f9b6e8b5b825e62f54b5dc742198c9c49f868c0853a5a6e5587577c2d22a792801b7dd0170218fbaecfea457dc
|
data/RELEASING.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Releasing
|
|
2
|
+
|
|
3
|
+
1. Update version.rb file accordingly.
|
|
4
|
+
1. Tag the release: `git tag vVERSION`
|
|
5
|
+
1. Push changes: `git push --tags`
|
|
6
|
+
1. Update the release notes on GitHub.com
|
|
7
|
+
1. Build and publish:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
bundle exec rake build
|
|
11
|
+
gem push pkg/percy-style-X.XX.XX.gem
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
* Announce the new release,
|
|
15
|
+
making sure to say "thank you" to the contributors
|
|
16
|
+
who helped shape this version!
|
data/default.yml
CHANGED
data/lib/percy/style/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: percy-style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Team Percy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-12-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -78,6 +78,7 @@ files:
|
|
|
78
78
|
- Gemfile
|
|
79
79
|
- LICENSE
|
|
80
80
|
- README.md
|
|
81
|
+
- RELEASING.md
|
|
81
82
|
- Rakefile
|
|
82
83
|
- default.yml
|
|
83
84
|
- lib/percy/style.rb
|
|
@@ -103,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
104
|
version: '0'
|
|
104
105
|
requirements: []
|
|
105
106
|
rubyforge_project:
|
|
106
|
-
rubygems_version: 2.6.
|
|
107
|
+
rubygems_version: 2.6.14
|
|
107
108
|
signing_key:
|
|
108
109
|
specification_version: 4
|
|
109
110
|
summary: Percy style guides and shared style configs.
|