git-utils 0.1.0 → 0.1.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/lib/git-utils/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2faeb0fba87e36f531addf4afed6971f1edf3aca
4
- data.tar.gz: c74f6c8870f6f05b34976ebf29ce7803afebf1f4
3
+ metadata.gz: 645ea801f6d6aa37721b70cc3b7f612a737133f3
4
+ data.tar.gz: 7f80ae70c76271f6dad9c756c2db8e62ec719ccf
5
5
  SHA512:
6
- metadata.gz: 2bb21163ca18e41b1695b00da352c8d259cd1f3b0e2db93feed285021ef44607c2b63f25063643cd601708356dbd140f651a92cbe9c4ad26da807c6acfe2541b
7
- data.tar.gz: c0efe25871d671007427bf3cb2d28427f16a03d59b7086d768b046b2d513e1f7b0358a7be08d9847f8135b2927bcf22872f48f4a7597088701260e615fd18cb9
6
+ metadata.gz: d31ec0f67f4f5c8d9d60834d0f0dda6e8a8d0b65a76a3e21d9788e80312c31290c2060a5d865b84ef8cc17ff2d2411518c3f0084157f9fabd45dd3cbc01d7f57
7
+ data.tar.gz: 9b82ed43d660c8011d2cdda96b8b6d69f3a4e86b66ff078532bcc7cde14f101455b4f5ab8d808311d3d5dce38a057b5227add548c5c6b9a0eeb5bb5610a8e7b3
data/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  This repo contains some Git utility scripts. The highlights are `git open`, `git pull-request`, `git push-branch`, and `git undo`, which you'll never understand how you did without.
4
4
 
5
- The commands are especially useful when combined with [`pivotal-github`](https://github.com/mhartl/git-utils) gem (which, despite its name, also works with Bitbucket).
5
+ The commands are especially useful when combined with [pivotal-github](https://github.com/mhartl/git-utils) gem (which, despite its name, also works with Bitbucket).
6
6
 
7
- The `git-utils` used to be pure Bash scripts, but they are now available as a Ruby gem, both because Ruby is more powerful than bash and because now `git-utils` can be included more easily as a dependency for the [`pivotal-github`](https://github.com/mhartl/pivotal-github/) gem. As a result, installation is easy if you have RubyGems installed:
7
+ The `git-utils` used to be pure Bash scripts, but they are now available as a Ruby gem, both because Ruby is more powerful than bash and because now `git-utils` can be included more easily as a dependency for the [pivotal-github](https://github.com/mhartl/pivotal-github/) gem. As a result, installation is easy if you have RubyGems installed:
8
8
 
9
9
  gem install git-utils
10
10
 
@@ -1,5 +1,5 @@
1
1
  module Git
2
2
  module Utils
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Hartl