schema_validations 0.2.1 → 0.2.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/.travis.yml +4 -0
- data/README.rdoc +1 -1
- data/gemfiles/Gemfile.rails-2.3 +1 -0
- data/gemfiles/Gemfile.rails-3.0 +1 -0
- data/gemfiles/Gemfile.rails-3.1 +1 -0
- data/gemfiles/Gemfile.rails-3.2.lock +3 -3
- data/lib/schema_validations/version.rb +1 -1
- data/lib/schema_validations.rb +1 -1
- metadata +3 -3
data/.travis.yml
CHANGED
data/README.rdoc
CHANGED
|
@@ -123,7 +123,7 @@ were never needed for the logged use case.
|
|
|
123
123
|
== History
|
|
124
124
|
|
|
125
125
|
* Recent Release notes:
|
|
126
|
-
* 0.2.
|
|
126
|
+
* 0.2.2 - rails 2.3 compatibility (check for Rails::Railties symbol). thanks to https://github.com/thehappycoder
|
|
127
127
|
* 0.2.0 - new feature: ActiveRecord#validators and ActiveRecord#validators_on now ensure schema_validations are loaded
|
|
128
128
|
|
|
129
129
|
* SchemaValidations is derived from the "Red Hill On Rails" plugin schema_validations originally created by harukizaemon (https://github.com/harukizaemon)
|
data/gemfiles/Gemfile.rails-2.3
CHANGED
data/gemfiles/Gemfile.rails-3.0
CHANGED
data/gemfiles/Gemfile.rails-3.1
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: /Users/ronen/github/schema_validations
|
|
3
3
|
specs:
|
|
4
|
-
schema_validations (0.2.
|
|
4
|
+
schema_validations (0.2.1)
|
|
5
5
|
schema_plus
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -82,7 +82,7 @@ GEM
|
|
|
82
82
|
rspec-expectations (2.12.1)
|
|
83
83
|
diff-lcs (~> 1.1.3)
|
|
84
84
|
rspec-mocks (2.12.1)
|
|
85
|
-
schema_plus (1.0.
|
|
85
|
+
schema_plus (1.0.1)
|
|
86
86
|
rails (>= 3.2)
|
|
87
87
|
valuable
|
|
88
88
|
simplecov (0.7.1)
|
|
@@ -103,7 +103,7 @@ GEM
|
|
|
103
103
|
polyglot
|
|
104
104
|
polyglot (>= 0.3.1)
|
|
105
105
|
tzinfo (0.3.35)
|
|
106
|
-
valuable (0.9.
|
|
106
|
+
valuable (0.9.8)
|
|
107
107
|
|
|
108
108
|
PLATFORMS
|
|
109
109
|
ruby
|
data/lib/schema_validations.rb
CHANGED
|
@@ -3,7 +3,7 @@ require 'valuable'
|
|
|
3
3
|
require 'schema_plus'
|
|
4
4
|
require 'schema_validations/version'
|
|
5
5
|
require 'schema_validations/active_record/validations'
|
|
6
|
-
require 'schema_validations/railtie' if defined?(Rails)
|
|
6
|
+
require 'schema_validations/railtie' if defined?(Rails::Railtie)
|
|
7
7
|
|
|
8
8
|
module SchemaValidations
|
|
9
9
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: schema_validations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -171,7 +171,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
171
171
|
version: '0'
|
|
172
172
|
segments:
|
|
173
173
|
- 0
|
|
174
|
-
hash:
|
|
174
|
+
hash: 2824787469668256797
|
|
175
175
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
176
176
|
none: false
|
|
177
177
|
requirements:
|
|
@@ -180,7 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
180
180
|
version: '0'
|
|
181
181
|
segments:
|
|
182
182
|
- 0
|
|
183
|
-
hash:
|
|
183
|
+
hash: 2824787469668256797
|
|
184
184
|
requirements: []
|
|
185
185
|
rubyforge_project: schema_validations
|
|
186
186
|
rubygems_version: 1.8.24
|