git-whistles 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/bin/git-chop +17 -0
- data/bin/git-list-branches +17 -0
- data/bin/git-merge-po +17 -0
- data/bin/git-stash-and-checkout +17 -0
- data/lib/git-whistles/version.rb +1 -1
- metadata +3 -3
- data/bin/git-chop +0 -1
- data/bin/git-list-branches +0 -1
- data/bin/git-merge-po +0 -1
- data/bin/git-stash-and-checkout +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cdbbcadb6c855b3aa67a6daf8c8b05c1872ca75b
|
4
|
+
data.tar.gz: fb2487cc9827db9edcf36fc6a5fccc739a8ef3ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78c7d6c34c2f4f8996152002eaa7bb0933d0ec5a0629e22cbc46f898c2c302dbb21039717aeed1740836cf2cd82b6b78444ef7f0f7587a6e5f5634ea53cbb953
|
7
|
+
data.tar.gz: 92bb64c2bdedb443a0378a597b6e35f988c7d77dee073e30bfb60e7d880cfad244dd9164578ba94b5e0bcc73ad169f7d380246755911e216194c891666fcff14
|
data/Gemfile.lock
CHANGED
data/bin/git-chop
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# encoding: UTF-8
|
3
|
+
#
|
4
|
+
# runner.rb --
|
5
|
+
#
|
6
|
+
# Run shell scripts from a gem.
|
7
|
+
# Symlink to this script to run a script with the same name living in
|
8
|
+
# libexec/.
|
9
|
+
#
|
10
|
+
require 'pathname'
|
11
|
+
require 'rubygems'
|
12
|
+
require 'git-whistles'
|
13
|
+
|
14
|
+
target_script = Pathname.new($0).basename
|
15
|
+
script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath.to_s
|
16
|
+
|
17
|
+
Kernel.exec script_path, *ARGV
|
@@ -0,0 +1,17 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# encoding: UTF-8
|
3
|
+
#
|
4
|
+
# runner.rb --
|
5
|
+
#
|
6
|
+
# Run shell scripts from a gem.
|
7
|
+
# Symlink to this script to run a script with the same name living in
|
8
|
+
# libexec/.
|
9
|
+
#
|
10
|
+
require 'pathname'
|
11
|
+
require 'rubygems'
|
12
|
+
require 'git-whistles'
|
13
|
+
|
14
|
+
target_script = Pathname.new($0).basename
|
15
|
+
script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath.to_s
|
16
|
+
|
17
|
+
Kernel.exec script_path, *ARGV
|
data/bin/git-merge-po
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# encoding: UTF-8
|
3
|
+
#
|
4
|
+
# runner.rb --
|
5
|
+
#
|
6
|
+
# Run shell scripts from a gem.
|
7
|
+
# Symlink to this script to run a script with the same name living in
|
8
|
+
# libexec/.
|
9
|
+
#
|
10
|
+
require 'pathname'
|
11
|
+
require 'rubygems'
|
12
|
+
require 'git-whistles'
|
13
|
+
|
14
|
+
target_script = Pathname.new($0).basename
|
15
|
+
script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath.to_s
|
16
|
+
|
17
|
+
Kernel.exec script_path, *ARGV
|
@@ -0,0 +1,17 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# encoding: UTF-8
|
3
|
+
#
|
4
|
+
# runner.rb --
|
5
|
+
#
|
6
|
+
# Run shell scripts from a gem.
|
7
|
+
# Symlink to this script to run a script with the same name living in
|
8
|
+
# libexec/.
|
9
|
+
#
|
10
|
+
require 'pathname'
|
11
|
+
require 'rubygems'
|
12
|
+
require 'git-whistles'
|
13
|
+
|
14
|
+
target_script = Pathname.new($0).basename
|
15
|
+
script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath.to_s
|
16
|
+
|
17
|
+
Kernel.exec script_path, *ARGV
|
data/lib/git-whistles/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-whistles
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julien Letessier
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-01-
|
12
|
+
date: 2016-01-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -200,7 +200,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
200
200
|
version: 1.3.6
|
201
201
|
requirements: []
|
202
202
|
rubyforge_project:
|
203
|
-
rubygems_version: 2.5.1
|
203
|
+
rubygems_version: 2.4.5.1
|
204
204
|
signing_key:
|
205
205
|
specification_version: 4
|
206
206
|
summary: 'A few helpers for classic Git workflows: makes branching and merging, PO
|
data/bin/git-chop
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
../libexec/runner.rb
|
data/bin/git-list-branches
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
../libexec/runner.rb
|
data/bin/git-merge-po
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
../libexec/runner.rb
|
data/bin/git-stash-and-checkout
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
../libexec/runner.rb
|