git_test 0.0.6 → 0.0.7
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.
- data/bin/git_test +12 -2
- data/lib/git_test.rb +5 -5
- data/lib/git_test_version.rb +1 -1
- metadata +11 -9
data/bin/git_test
CHANGED
@@ -1,8 +1,18 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
unless File.respond_to? :realpath
|
3
|
+
class File #:nodoc:
|
4
|
+
def self.realpath path
|
5
|
+
return realpath(File.readlink(path)) if symlink?(path)
|
6
|
+
path
|
7
|
+
end
|
8
|
+
end
|
9
|
+
end
|
10
|
+
$: << File.expand_path(File.dirname(File.realpath(__FILE__)) + '/../lib')
|
11
|
+
|
2
12
|
require 'rubygems'
|
3
13
|
require 'gli'
|
4
|
-
require '
|
5
|
-
require '
|
14
|
+
require 'git_test_version'
|
15
|
+
require 'git_test'
|
6
16
|
|
7
17
|
include GLI
|
8
18
|
|
data/lib/git_test.rb
CHANGED
@@ -7,8 +7,8 @@ module GitTest
|
|
7
7
|
|
8
8
|
end
|
9
9
|
|
10
|
-
require '
|
11
|
-
require '
|
12
|
-
require '
|
13
|
-
require '
|
14
|
-
require '
|
10
|
+
require 'git_test/notify.rb'
|
11
|
+
require 'git_test/runner'
|
12
|
+
require 'git_test/test'
|
13
|
+
require 'git_test/writer'
|
14
|
+
require 'git_test/proj'
|
data/lib/git_test_version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git_test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 7
|
10
|
+
version: 0.0.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Richard Schneeman
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-10-
|
18
|
+
date: 2011-10-27 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: rake
|
@@ -135,12 +135,14 @@ dependencies:
|
|
135
135
|
requirement: &id009 !ruby/object:Gem::Requirement
|
136
136
|
none: false
|
137
137
|
requirements:
|
138
|
-
- - "
|
138
|
+
- - "="
|
139
139
|
- !ruby/object:Gem::Version
|
140
|
-
hash:
|
140
|
+
hash: 17
|
141
141
|
segments:
|
142
|
-
-
|
143
|
-
|
142
|
+
- 1
|
143
|
+
- 3
|
144
|
+
- 5
|
145
|
+
version: 1.3.5
|
144
146
|
type: :runtime
|
145
147
|
version_requirements: *id009
|
146
148
|
- !ruby/object:Gem::Dependency
|
@@ -180,7 +182,6 @@ extensions: []
|
|
180
182
|
extra_rdoc_files:
|
181
183
|
- README.md
|
182
184
|
files:
|
183
|
-
- bin/git_test
|
184
185
|
- lib/git_test.rb
|
185
186
|
- lib/git_test/notify.rb
|
186
187
|
- lib/git_test/proj.rb
|
@@ -188,6 +189,7 @@ files:
|
|
188
189
|
- lib/git_test/test.rb
|
189
190
|
- lib/git_test/writer.rb
|
190
191
|
- lib/git_test_version.rb
|
192
|
+
- bin/git_test
|
191
193
|
- README.md
|
192
194
|
homepage: https://github.com/schneems/git_test
|
193
195
|
licenses: []
|