rock-n-code-validator 0.3.3 → 0.3.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/CHANGES +13 -0
- data/README +2 -2
- data/Rakefile +1 -2
- metadata +2 -2
data/CHANGES
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
==== 0.3.4 ~ April 23, 2009
|
|
2
|
+
* Updated the Rakefile and the gemspec files.
|
|
3
|
+
* Removed any reference to Rubyforge from the Rakefile and the gemspec files.
|
|
4
|
+
* Added RDoc documentation to the project.
|
|
5
|
+
|
|
6
|
+
==== 0.3.3.1 ~ April 23, 2009
|
|
7
|
+
* Updated the Rakefile and the gemspec files.
|
|
8
|
+
|
|
9
|
+
==== 0.3.3 ~ April 23, 2009
|
|
10
|
+
* Tested the compatibility of this library against the versions 1.8.x and 1.9.x of the Ruby interpreters.
|
|
11
|
+
* Improved the way to call a command from the shell.
|
|
12
|
+
* Added the :uninstall task to the Rakefile.
|
|
13
|
+
|
|
1
14
|
==== 0.3.2 ~ April 22, 2009
|
|
2
15
|
* Fixed bug that appeared during the registration of a Validation class.
|
|
3
16
|
* Fixed bug that appeared during the definition of a rule within a Validation class.
|
data/README
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
== VALIDATOR
|
|
2
2
|
|
|
3
|
-
=== Vision
|
|
3
|
+
=== Vision.
|
|
4
4
|
|
|
5
5
|
Instance validation is robustness.
|
|
6
6
|
|
|
@@ -28,4 +28,4 @@ The current version of this library implements these features:
|
|
|
28
28
|
- Generic Validator::Base class for creating user-defined Validation classes.
|
|
29
29
|
- Registration of user-defined Validation classes.
|
|
30
30
|
- Generic validations of instance with or without user-defined conditions.
|
|
31
|
-
-
|
|
31
|
+
- Compatibility with Ruby interpreters version 1.8.x and 1.9.x.
|
data/Rakefile
CHANGED
|
@@ -8,8 +8,7 @@ require 'spec/rake/spectask'
|
|
|
8
8
|
desc 'GemSpec definition.'
|
|
9
9
|
gemspec = Gem::Specification.new do |specification|
|
|
10
10
|
specification.name = 'validator'
|
|
11
|
-
specification.
|
|
12
|
-
specification.version = '0.3.3'
|
|
11
|
+
specification.version = '0.3.4'
|
|
13
12
|
specification.date = '2009-04-23'
|
|
14
13
|
specification.author = 'Julio Javier Cicchelli'
|
|
15
14
|
specification.email = 'javier@rock-n-code.com'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rock-n-code-validator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julio Javier Cicchelli
|
|
@@ -51,7 +51,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
51
51
|
version:
|
|
52
52
|
requirements: []
|
|
53
53
|
|
|
54
|
-
rubyforge_project:
|
|
54
|
+
rubyforge_project:
|
|
55
55
|
rubygems_version: 1.2.0
|
|
56
56
|
signing_key:
|
|
57
57
|
specification_version: 2
|