hashrocket-mongomapper 0.3.4.1 → 0.3.5

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/Rakefile CHANGED
@@ -13,7 +13,7 @@ begin
13
13
 
14
14
  gem.add_dependency('activesupport')
15
15
  gem.add_dependency('mongodb-mongo', '0.11.1')
16
- gem.add_dependency('hashrocket-validatable', '1.7.2')
16
+ gem.add_dependency('hashrocket-validatable', '>= 1.7.3')
17
17
 
18
18
  gem.add_development_dependency('mocha', '0.9.4')
19
19
  gem.add_development_dependency('jnunemaker-matchy', '0.4.0')
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.4
1
+ 0.3.5
@@ -3,7 +3,7 @@ require 'rubygems'
3
3
 
4
4
  gem 'activesupport'
5
5
  gem 'mongodb-mongo', '0.11.1'
6
- gem 'hashrocket-validatable', '1.7.2'
6
+ gem 'hashrocket-validatable', '>= 1.7.3'
7
7
 
8
8
  require 'activesupport'
9
9
  require 'mongo'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hashrocket-mongomapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4.1
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Nunemaker
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-08-27 00:00:00 -07:00
12
+ date: 2009-08-31 00:00:00 -07:00
13
13
  default_executable: mmconsole
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -40,7 +40,7 @@ dependencies:
40
40
  requirements:
41
41
  - - ">="
42
42
  - !ruby/object:Gem::Version
43
- version: 1.7.2.1
43
+ version: 1.7.3
44
44
  version:
45
45
  - !ruby/object:Gem::Dependency
46
46
  name: mocha
@@ -105,7 +105,6 @@ files:
105
105
  - lib/mongomapper/serializers/json_serializer.rb
106
106
  - lib/mongomapper/support.rb
107
107
  - lib/mongomapper/validations.rb
108
- - mongomapper.gemspec
109
108
  - test/NOTE_ON_TESTING
110
109
  - test/functional/associations/test_belongs_to_polymorphic_proxy.rb
111
110
  - test/functional/associations/test_belongs_to_proxy.rb
