git-utils 2.3.0 → 2.4.0

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: 11c61cc784f39f3e593eb7c122c6c4cd1af95dbf6b15cf1c4dde306dbbc50ff0
4
- data.tar.gz: 2a126aef4e73a643dc75a4c9e462e750961e2a3d019886e29ab080682c7502db
3
+ metadata.gz: 181af0ae07400d1e5461d0c1b7abf774c44d9e9f295575903582ef76c6fd5ae6
4
+ data.tar.gz: 4949ed6c13b21c71c4a65fd02e5486cccfdf01e72a20ccc870a87c488fde8a6f
5
5
  SHA512:
6
- metadata.gz: 56cdcc8662127380384ba7e757dda60fca3ba57fd784d2ce50b4bad486aaa3ed0d3c433fb82e8ec70bdbb86e64f263b3fde3e35fa144acb4fa79033a4193d4c6
7
- data.tar.gz: ecb0e9d79682d2500769ba85878270675c4122e31784fd72deeffeb7846fae224ebdea63999595ea35fcb6e1d3f0e7013d5795f529e08c1e319f7340e2aa81f2
6
+ metadata.gz: 498fc16f27f767d07dadf90b54cca8e0102c3ef633d58c4512c14e47a5ffef9f34a38b86cf1a54686ee3155e012209d21fa01ebbdd3bc9c429b6b94431cb0186
7
+ data.tar.gz: 4f9bd955b194d529af26bdebe70a9cf17d4f351d3727b5d35a99c160c7e9cab5b1427a8ca6fd8fca8fe74362cca974bc8e5f84cfdc37743242d0f2fb6fb704f2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git-utils (2.3.0)
4
+ git-utils (2.4.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -29,6 +29,7 @@ See below for more details on the commands defined by `git-utils`. To learn more
29
29
  * `git sync [branch]`: syncs the given branch with the remote branch (defaults to repo's default branch)
30
30
  * `git sync-fork`: syncs the default branch of a fork with the original upstream default (assumes upstream configuration as in “[Configuring a remote for a fork](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork)”)
31
31
  * `git typo`: makes a commit with the message `"Fix typo"`
32
+ * `git typos`: makes a commit with the message `"Fix typos"`
32
33
  * `git undo`: undoes the last commit
33
34
  * `git graph`: displays full repository history in graphical format; alias for `git log --graph --oneline --decorate --all --full-history --author-date-order --no-notes`
34
35
 
data/bin/git-minor CHANGED
@@ -1,4 +1,3 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- # Makes minor changes.
4
3
  system 'git commit -am "Make minor changes"'
data/bin/git-typo CHANGED
@@ -1,4 +1,3 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- # Makes anal changes.
4
3
  system 'git commit -am "Fix typo"'
data/bin/git-typos ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ system 'git commit -am "Fix typos"'
@@ -1,5 +1,5 @@
1
1
  module Git
2
2
  module Utils
3
- VERSION = "2.3.0"
3
+ VERSION = "2.4.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: 2.3.0
4
+ version: 2.4.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: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2024-01-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Add some Git utilities
14
14
  email:
@@ -30,6 +30,7 @@ executables:
30
30
  - git-sync
31
31
  - git-sync-fork
32
32
  - git-typo
33
+ - git-typos
33
34
  - git-undo
34
35
  extensions: []
35
36
  extra_rdoc_files: []
@@ -58,6 +59,7 @@ files:
58
59
  - bin/git-sync
59
60
  - bin/git-sync-fork
60
61
  - bin/git-typo
62
+ - bin/git-typos
61
63
  - bin/git-undo
62
64
  - git-utils.gemspec
63
65
  - lib/git-utils.rb