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 CHANGED
@@ -7,6 +7,10 @@ gemfile:
7
7
  - gemfiles/Gemfile.rails-3.0
8
8
  - gemfiles/Gemfile.rails-3.1
9
9
  - gemfiles/Gemfile.rails-3.2
10
+ matrix:
11
+ exclude:
12
+ - rvm: 1.8.7
13
+ - gemfiles/Gemfile.rails-3.2
10
14
  notifications:
11
15
  recipients:
12
16
  - michal.lomnicki@gmail.com
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.1 - rails 2.3 compatibility (check for Rails::Railties symbol). thanks to https://github.com/thehappycoder
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)
@@ -2,3 +2,4 @@ source "http://rubygems.org"
2
2
 
3
3
  gemspec :path => File.expand_path('../..', __FILE__)
4
4
  gem "rails", "~> 2.3"
5
+ gem "schema_plus", "~> 0.4"
@@ -2,3 +2,4 @@ source "http://rubygems.org"
2
2
 
3
3
  gemspec :path => File.expand_path('../..', __FILE__)
4
4
  gem "rails", "~> 3.0.0"
5
+ gem "schema_plus", "~> 0.4"
@@ -2,3 +2,4 @@ source "http://rubygems.org"
2
2
 
3
3
  gemspec :path => File.expand_path('../..', __FILE__)
4
4
  gem "rails", "~> 3.1.0"
5
+ gem "schema_plus", "~> 0.4"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: /Users/ronen/github/schema_validations
3
3
  specs:
4
- schema_validations (0.2.0)
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.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.6)
106
+ valuable (0.9.8)
107
107
 
108
108
  PLATFORMS
109
109
  ruby
@@ -1,3 +1,3 @@
1
1
  module SchemaValidations
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
@@ -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.1
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: -3959957521512513624
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: -3959957521512513624
183
+ hash: 2824787469668256797
184
184
  requirements: []
185
185
  rubyforge_project: schema_validations
186
186
  rubygems_version: 1.8.24