@@ -1,142 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{mongomapper}
8
- s.version = "0.3.4.1"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["John Nunemaker"]
12
- s.date = %q{2009-08-27}
13
- s.default_executable = %q{mmconsole}
14
- s.email = %q{nunemaker@gmail.com}
15
- s.executables = ["mmconsole"]
16
- s.extra_rdoc_files = [
17
- "LICENSE",
18
- "README.rdoc"
19
- ]
20
- s.files = [
21
- ".gitignore",
22
- "History",
23
- "LICENSE",
24
- "README.rdoc",
25
- "Rakefile",
26
- "VERSION",
27
- "bin/mmconsole",
28
- "lib/mongomapper.rb",
29
- "lib/mongomapper/associations.rb",
30
- "lib/mongomapper/associations/base.rb",
31
- "lib/mongomapper/associations/belongs_to_polymorphic_proxy.rb",
32
- "lib/mongomapper/associations/belongs_to_proxy.rb",
33
- "lib/mongomapper/associations/many_documents_proxy.rb",
34
- "lib/mongomapper/associations/many_embedded_polymorphic_proxy.rb",
35
- "lib/mongomapper/associations/many_embedded_proxy.rb",
36
- "lib/mongomapper/associations/many_polymorphic_proxy.rb",
37
- "lib/mongomapper/associations/many_proxy.rb",
38
- "lib/mongomapper/associations/proxy.rb",
39
- "lib/mongomapper/callbacks.rb",
40
- "lib/mongomapper/document.rb",
41
- "lib/mongomapper/dynamic_finder.rb",
42
- "lib/mongomapper/embedded_document.rb",
43
- "lib/mongomapper/finder_options.rb",
44
- "lib/mongomapper/key.rb",
45
- "lib/mongomapper/observing.rb",
46
- "lib/mongomapper/pagination.rb",
47
- "lib/mongomapper/rails_compatibility/document.rb",
48
- "lib/mongomapper/rails_compatibility/embedded_document.rb",
49
- "lib/mongomapper/save_with_validation.rb",
50
- "lib/mongomapper/serialization.rb",
51
- "lib/mongomapper/serializers/json_serializer.rb",
52
- "lib/mongomapper/support.rb",
53
- "lib/mongomapper/validations.rb",
54
- "mongomapper.gemspec",
55
- "test/NOTE_ON_TESTING",
56
- "test/functional/associations/test_belongs_to_polymorphic_proxy.rb",
57
- "test/functional/associations/test_belongs_to_proxy.rb",
58
- "test/functional/associations/test_many_embedded_polymorphic_proxy.rb",
59
- "test/functional/associations/test_many_embedded_proxy.rb",
60
- "test/functional/associations/test_many_polymorphic_proxy.rb",
61
- "test/functional/associations/test_many_proxy.rb",
62
- "test/functional/test_associations.rb",
63
- "test/functional/test_callbacks.rb",
64
- "test/functional/test_document.rb",
65
- "test/functional/test_pagination.rb",
66
- "test/functional/test_rails_compatibility.rb",
67
- "test/functional/test_validations.rb",
68
- "test/models.rb",
69
- "test/test_helper.rb",
70
- "test/unit/serializers/test_json_serializer.rb",
71
- "test/unit/test_association_base.rb",
72
- "test/unit/test_document.rb",
73
- "test/unit/test_embedded_document.rb",
74
- "test/unit/test_finder_options.rb",
75
- "test/unit/test_key.rb",
76
- "test/unit/test_mongomapper.rb",
77
- "test/unit/test_observing.rb",
78
- "test/unit/test_pagination.rb",
79
- "test/unit/test_rails_compatibility.rb",
80
- "test/unit/test_serializations.rb",
81
- "test/unit/test_validations.rb"
82
- ]
83
- s.homepage = %q{http://github.com/jnunemaker/mongomapper}
84
- s.rdoc_options = ["--charset=UTF-8"]
85
- s.require_paths = ["lib"]
86
- s.rubyforge_project = %q{mongomapper}
87
- s.rubygems_version = %q{1.3.5}
88
- s.summary = %q{Awesome gem for modeling your domain and storing it in mongo}
89
- s.test_files = [
90
- "test/functional/associations/test_belongs_to_polymorphic_proxy.rb",
91
- "test/functional/associations/test_belongs_to_proxy.rb",
92
- "test/functional/associations/test_many_embedded_polymorphic_proxy.rb",
93
- "test/functional/associations/test_many_embedded_proxy.rb",
94
- "test/functional/associations/test_many_polymorphic_proxy.rb",
95
- "test/functional/associations/test_many_proxy.rb",
96
- "test/functional/test_associations.rb",
97
- "test/functional/test_callbacks.rb",
98
- "test/functional/test_document.rb",
99
- "test/functional/test_pagination.rb",
100
- "test/functional/test_rails_compatibility.rb",
101
- "test/functional/test_validations.rb",
102
- "test/models.rb",
103
- "test/test_helper.rb",
104
- "test/unit/serializers/test_json_serializer.rb",
105
- "test/unit/test_association_base.rb",
106
- "test/unit/test_document.rb",
107
- "test/unit/test_embedded_document.rb",
108
- "test/unit/test_finder_options.rb",
109
- "test/unit/test_key.rb",
110
- "test/unit/test_mongomapper.rb",
111
- "test/unit/test_observing.rb",
112
- "test/unit/test_pagination.rb",
113
- "test/unit/test_rails_compatibility.rb",
114
- "test/unit/test_serializations.rb",
115
- "test/unit/test_validations.rb"
116
- ]
117
-
118
- if s.respond_to? :specification_version then
119
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
120
- s.specification_version = 3
121
-
122
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
123
- s.add_runtime_dependency(%q<activesupport>, [">= 0"])
124
- s.add_runtime_dependency(%q<mongodb-mongo>, ["= 0.11.1"])
125
- s.add_runtime_dependency(%q<hashrocket-validatable>, [">= 1.7.2.1"])
126
- s.add_development_dependency(%q<mocha>, ["= 0.9.4"])
127
- s.add_development_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
128
- else
129
- s.add_dependency(%q<activesupport>, [">= 0"])
130
- s.add_dependency(%q<mongodb-mongo>, ["= 0.11.1"])
131
- s.add_dependency(%q<hashrocket-validatable>, [">= 1.7.2.1"])
132
- s.add_dependency(%q<mocha>, ["= 0.9.4"])
133
- s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
134
- end
135
- else
136
- s.add_dependency(%q<activesupport>, [">= 0"])
137
- s.add_dependency(%q<mongodb-mongo>, ["= 0.11.1"])
138
- s.add_dependency(%q<hashrocket-validatable>, [">= 1.7.2.1"])
139
- s.add_dependency(%q<mocha>, ["= 0.9.4"])
140
- s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
141
- end
142
- end