git_guts 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- OWVjOTk1NzE0NmFlZjZiNzIyMGUzNWIxOGYwZWIxZTJlZGE3OGY5ZQ==
5
- data.tar.gz: !binary |-
6
- NGZkNDQxNGE1ZTkyODUzYmVhOTQ4ZjZlMzIxN2RhOGFhYTM3ODZiNA==
2
+ SHA1:
3
+ metadata.gz: bcf1e35f8025d84baa869b1a885b46e03e4c2f2c
4
+ data.tar.gz: 2dbe9562722963338361df27e4b9402fd264f8d2
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- ZDZiZDdjZTM2OWFhNjY0ZmYyY2EyOTJmZjI3NDFkODUxYjBlOGUxNTc5MWY4
10
- Y2VkNjAyOWVhZTZkYTU2Y2QyY2RhMTJiZmFjNzIyMWI1ZDY2YTJkYzY3NzNm
11
- MmQ1YmMwM2U1MDVlYjc1MWFiZDJjZWQ5NGU3YzJkMTdmOWVmZWM=
12
- data.tar.gz: !binary |-
13
- OGVmYzg4MjFmZDBkZTRjNzdlNWM2NGI4NzM4YTc0NjlmNGMwZmRiOGI3Mjk5
14
- MjU2YTEyODJiMzIxMDQ0ZTRmYTdmNWZlY2YxNDUxZmQ5MTE1NWM1YWRiODUz
15
- MGQ1MDEzNTg0NzE1MmZmYWNmY2Q5MGMxYzNjODRkZTU0OWFhMTc=
6
+ metadata.gz: 68ebb57e6d60105e1d2a57e49884e5a7712a64f30d1f8979b7c31d1bf6921bb41eea328c6e87cbef1cb9e49b0c3eecf6d8a52a9d560846f34d55655765fdb924
7
+ data.tar.gz: 2e3ae4d9f55fddde212201f163becb4739a80b08bcad48ebcf4f78355cce6aa5c402571d7353c2c0db72bae9f27d0f3fc172dac89995e209811c2417c407fd79
data/README.md CHANGED
@@ -18,6 +18,24 @@ Or install it yourself as:
18
18
 
19
19
  ## Usage
20
20
 
21
+ These commands are available:
22
+
23
+ ```
24
+ git-about
25
+ git-fireworks
26
+ git-inception
27
+ git-multipush
28
+ git-open
29
+ git-server
30
+ git-welcome
31
+ git-autocommit
32
+ git-guts
33
+ git-map
34
+ git-music
35
+ git-quote
36
+ git-test
37
+ ```
38
+
21
39
  TODO: Write usage instructions here
22
40
 
23
41
  ## Contributing
data/bin/bash-bin CHANGED
@@ -2,4 +2,4 @@ DIR = File.expand_path('../', __FILE__)
2
2
  SCRIPT_NAME = File.basename(__FILE__)
3
3
  BASH_BIN = "#{DIR}/scripts/#{SCRIPT_NAME}"
4
4
  ARGV.insert(0, BASH_BIN)
5
- exec '/bin/bash', *ARGV
5
+ exec `which bash`, *ARGV
data/bin/git-about CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
data/bin/git-autocommit CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
data/bin/git-fireworks CHANGED
@@ -2,4 +2,4 @@ DIR = File.expand_path('../', __FILE__)
2
2
  SCRIPT_NAME = File.basename(__FILE__)
3
3
  BASH_BIN = "#{DIR}/scripts/#{SCRIPT_NAME}"
4
4
  ARGV.insert(0, BASH_BIN)
5
- exec '/bin/bash', *ARGV
5
+ exec `which bash`, *ARGV
data/bin/git-guts CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
data/bin/git-inception CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
data/bin/git-map CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
data/bin/git-multipush CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
data/bin/git-music CHANGED
@@ -2,4 +2,4 @@ DIR = File.expand_path('../', __FILE__)
2
2
  SCRIPT_NAME = File.basename(__FILE__)
3
3
  BASH_BIN = "#{DIR}/scripts/#{SCRIPT_NAME}"
