git-whistles 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/Rakefile +12 -0
- data/bin/git-chop +13 -0
- data/bin/git-list-branches +13 -0
- data/bin/git-merge-po +13 -0
- data/bin/git-stash-and-checkout +13 -0
- data/lib/git-whistles/version.rb +1 -1
- metadata +2 -2
- 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: 11423844629bcffc55398edddf700fbbf9c405c5
|
4
|
+
data.tar.gz: 5e19d120bc6bd14000e43f12758dec422c29cf9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07f380212512123130e0fb3d6b192ebec6f813c2fc2c0986bf5e35d84a4025ddc8150e02749d51e48820340d70bd25e691b47d4cb4ca7bdfb54aa1c457db902b
|
7
|
+
data.tar.gz: f15931d780462c8dfe2d5f7a799025d839655bb9d878088e69d5db7f8a4e53c5337a64799c4fb251da4f820883bc7e620233f15fcce0a3ce2b4ff4cecb7b697b
|
data/Gemfile.lock
CHANGED
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
|
+
|
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.2.
|
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-
|
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
|
data/bin/git-list-branches
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
git-whistles
|
data/bin/git-merge-po
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
git-whistles
|
data/bin/git-stash-and-checkout
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
git-whistles
|