git-utils 0.6.5 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a668371dcf9ededd4ab1b91577a7063c89c5fe3d
4
- data.tar.gz: a6300809e7c81eca80c5f80f2f1f1d2acff631c4
3
+ metadata.gz: ff6ac2207f071e41328576590172fe7dc6f8721c
4
+ data.tar.gz: e34ce04c025afcd6bc0382e8a9c7c28b4cfa52d3
5
5
  SHA512:
6
- metadata.gz: 53112d30740a5b5552d31c10eccb6fd581e3608660cd224edb5c78267379f501fea4d33be12ab09205c96de9688aa409028600b11673c291d2e67b5478210ea1
7
- data.tar.gz: bcacfcb876dd1b3275665048719099d8831c7ade6715b5d5078c9660d732d6f45e71f3a92abdf631ea92816129d74513f79d71dec8ceb818fbe5cd8c10232122
6
+ metadata.gz: 57314c2b35a311cb40e289595bb9dfa0232941ffa38700ce9442e39ed5e4190f5310c6d3e16dad38a9c8411744e07be746b744cf5464bdd1fce38114578de7fa
7
+ data.tar.gz: 2d0bb6d0ebec487eea8f45f7ff973b3333226f7e6d03e5654c067e6ab03402bf878e23822e15ff7962b62ec76ca8291fdf9f42a99bec6eee162d95a201c7c910
data/Gemfile CHANGED
@@ -1,5 +1,4 @@
1
1
  source 'https://rubygems.org'
2
- ruby '2.0.0'
3
2
 
4
3
  gem 'rspec', '~> 2.13.0'
5
4
 
data/README.md CHANGED
@@ -22,6 +22,7 @@ The `git-utils` used to be pure Bash scripts, but they are now available as a Ru
22
22
  * `git delete-remote-branch <branch>`: deletes the remote branch if it is safe to do so
23
23
  * `git switch <pattern>`: switches to the first branch matching the given pattern
24
24
  * `git sync [branch]`: syncs the given branch with the remote branch (defaults to master)
25
+ * `git typo`: makes a commit with the message "Fix typo"
25
26
  * `git undo`: undoes the last commit
26
27
 
27
28
  ## Aliases
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Makes anal changes.
4
+ system 'git commit -am "Fix typo"'
@@ -1,5 +1,5 @@
1
1
  module Git
2
2
  module Utils
3
- VERSION = "0.6.5"
3
+ VERSION = "0.7.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.5
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Hartl
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-30 00:00:00.000000000 Z
11
+ date: 2016-03-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Add some Git utilities
14
14
  email:
@@ -26,13 +26,14 @@ executables:
26
26
  - git-push-branch
27
27
  - git-switch
28
28
  - git-sync
29
+ - git-typo
29
30
  - git-undo
30
31
  extensions: []
31
32
  extra_rdoc_files: []
32
33
  files:
33
- - .gitignore
34
- - .project_id
35
- - .rspec
34
+ - ".gitignore"
35
+ - ".project_id"
36
+ - ".rspec"
36
37
  - Gemfile
37
38
  - Gemfile.lock
38
39
  - LICENSE.txt
@@ -50,6 +51,7 @@ files:
50
51
  - bin/git-push-branch
51
52
  - bin/git-switch
52
53
  - bin/git-sync
54
+ - bin/git-typo
53
55
  - bin/git-undo
54
56
  - git-utils.gemspec
55
57
  - lib/git-utils.rb
@@ -84,17 +86,17 @@ require_paths:
84
86
  - lib
85
87
  required_ruby_version: !ruby/object:Gem::Requirement
86
88
  requirements:
87
- - - '>='
89
+ - - ">="
88
90
  - !ruby/object:Gem::Version
89
91
  version: '0'
90
92
  required_rubygems_version: !ruby/object:Gem::Requirement
91
93
  requirements:
92
- - - '>='
94
+ - - ">="
93
95
  - !ruby/object:Gem::Version
94
96
  version: '0'
95
97
  requirements: []
96
98
  rubyforge_project:
97
- rubygems_version: 2.4.1
99
+ rubygems_version: 2.4.5.1
98
100
  signing_key:
99
101
  specification_version: 4
100
102
  summary: See the README for full documentation