shaped 0.6.1 → 0.6.2
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/Gemfile.lock +1 -1
- data/README.md +6 -7
- data/bin/release +1 -1
- data/lib/shaped/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b652bad6c74a2a070b673bd751e54809d2164f27b296fb24925dbc83c5906921
|
|
4
|
+
data.tar.gz: 24b055aa823685eaa4a7e94d5b4e7a2a0f0ba9606c95cf4614e380c6d4869ab0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 017fa0101043d18e9f9421f01d6275f22aedc4ac76323c43c359f3bded23f1e71fde3156877eb7ee1998370d67f7060d16582ac8b78ac435f0c2aaf7e7c5af39
|
|
7
|
+
data.tar.gz: 2d1c6c3f4199eb179e39511d6590dad3166d93506790b8b133846be707ced15c6c5f13ad33424319ce0a8a8b635d904f4c3bbedf020e166f5a400e55c6838939
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -41,11 +41,10 @@ useful), but for now supporting `active_actions` is `shaped`'s *raison d'être*.
|
|
|
41
41
|
|
|
42
42
|
# Installation
|
|
43
43
|
|
|
44
|
-
Add the gem to your application's `Gemfile
|
|
45
|
-
need to install it from GitHub.
|
|
44
|
+
Add the gem to your application's `Gemfile`:
|
|
46
45
|
|
|
47
46
|
```rb
|
|
48
|
-
gem 'shaped'
|
|
47
|
+
gem 'shaped'
|
|
49
48
|
```
|
|
50
49
|
|
|
51
50
|
And then execute:
|
|
@@ -55,11 +54,10 @@ $ bundle install
|
|
|
55
54
|
```
|
|
56
55
|
|
|
57
56
|
If you want to install the gem on your system independent of a project with a `Gemfile`, then you
|
|
58
|
-
can
|
|
57
|
+
can execute
|
|
59
58
|
|
|
60
59
|
```
|
|
61
|
-
$ gem install
|
|
62
|
-
$ gem specific_install davidrunger/shaped
|
|
60
|
+
$ gem install shaped
|
|
63
61
|
```
|
|
64
62
|
|
|
65
63
|
# Usage
|
|
@@ -359,7 +357,8 @@ To release a new version:
|
|
|
359
357
|
4. `bundle install` (which will update `Gemfile.lock`)
|
|
360
358
|
5. commit the changes with a message like `Prepare to release v0.1.1`
|
|
361
359
|
6. push the changes to `origin/master` (GitHub) via `git push`
|
|
362
|
-
7. run `bin/release
|
|
360
|
+
7. run `bin/release` (which will create a git tag for the version, push git commits and
|
|
361
|
+
tags to GitHub, and push the gem to RubyGems)
|
|
363
362
|
|
|
364
363
|
# License
|
|
365
364
|
|
data/bin/release
CHANGED
data/lib/shaped/version.rb
CHANGED