gitable 0.0.1 → 0.0.2
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/.document +5 -5
- data/.gitignore +25 -23
- data/Gemfile +20 -16
- data/LICENSE +20 -20
- data/README.rdoc +41 -20
- data/Rakefile +75 -67
- data/VERSION.yml +1 -1
- data/gitable.gemspec +7 -4
- data/lib/gitable.rb +5 -4
- data/lib/gitable/scp_uri.rb +37 -31
- data/lib/gitable/uri.rb +75 -32
- data/spec/gitable_spec.rb +427 -380
- data/spec/spec.opts +1 -1
- data/spec/spec_helper.rb +9 -9
- metadata +15 -6
data/spec/spec.opts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
--color
|
1
|
+
--color
|
data/spec/spec_helper.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
2
|
-
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
3
|
-
require 'gitable'
|
4
|
-
require 'spec'
|
5
|
-
require 'spec/autorun'
|
6
|
-
|
7
|
-
Spec::Runner.configure do |config|
|
8
|
-
|
9
|
-
end
|
1
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
2
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
3
|
+
require 'gitable'
|
4
|
+
require 'spec'
|
5
|
+
require 'spec/autorun'
|
6
|
+
|
7
|
+
Spec::Runner.configure do |config|
|
8
|
+
|
9
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Emde
|
@@ -9,11 +9,20 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-01-
|
12
|
+
date: 2010-01-14 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
16
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: addressable
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: It's like Addressable::URI but for Git. Gitable.
|
17
26
|
email: martin.emde@gmail.com
|
18
27
|
executables: []
|
19
28
|
|
@@ -64,7 +73,7 @@ rubyforge_project:
|
|
64
73
|
rubygems_version: 1.3.5
|
65
74
|
signing_key:
|
66
75
|
specification_version: 3
|
67
|
-
summary:
|
76
|
+
summary: Addressable::URI for Git
|
68
77
|
test_files:
|
69
78
|
- spec/gitable_spec.rb
|
70
79
|
- spec/spec_helper.rb
|