rdf-isomorphic 0.3.4 → 1.0.0
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/VERSION +1 -0
- data/lib/rdf/isomorphic/version.rb +21 -23
- metadata +25 -20
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.0
|
@@ -1,25 +1,23 @@
|
|
1
|
-
module RDF
|
2
|
-
module
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
def self.to_a() [MAJOR, MINOR, TINY] end
|
23
|
-
end
|
1
|
+
module RDF::Isomorphic
|
2
|
+
module VERSION
|
3
|
+
MAJOR = 0
|
4
|
+
MINOR = 3
|
5
|
+
TINY = 3
|
6
|
+
EXTRA = nil
|
7
|
+
|
8
|
+
STRING = [MAJOR, MINOR, TINY].join('.')
|
9
|
+
STRING << ".#{EXTRA}" if EXTRA
|
10
|
+
|
11
|
+
##
|
12
|
+
# @return [String]
|
13
|
+
def self.to_s() STRING end
|
14
|
+
|
15
|
+
##
|
16
|
+
# @return [String]
|
17
|
+
def self.to_str() STRING end
|
18
|
+
|
19
|
+
##
|
20
|
+
# @return [Array(Integer, Integer, Integer)]
|
21
|
+
def self.to_a() [MAJOR, MINOR, TINY] end
|
24
22
|
end
|
25
23
|
end
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdf-isomorphic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 23
|
5
|
+
prerelease:
|
5
6
|
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
6
9
|
- 0
|
7
|
-
|
8
|
-
- 4
|
9
|
-
version: 0.3.4
|
10
|
+
version: 1.0.0
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Ben Lavender
|
@@ -15,8 +16,7 @@ autorequire:
|
|
15
16
|
bindir: bin
|
16
17
|
cert_chain: []
|
17
18
|
|
18
|
-
date:
|
19
|
-
default_executable:
|
19
|
+
date: 2013-01-19 00:00:00 Z
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
22
|
name: rdf
|
@@ -26,11 +26,11 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 15
|
29
30
|
segments:
|
31
|
+
- 1
|
30
32
|
- 0
|
31
|
-
|
32
|
-
- 3
|
33
|
-
version: 0.2.3
|
33
|
+
version: "1.0"
|
34
34
|
type: :runtime
|
35
35
|
version_requirements: *id001
|
36
36
|
- !ruby/object:Gem::Dependency
|
@@ -41,11 +41,11 @@ dependencies:
|
|
41
41
|
requirements:
|
42
42
|
- - ">="
|
43
43
|
- !ruby/object:Gem::Version
|
44
|
+
hash: 15
|
44
45
|
segments:
|
46
|
+
- 1
|
45
47
|
- 0
|
46
|
-
|
47
|
-
- 0
|
48
|
-
version: 0.2.0
|
48
|
+
version: "1.0"
|
49
49
|
type: :development
|
50
50
|
version_requirements: *id002
|
51
51
|
- !ruby/object:Gem::Dependency
|
@@ -56,11 +56,12 @@ dependencies:
|
|
56
56
|
requirements:
|
57
57
|
- - ">="
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
+
hash: 63
|
59
60
|
segments:
|
60
61
|
- 2
|
61
|
-
-
|
62
|
+
- 12
|
62
63
|
- 0
|
63
|
-
version: 2.
|
64
|
+
version: 2.12.0
|
64
65
|
type: :development
|
65
66
|
version_requirements: *id003
|
66
67
|
- !ruby/object:Gem::Dependency
|
@@ -71,15 +72,16 @@ dependencies:
|
|
71
72
|
requirements:
|
72
73
|
- - ">="
|
73
74
|
- !ruby/object:Gem::Version
|
75
|
+
hash: 57
|
74
76
|
segments:
|
75
77
|
- 0
|
76
|
-
-
|
78
|
+
- 8
|
77
79
|
- 3
|
78
|
-
version: 0.
|
80
|
+
version: 0.8.3
|
79
81
|
type: :development
|
80
82
|
version_requirements: *id004
|
81
83
|
description: RDF.rb plugin for graph bijections and isomorphic equivalence.
|
82
|
-
email:
|
84
|
+
email: public-rdf-ruby@w3.org
|
83
85
|
executables: []
|
84
86
|
|
85
87
|
extensions: []
|
@@ -90,10 +92,10 @@ files:
|
|
90
92
|
- AUTHORS
|
91
93
|
- README
|
92
94
|
- UNLICENSE
|
95
|
+
- VERSION
|
93
96
|
- lib/rdf/isomorphic/version.rb
|
94
97
|
- lib/rdf/isomorphic.rb
|
95
|
-
|
96
|
-
homepage: http://rdf.rubyforge.org/
|
98
|
+
homepage: http://github.com/ruby-rdf/rdf-isomorphic
|
97
99
|
licenses:
|
98
100
|
- Public Domain
|
99
101
|
post_install_message:
|
@@ -106,6 +108,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
106
108
|
requirements:
|
107
109
|
- - ">="
|
108
110
|
- !ruby/object:Gem::Version
|
111
|
+
hash: 51
|
109
112
|
segments:
|
110
113
|
- 1
|
111
114
|
- 8
|
@@ -116,15 +119,17 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
119
|
requirements:
|
117
120
|
- - ">="
|
118
121
|
- !ruby/object:Gem::Version
|
122
|
+
hash: 3
|
119
123
|
segments:
|
120
124
|
- 0
|
121
125
|
version: "0"
|
122
126
|
requirements: []
|
123
127
|
|
124
128
|
rubyforge_project: rdf
|
125
|
-
rubygems_version: 1.
|
129
|
+
rubygems_version: 1.8.24
|
126
130
|
signing_key:
|
127
131
|
specification_version: 3
|
128
132
|
summary: RDF.rb plugin for graph bijections and isomorphic equivalence.
|
129
133
|
test_files: []
|
130
134
|
|
135
|
+
has_rdoc: false
|