git-whistles 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -3,10 +3,10 @@ version control system.
3
3
 
4
4
  Install with:
5
5
 
6
- git clone git://github.com/mezis/git-whistles.git <clone-dir>
7
-
8
- Add `<clone-dir>/bin` to your `$PATH`
6
+ gem install git-whistles
9
7
 
8
+ *Note*: if you installed a previous version of this by cloning the repository, you'll have to remove that clone from your `PATH`.
9
+ Otherwise strange load issues may happen.
10
10
 
11
11
  #### chop
12
12
 
data/bin/git-chop CHANGED
@@ -11,6 +11,6 @@ require 'rubygems'
11
11
  require 'git-whistles'
12
12
 
13
13
  target_script = Pathname.new($0).basename
14
- script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath
14
+ script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath.to_s
15
15
 
16
16
  Kernel.exec script_path, *ARGV
@@ -11,6 +11,6 @@ require 'rubygems'
11
11
  require 'git-whistles'
12
12
 
13
13
  target_script = Pathname.new($0).basename
14
- script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath
14
+ script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath.to_s
15
15
 
16
16
  Kernel.exec script_path, *ARGV
data/bin/git-merge-po CHANGED
@@ -11,6 +11,6 @@ require 'rubygems'
11
11
  require 'git-whistles'
12
12
 
13
13
  target_script = Pathname.new($0).basename
14
- script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath
14
+ script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath.to_s
15
15
 
16
16
  Kernel.exec script_path, *ARGV
@@ -11,6 +11,6 @@ require 'rubygems'
11
11
  require 'git-whistles'
12
12
 
13
13
  target_script = Pathname.new($0).basename
14
- script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath
14
+ script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath.to_s
15
15
 
16
16
  Kernel.exec script_path, *ARGV
@@ -11,6 +11,6 @@ require 'rubygems'
11
11
  require 'git-whistles'
12
12
 
13
13
  target_script = Pathname.new($0).basename
14
- script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath
14
+ script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath.to_s
15
15
 
16
16
  Kernel.exec script_path, *ARGV
@@ -2,7 +2,7 @@ require 'pathname'
2
2
 
3
3
  module Git
4
4
  module Whistles
5
- VERSION = "0.4.2"
5
+ VERSION = "0.4.3"
6
6
  GEMDIR = Pathname.new(__FILE__).parent.parent.parent
7
7
  end
8
8
  end
data/libexec/runner.rb CHANGED
@@ -11,6 +11,6 @@ require 'rubygems'
11
11
  require 'git-whistles'
12
12
 
13
13
  target_script = Pathname.new($0).basename
14
- script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath
14
+ script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath.to_s
15
15
 
16
16
  Kernel.exec script_path, *ARGV
metadata CHANGED
@@ -1,101 +1,100 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: git-whistles
3
- version: !ruby/object:Gem::Version
4
- hash: 11
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.3
5
5
  prerelease:
6
- segments:
7
- - 0
8
- - 4
9
- - 2
10
- version: 0.4.2
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Julien Letessier
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2012-09-10 00:00:00 +01:00
19
- default_executable:
20
- dependencies:
21
- - !ruby/object:Gem::Dependency
22
- requirement: &id001 !ruby/object:Gem::Requirement
12
+ date: 2012-10-09 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
23
17
  none: false
24
- requirements:
25
- - - ">="
26
- - !ruby/object:Gem::Version
27
- hash: 23
28
- segments:
29
- - 1
30
- - 0
31
- - 0
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
32
21
  version: 1.0.0
33
- prerelease: false
34
- name: bundler
35
22
  type: :development
36
- version_requirements: *id001
37
- - !ruby/object:Gem::Dependency
38
- requirement: &id002 !ruby/object:Gem::Requirement
39
- none: false
40
- requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- hash: 3
44
- segments:
45
- - 0
46
- version: "0"
47
23
  prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 1.0.0
30
+ - !ruby/object:Gem::Dependency
48
31
  name: rake