4
4
  ARGV.insert(0, BASH_BIN)
5
- exec '/bin/bash', *ARGV
5
+ exec `which bash`, *ARGV
data/bin/git-open CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
data/bin/git-quote CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
data/bin/git-server CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
data/bin/git-test CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
data/bin/git-welcome CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
data/bin/ruby-bin CHANGED
@@ -1,19 +1,4 @@
1
1
  DIR = File.expand_path('../', __FILE__)
2
- begin
3
- RUBY_BIN = File.read("#{DIR}/RUBY_BIN_PATH").chomp
4
- rescue
5
- puts <<-MSG
6
-
7
- Looks like you haven't specified which ruby to use.
8
-
9
- Please run this command manually:
10
-
11
- which ruby > #{DIR}/RUBY_BIN_PATH
12
-
13
- MSG
14
-
15
- exit
16
- end
17
2
  SCRIPT_NAME = File.basename(__FILE__)
18
3
  ARGV.insert(0, "#{DIR}/scripts/#{SCRIPT_NAME}.rb")
19
- exec RUBY_BIN, *ARGV
4
+ exec `which ruby`, *ARGV
@@ -1,3 +1,3 @@
1
1
  module GitGuts
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,139 +1,139 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_guts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shadab Ahmed
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-12 00:00:00.000000000 Z
11
+ date: 2015-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: guard
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ! '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ! '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: thor
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ! '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ! '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: sinatra
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ! '>='
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ! '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: haml
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ! '>='
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ! '>='
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: git
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ! '>='
87
+ - - ">="
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ! '>='
94
+ - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: ruby-filemagic
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ! '>='
101
+ - - ">="
102
102
  - !ruby/object:Gem::Version
103
103
  version: '0'
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ! '>='
108
+ - - ">="
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: diffy
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - ! '>='
115
+ - - ">="
116
116
  - !ruby/object:Gem::Version
117
117
  version: '0'
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - ! '>='
122
+ - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: thin
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - ! '>='
129
+ - - ">="
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - ! '>='
136
+ - - ">="
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0'
139
139
  description: Diving deep into git with ruby
@@ -158,7 +158,7 @@ executables:
158
158
  extensions: []
159
159
  extra_rdoc_files: []
160
160
  files:
161
- - .gitignore
161
+ - ".gitignore"
162
162
  - Gemfile
163
163
  - LICENSE.txt
164
164
  - README.md
@@ -247,38 +247,32 @@ files:
247
247
  homepage: http://github.com/shadabahmed/git_guts
248
248
  licenses: []
249
249
  metadata: {}
250
- post_install_message: ! '
250
+ post_install_message: |2
251
251
 
252
252
  ************************************************************
253
-
254
253
  Thanks for installing git-guts
255
254
 
256
-
257
255
  Please run this command manually:
258
256
 
259
-
260
- which ruby > /Users/shadab/.rvm/gems/ruby-1.9.3-p429/gems/git_guts-0.1.0/bin/RUBY_BIN_PATH
261
-
257
+ which ruby > /Users/shadab/.rvm/gems/ruby-2.1.2/gems/git_guts-0.2.0/bin/RUBY_BIN_PATH
262
258
 
263
259
  ************************************************************
264
-
265
- '
266
260
  rdoc_options: []
267
261
  require_paths:
268
262
  - lib
269
263
  required_ruby_version: !ruby/object:Gem::Requirement
270
264
  requirements:
271
- - - ! '>='
265
+ - - ">="
272
266
  - !ruby/object:Gem::Version
273
267
  version: '0'
274
268
  required_rubygems_version: !ruby/object:Gem::Requirement
275
269
  requirements:
276
- - - ! '>='
270
+ - - ">="
277
271
  - !ruby/object:Gem::Version
278
272
  version: '0'
279
273
  requirements: []
280
274
  rubyforge_project:
281
- rubygems_version: 2.1.4
275
+ rubygems_version: 2.2.2
282
276
  signing_key:
283
277
  specification_version: 4
284
278
  summary: Helper commands to see your way around git