validation-mirror 1.0.0 → 1.0.1

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 CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
data/rails/init.rb ADDED
@@ -0,0 +1 @@
1
+ require "validation-mirror"
@@ -0,0 +1,61 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{validation-mirror}
8
+ s.version = "1.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["centro"]
12
+ s.date = %q{2009-12-16}
13
+ s.description = %q{Adds basic reflection support to ActiveRecord validations}
14
+ s.email = %q{gabriel.gironda@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "lib/validation-mirror.rb",
27
+ "rails/init.rb",
28
+ "test/teststrap.rb",
29
+ "test/validation-mirror_test.rb",
30
+ "validation-mirror.gemspec"
31
+ ]
32
+ s.homepage = %q{http://github.com/centro/validation-mirror}
33
+ s.rdoc_options = ["--charset=UTF-8"]
34
+ s.require_paths = ["lib"]
35
+ s.rubygems_version = %q{1.3.5}
36
+ s.summary = %q{Adds basic reflection support to ActiveRecord validations}
37
+ s.test_files = [
38
+ "test/teststrap.rb",
39
+ "test/validation-mirror_test.rb"
40
+ ]
41
+
42
+ if s.respond_to? :specification_version then
43
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
44
+ s.specification_version = 3
45
+
46
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
47
+ s.add_development_dependency(%q<riot>, [">= 0"])
48
+ s.add_development_dependency(%q<yard>, [">= 0"])
49
+ s.add_runtime_dependency(%q<activerecord>, [">= 2.3.5"])
50
+ else
51
+ s.add_dependency(%q<riot>, [">= 0"])
52
+ s.add_dependency(%q<yard>, [">= 0"])
53
+ s.add_dependency(%q<activerecord>, [">= 2.3.5"])
54
+ end
55
+ else
56
+ s.add_dependency(%q<riot>, [">= 0"])
57
+ s.add_dependency(%q<yard>, [">= 0"])
58
+ s.add_dependency(%q<activerecord>, [">= 2.3.5"])
59
+ end
60
+ end
61
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: validation-mirror
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - centro
@@ -59,8 +59,10 @@ files:
59
59
  - Rakefile
60
60
  - VERSION
61
61
  - lib/validation-mirror.rb
62
+ - rails/init.rb
62
63
  - test/teststrap.rb
63
64
  - test/validation-mirror_test.rb
65
+ - validation-mirror.gemspec
64
66
  has_rdoc: true
65
67
  homepage: http://github.com/centro/validation-mirror
66
68
  licenses: []