versionomy 0.4.3 → 0.4.4
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/History.rdoc +5 -0
- data/README.rdoc +7 -3
- data/Version +1 -1
- data/Versionomy.rdoc +8 -4
- data/lib/versionomy/conversion/base.rb +0 -1
- data/lib/versionomy/conversion/parsing.rb +0 -1
- data/lib/versionomy/format/base.rb +0 -1
- data/lib/versionomy/value.rb +2 -2
- metadata +6 -6
data/History.rdoc
CHANGED
data/README.rdoc
CHANGED
|
@@ -115,7 +115,7 @@ provides a schema and formatter/parser matching Gem::Version.
|
|
|
115
115
|
|
|
116
116
|
* Ruby 1.8.7 or later, Ruby 1.9.1 or later, JRuby 1.5 or later, or
|
|
117
117
|
Rubinius 1.0 or later.
|
|
118
|
-
* blockenspiel 0.4.
|
|
118
|
+
* blockenspiel 0.4.5 or later.
|
|
119
119
|
|
|
120
120
|
=== Installation
|
|
121
121
|
|
|
@@ -129,10 +129,14 @@ provides a schema and formatter/parser matching Gem::Version.
|
|
|
129
129
|
|
|
130
130
|
=== Development and support
|
|
131
131
|
|
|
132
|
-
Documentation is available at http://
|
|
132
|
+
Documentation is available at http://dazuma.github.com/versionomy/rdoc
|
|
133
133
|
|
|
134
134
|
Source code is hosted on Github at http://github.com/dazuma/versionomy
|
|
135
135
|
|
|
136
|
+
Contributions are welcome. Fork the project on Github.
|
|
137
|
+
|
|
138
|
+
Build status: {<img src="https://secure.travis-ci.org/dazuma/versionomy.png" />}[http://travis-ci.org/dazuma/versionomy]
|
|
139
|
+
|
|
136
140
|
Report bugs on Github issues at http://github.org/dazuma/versionomy/issues
|
|
137
141
|
|
|
138
142
|
Contact the author at dazuma at gmail dot com.
|
|
@@ -143,7 +147,7 @@ Versionomy is written by Daniel Azuma (http://www.daniel-azuma.com/).
|
|
|
143
147
|
|
|
144
148
|
== LICENSE:
|
|
145
149
|
|
|
146
|
-
Copyright 2008-
|
|
150
|
+
Copyright 2008-2012 Daniel Azuma.
|
|
147
151
|
|
|
148
152
|
All rights reserved.
|
|
149
153
|
|
data/Version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.4
|
data/Versionomy.rdoc
CHANGED
|
@@ -287,9 +287,9 @@ Versionomy::Conversion::Rubygems for further information.
|
|
|
287
287
|
|
|
288
288
|
=== Requirements
|
|
289
289
|
|
|
290
|
-
* Ruby 1.8.
|
|
291
|
-
1.
|
|
292
|
-
* blockenspiel 0.4.
|
|
290
|
+
* Ruby 1.8.7 or later, Ruby 1.9.1 or later, JRuby 1.5 or later, or
|
|
291
|
+
Rubinius 1.0 or later.
|
|
292
|
+
* blockenspiel 0.4.5 or later.
|
|
293
293
|
|
|
294
294
|
=== Installation
|
|
295
295
|
|
|
@@ -303,10 +303,14 @@ Versionomy::Conversion::Rubygems for further information.
|
|
|
303
303
|
|
|
304
304
|
=== Development and support
|
|
305
305
|
|
|
306
|
-
Documentation is available at http://
|
|
306
|
+
Documentation is available at http://dazuma.github.com/versionomy/rdoc
|
|
307
307
|
|
|
308
308
|
Source code is hosted on Github at http://github.com/dazuma/versionomy
|
|
309
309
|
|
|
310
|
+
Contributions are welcome. Fork the project on Github.
|
|
311
|
+
|
|
312
|
+
Build status: {<img src="https://secure.travis-ci.org/dazuma/versionomy.png" />}[http://travis-ci.org/dazuma/versionomy]
|
|
313
|
+
|
|
310
314
|
Report bugs on Github issues at http://github.org/dazuma/versionomy/issues
|
|
311
315
|
|
|
312
316
|
Contact the author at dazuma at gmail dot com.
|
data/lib/versionomy/value.rb
CHANGED
|
@@ -454,7 +454,7 @@ module Versionomy
|
|
|
454
454
|
end
|
|
455
455
|
|
|
456
456
|
|
|
457
|
-
if defined?(::Psych)
|
|
457
|
+
if defined?(::Psych) && respond_to?(:yaml_tag)
|
|
458
458
|
|
|
459
459
|
# YAML support through psych
|
|
460
460
|
|
|
@@ -487,7 +487,7 @@ module Versionomy
|
|
|
487
487
|
end
|
|
488
488
|
end
|
|
489
489
|
|
|
490
|
-
|
|
490
|
+
elsif respond_to?(:yaml_as)
|
|
491
491
|
|
|
492
492
|
# YAML support through syck
|
|
493
493
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: versionomy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-06-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: blockenspiel
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.4.
|
|
21
|
+
version: 0.4.5
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ! '>='
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.4.
|
|
29
|
+
version: 0.4.5
|
|
30
30
|
description: Versionomy is a generalized version number library. It provides tools
|
|
31
31
|
to represent, manipulate, parse, and compare version numbers in the wide variety
|
|
32
32
|
of versioning schemes in use.
|
|
@@ -73,7 +73,7 @@ files:
|
|
|
73
73
|
- README.rdoc
|
|
74
74
|
- Versionomy.rdoc
|
|
75
75
|
- Version
|
|
76
|
-
homepage: http://
|
|
76
|
+
homepage: http://dazuma.github.com/versionomy
|
|
77
77
|
licenses: []
|
|
78
78
|
post_install_message:
|
|
79
79
|
rdoc_options: []
|
|
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
93
93
|
version: 1.3.1
|
|
94
94
|
requirements: []
|
|
95
95
|
rubyforge_project: virtuoso
|
|
96
|
-
rubygems_version: 1.8.
|
|
96
|
+
rubygems_version: 1.8.24
|
|
97
97
|
signing_key:
|
|
98
98
|
specification_version: 3
|
|
99
99
|
summary: Versionomy is a generalized version number library.
|