git-whistles 1.2.0 → 1.2.1

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: b659e30382e1005b596ed3571da52157325a2f4a
4
- data.tar.gz: 3951abb1a603b4331cf63303d64676d434af2a4f
3
+ metadata.gz: 11423844629bcffc55398edddf700fbbf9c405c5
4
+ data.tar.gz: 5e19d120bc6bd14000e43f12758dec422c29cf9d
5
5
  SHA512:
6
- metadata.gz: 425ad5de6807b2e74cff7fc9d1b654311f6a432aa3fefe80620b768ab31d6c088a449702e9406afe4cd53d550cc11ffd0bec279b62cb8a8bbb7d72f039b932e1
7
- data.tar.gz: e97c608e01e976ba08dbca45475e9aa92e7bb73c23c5fb3c8be9ba23a469147cbbfbb33934c224003d097dbc59a7db45ecf2cbf1ff2c52428301a98a883cdbed
6
+ metadata.gz: 07f380212512123130e0fb3d6b192ebec6f813c2fc2c0986bf5e35d84a4025ddc8150e02749d51e48820340d70bd25e691b47d4cb4ca7bdfb54aa1c457db902b
7
+ data.tar.gz: f15931d780462c8dfe2d5f7a799025d839655bb9d878088e69d5db7f8a4e53c5337a64799c4fb251da4f820883bc7e620233f15fcce0a3ce2b4ff4cecb7b697b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git-whistles (1.2.0)
4
+ git-whistles (1.2.1)
5
5
  jira-ruby (~> 1.0.0)
6
6
  pivotal-tracker (~> 0.5.6)
7
7
  term-ansicolor
data/Rakefile CHANGED
@@ -2,6 +2,18 @@
2
2
  # encoding: UTF-8
3
3
  require "bundler/gem_tasks"
4
4
  require 'rspec/core/rake_task'
5
+ require 'pathname'
5
6
 
6
7
  RSpec::Core::RakeTask.new(:spec)
7
8
  task :default => :spec
9
+
10
+ task :binstubs do
11
+ Pathname.glob('libexec/*.sh').each do |script|
12
+ name = script.basename('.sh').to_s
13
+ next if name == 'git-whistles'
14
+
15
+ puts "bin/git-whistles -> bin/#{name}"
16
+ FileUtils.remove_file("bin/#{name}")
17
+ FileUtils.copy_file('bin/git-whistles', "bin/#{name}")
18
+ end
19
+ end
data/bin/git-chop ADDED
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby
2
+ # encoding: UTF-8
3
+ #
4
+ # git-whistles --
5
+ #
6
+ # Runner for shell scripts in libexec
7
+ #
8
+ require 'rubygems'
9
+ require 'git-whistles'
10
+
11
+ script = File.basename(__FILE__)
12
+ exec Git::Whistles::GEMDIR.join("libexec/#{script}.sh").cleanpath.to_s, *ARGV
13
+
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby
2
+ # encoding: UTF-8
3
+ #
4
+ # git-whistles --
5
+ #
6
+ # Runner for shell scripts in libexec
7
+ #
8
+ require 'rubygems'
9
+ require 'git-whistles'
10
+
11
+ script = File.basename(__FILE__)
12
+ exec Git::Whistles::GEMDIR.join("libexec/#{script}.sh").cleanpath.to_s, *ARGV
13
+
data/bin/git-merge-po ADDED
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby
2
+ # encoding: UTF-8
3
+ #
4
+ # git-whistles --
5
+ #
6
+ # Runner for shell scripts in libexec
7
+ #
8
+ require 'rubygems'
9
+ require 'git-whistles'
10
+
11
+ script = File.basename(__FILE__)
12
+ exec Git::Whistles::GEMDIR.join("libexec/#{script}.sh").cleanpath.to_s, *ARGV
13
+
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby
2
+ # encoding: UTF-8
3
+ #
4
+ # git-whistles --
5
+ #
6
+ # Runner for shell scripts in libexec
7
+ #
8
+ require 'rubygems'
9
+ require 'git-whistles'
10
+
11
+ script = File.basename(__FILE__)
12
+ exec Git::Whistles::GEMDIR.join("libexec/#{script}.sh").cleanpath.to_s, *ARGV
13
+
@@ -4,7 +4,7 @@ require 'pathname'
4
4
 
5
5
  module Git
6
6
  module Whistles
7
- VERSION = "1.2.0"
7
+ VERSION = "1.2.1"
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.2.0
4
+ version: 1.2.1
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-11-02 00:00:00.000000000 Z
12
+ date: 2016-11-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
data/bin/git-chop DELETED
@@ -1 +0,0 @@
1
- git-whistles
@@ -1 +0,0 @@
1
- git-whistles
data/bin/git-merge-po DELETED
@@ -1 +0,0 @@
1
- git-whistles
@@ -1 +0,0 @@
1
- git-whistles