49
- type: :development
50
- version_requirements: *id002
51
- - !ruby/object:Gem::Dependency
52
- requirement: &id003 !ruby/object:Gem::Requirement
32
+ requirement: !ruby/object:Gem::Requirement
53
33
  none: false
54
- requirements:
55
- - - ">="
56
- - !ruby/object:Gem::Version
57
- hash: 3
58
- segments:
59
- - 0
60
- version: "0"
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
61
39
  prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
62
47
  name: pry
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
63
54
  type: :development
64
- version_requirements: *id003
65
- - !ruby/object:Gem::Dependency
66
- requirement: &id004 !ruby/object:Gem::Requirement
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
67
57
  none: false
68
- requirements:
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: pivotal-tracker
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
69
67
  - - ~>
70
- - !ruby/object:Gem::Version
71
- hash: 7
72
- segments:
73
- - 0
74
- - 5
75
- - 6
68
+ - !ruby/object:Gem::Version
76
69
  version: 0.5.6
77
- prerelease: false
78
- name: pivotal-tracker
79
70
  type: :runtime
80
- version_requirements: *id004
81
- - !ruby/object:Gem::Dependency
82
- requirement: &id005 !ruby/object:Gem::Requirement
83
- none: false
84
- requirements:
85
- - - ">="
86
- - !ruby/object:Gem::Version
87
- hash: 3
88
- segments:
89
- - 0
90
- version: "0"
91
71
  prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 0.5.6
78
+ - !ruby/object:Gem::Dependency
92
79
  name: term-ansicolor
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
93
86
  type: :runtime
94
- version_requirements: *id005
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
95
94
  description: A few helpers for classic Git workflows
96
- email:
95
+ email:
97
96
  - julien.letessier@gmail.com
98
- executables:
97
+ executables:
99
98
  - git-chop
100
99
  - git-list-branches
101
100
  - git-merge-po
@@ -103,10 +102,8 @@ executables:
103
102
  - git-pull-request
104
103
  - git-stash-and-checkout
105
104
  extensions: []
106
-
107
105
  extra_rdoc_files: []
108
-
109
- files:
106
+ files:
110
107
  - .gitignore
111
108
  - Gemfile
112
109
  - LICENSE
@@ -127,41 +124,32 @@ files:
127
124
  - libexec/git-outstanding-features.sh
128
125
  - libexec/git-stash-and-checkout.sh
129
126
  - libexec/runner.rb
130
- has_rdoc: true
131
127
  homepage: http://github.com/mezis/git-whistles
132
128
  licenses: []
133
-
134
129
  post_install_message:
135
130
  rdoc_options: []
136
-
137
- require_paths:
131
+ require_paths:
138
132
  - lib
139
- required_ruby_version: !ruby/object:Gem::Requirement
133
+ required_ruby_version: !ruby/object:Gem::Requirement
140
134
  none: false
141
- requirements:
142
- - - ">="
143
- - !ruby/object:Gem::Version
144
- hash: 3
145
- segments:
135
+ requirements:
136
+ - - ! '>='
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ segments:
146
140
  - 0
147
- version: "0"
148
- required_rubygems_version: !ruby/object:Gem::Requirement
141
+ hash: -772797490059586009
142
+ required_rubygems_version: !ruby/object:Gem::Requirement
149
143
  none: false
150
- requirements:
151
- - - ">="
152
- - !ruby/object:Gem::Version
153
- hash: 23
154
- segments:
155
- - 1
156
- - 3
157
- - 6
144
+ requirements:
145
+ - - ! '>='
146
+ - !ruby/object:Gem::Version
158
147
  version: 1.3.6
159
148
  requirements: []
160
-
161
149
  rubyforge_project:
162
- rubygems_version: 1.3.9.5
150
+ rubygems_version: 1.8.24
163
151
  signing_key:
164
152
  specification_version: 3
165
- summary: "A few helpers for classic Git workflows: makes branching and merging, PO file handling, issuing pull requests slightly simpler."
153
+ summary: ! 'A few helpers for classic Git workflows: makes branching and merging,
154
+ PO file handling, issuing pull requests slightly simpler.'
166
155
  test_files: []
167
-