git-utils 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  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: 35f992b21a0772da5862218f1b69efbcf1cb5316
4
- data.tar.gz: 94765421143cf85f8de490d03d96589b5b35ac48
3
+ metadata.gz: 749602b0ec220de6ca327a4265821eedbed6463d
4
+ data.tar.gz: 6f7f42a1b4e31723f5ec77077c15a59e9cfa011e
5
5
  SHA512:
6
- metadata.gz: 2abd16e8531b70c4bd2b663bbefb0d83972025abaa480f99398201ece31e7094add6a0da34d959eb01e59ac3b0a10114df0e62f8754adab550960d39cb329a97
7
- data.tar.gz: 08cdb6605f88f9d481a0f2ef11f06b0ec942a2c0b97d439d99dd1d2aa17ef884b7a029e028da9582e669d13cc40401f59e62b77491d02ef57a3e8ca6a0a92f47
6
+ metadata.gz: 7c3f2c524661c7210b6b7e6d092b756457ebeac93975ed90fae8f2368ae66842f25e4443415aa22b602f088f92906516002e2b919d9b6c058c74e4af4c8275eb
7
+ data.tar.gz: 2753fb7bc6f1507e102cb05b2f2ed946fcdec176b920a80fd518c7f05016ea6df15fa2d134eac5cf49a0fa820ef36af880b3ee64a3fee6c368f7219a7854ab6e
data/README.md CHANGED
@@ -2,7 +2,7 @@
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/pivotal-github) gem (which, despite its name, also works with Bitbucket).
6
6
 
7
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
 
@@ -1,5 +1,5 @@
1
1
  module Git
2
2
  module Utils
3
- VERSION = "0.5.0"
3
+ VERSION = "0.5.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.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Hartl