git-whistles 1.0.1 → 1.0.2

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
  SHA1:
3
- metadata.gz: e3781d6b47478166c757dd6b4a39588e16b88c4d
4
- data.tar.gz: bb8d2ecbe2f95062804370d4dcb717137e562462
3
+ metadata.gz: cdbbcadb6c855b3aa67a6daf8c8b05c1872ca75b
4
+ data.tar.gz: fb2487cc9827db9edcf36fc6a5fccc739a8ef3ac
5
5
  SHA512:
6
- metadata.gz: 73585f80f60bef78bc2262f78f77be5d7a6812c9ef4750f260cb66612db61291b5f7c86679cca567391b2e0c5eb68ad656647e1295752f7ae5b13de0b08b67c2
7
- data.tar.gz: cf981727f3de42a828fb013b294f1c62e7ec1709e0cb0c183453532804b40ee8a8c695ed77a3d93c7e468231da001169781215c21c2e5d1785fe936bb14df1ac
6
+ metadata.gz: 78c7d6c34c2f4f8996152002eaa7bb0933d0ec5a0629e22cbc46f898c2c302dbb21039717aeed1740836cf2cd82b6b78444ef7f0f7587a6e5f5634ea53cbb953
7
+ data.tar.gz: 92bb64c2bdedb443a0378a597b6e35f988c7d77dee073e30bfb60e7d880cfad244dd9164578ba94b5e0bcc73ad169f7d380246755911e216194c891666fcff14
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git-whistles (1.0.1)
4
+ git-whistles (1.0.2)
5
5
  jira-ruby
6
6
  pivotal-tracker (~> 0.5.6)
7
7
  term-ansicolor
@@ -93,4 +93,4 @@ DEPENDENCIES
93
93
  rspec
94
94
 
95
95
  BUNDLED WITH
96
- 1.10.6
96
+ 1.11.2
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
@@ -4,7 +4,7 @@ require 'pathname'
4
4
 
5
5
  module Git
6
6
  module Whistles
7
- VERSION = "1.0.1"
7
+ VERSION = "1.0.2"
8
8
  GEMDIR = Pathname.new(__FILE__).parent.parent.parent
9
9
  end
10
10
  end
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.1
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-22 00:00:00.000000000 Z
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
@@ -1 +0,0 @@
1
- ../libexec/runner.rb
data/bin/git-merge-po DELETED
@@ -1 +0,0 @@
1
- ../libexec/runner.rb
@@ -1 +0,0 @@
1
- ../libexec/runner.rb