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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21fd29373698c83855364dd4e9dec36d55d99f5ed4f7c3922d95241f8198dc7b
4
- data.tar.gz: 0ec1c71a7d37bc7a6a294f240e9a570a348b1fdee8364fbd405f4d79cd38ddaf
3
+ metadata.gz: b652bad6c74a2a070b673bd751e54809d2164f27b296fb24925dbc83c5906921
4
+ data.tar.gz: 24b055aa823685eaa4a7e94d5b4e7a2a0f0ba9606c95cf4614e380c6d4869ab0
5
5
  SHA512:
6
- metadata.gz: 92f598d534e5162093a978d4787d4f428f874ccacb2390d925dfe66de94e71a8f17933aa2b13ff258d66d15f72a04789e4355c72dc27ef60542cf81d2db5d52c
7
- data.tar.gz: cd4a04e7b0485a8e420f017f905b5568eab443482b95b36057cc4a0c0536e01f871363439665936042e52e7a724e9dc69132266e07d7de0993c2a3e84f0fc884
6
+ metadata.gz: 017fa0101043d18e9f9421f01d6275f22aedc4ac76323c43c359f3bded23f1e71fde3156877eb7ee1998370d67f7060d16582ac8b78ac435f0c2aaf7e7c5af39
7
+ data.tar.gz: 2d1c6c3f4199eb179e39511d6590dad3166d93506790b8b133846be707ced15c6c5f13ad33424319ce0a8a8b635d904f4c3bbedf020e166f5a400e55c6838939
@@ -1,3 +1,7 @@
1
+ ## v0.6.2 (2020-06-21)
2
+ ### Docs
3
+ - Update README.md and `bin/release` to reflect release via RubyGems
4
+
1
5
  ## v0.6.1 (2020-06-20)
2
6
  ### Docs
3
7
  - Add Travis build status badge to README.md
@@ -10,7 +10,7 @@ GIT
10
10
  PATH
11
11
  remote: .
12
12
  specs:
13
- shaped (0.6.1)
13
+ shaped (0.6.2)
14
14
  activemodel (~> 6.0)
15
15
  activesupport (~> 6.0)
16
16
 
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`. Because the gem is not released via RubyGems, you will
45
- need to install it from GitHub.
44
+ Add the gem to your application's `Gemfile`:
46
45
 
47
46
  ```rb
48
- gem 'shaped', git: 'https://github.com/davidrunger/shaped.git'
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 easily do so via [`specific_install`](https://github.com/rdp/specific_install):
57
+ can execute
59
58
 
60
59
  ```
61
- $ gem install specific_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`, which will create a git tag for the version and push git commits and tags
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
 
@@ -13,4 +13,4 @@ if ! [[ $COMMIT_MESSAGE =~ ^Prepare[[:space:]]to[[:space:]]release[[:space:]]v[0
13
13
  exit 1;
14
14
  fi
15
15
 
16
- bundle exec rake build release:guard_clean release:source_control_push
16
+ bundle exec rake release
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Shaped
4
- VERSION = '0.6.1'
4
+ VERSION = '0.6.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shaped
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Runger