machinist_mongomapper 0.9.4 → 0.9.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 +3 -3
- data/VERSION +1 -1
- data/lib/machinist/mongomapper.rb +1 -9
- data/machinist_mongomapper.gemspec +9 -9
- metadata +6 -5
data/Rakefile
CHANGED
@@ -9,10 +9,10 @@ begin
|
|
9
9
|
gem.summary = %Q{Machinist adapter for MongoMapper}
|
10
10
|
gem.email = "dev@yeastymobs.com"
|
11
11
|
gem.homepage = "http://github.com/yeastymobs/machinist_mongomapper"
|
12
|
-
gem.authors = ["Nicolas Mérouze", "Vincent Hellot", "Mathieu Fosse"]
|
12
|
+
gem.authors = ["Nicolas Mérouze", "Vincent Hellot", "Mathieu Fosse", "Cyril Mougel"]
|
13
13
|
|
14
|
-
gem.add_dependency('notahat-machinist', '~> 1.0.
|
15
|
-
gem.add_dependency('
|
14
|
+
gem.add_dependency('notahat-machinist', '~> 1.0.4')
|
15
|
+
gem.add_dependency('mongo_mapper', '~> 0.5.4')
|
16
16
|
end
|
17
17
|
rescue LoadError
|
18
18
|
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.
|
1
|
+
0.9.5
|
@@ -54,18 +54,10 @@ module Machinist
|
|
54
54
|
end
|
55
55
|
end
|
56
56
|
end
|
57
|
-
|
58
|
-
module MongoMapperAssociationsProxyExtensions
|
59
|
-
def nil?
|
60
|
-
self.klass.nil?
|
61
|
-
end
|
62
|
-
end
|
63
|
-
|
64
57
|
end
|
65
58
|
|
66
59
|
|
67
|
-
MongoMapper::Associations::Proxy.send(:include, Machinist::MongoMapperAssociationsProxyExtensions)
|
68
60
|
MongoMapper::Document::ClassMethods.send(:include, Machinist::Blueprints::ClassMethods)
|
69
61
|
MongoMapper::Document::ClassMethods.send(:include, Machinist::MongoMapperExtensions::Document)
|
70
62
|
MongoMapper::EmbeddedDocument::ClassMethods.send(:include, Machinist::Blueprints::ClassMethods)
|
71
|
-
MongoMapper::EmbeddedDocument::ClassMethods.send(:include, Machinist::MongoMapperExtensions::EmbeddedDocument)
|
63
|
+
MongoMapper::EmbeddedDocument::ClassMethods.send(:include, Machinist::MongoMapperExtensions::EmbeddedDocument)
|
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{machinist_mongomapper}
|
8
|
-
s.version = "0.9.
|
8
|
+
s.version = "0.9.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = ["Nicolas M\303\251rouze", "Vincent Hellot", "Mathieu Fosse"]
|
12
|
-
s.date = %q{2009-10-
|
11
|
+
s.authors = ["Nicolas M\303\251rouze", "Vincent Hellot", "Mathieu Fosse", "Cyril Mougel"]
|
12
|
+
s.date = %q{2009-10-15}
|
13
13
|
s.email = %q{dev@yeastymobs.com}
|
14
14
|
s.extra_rdoc_files = [
|
15
15
|
"LICENSE",
|
@@ -42,14 +42,14 @@ Gem::Specification.new do |s|
|
|
42
42
|
s.specification_version = 3
|
43
43
|
|
44
44
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
45
|
-
s.add_runtime_dependency(%q<notahat-machinist>, ["~> 1.0.
|
46
|
-
s.add_runtime_dependency(%q<
|
45
|
+
s.add_runtime_dependency(%q<notahat-machinist>, ["~> 1.0.4"])
|
46
|
+
s.add_runtime_dependency(%q<mongo_mapper>, ["~> 0.5.4"])
|
47
47
|
else
|
48
|
-
s.add_dependency(%q<notahat-machinist>, ["~> 1.0.
|
49
|
-
s.add_dependency(%q<
|
48
|
+
s.add_dependency(%q<notahat-machinist>, ["~> 1.0.4"])
|
49
|
+
s.add_dependency(%q<mongo_mapper>, ["~> 0.5.4"])
|
50
50
|
end
|
51
51
|
else
|
52
|
-
s.add_dependency(%q<notahat-machinist>, ["~> 1.0.
|
53
|
-
s.add_dependency(%q<
|
52
|
+
s.add_dependency(%q<notahat-machinist>, ["~> 1.0.4"])
|
53
|
+
s.add_dependency(%q<mongo_mapper>, ["~> 0.5.4"])
|
54
54
|
end
|
55
55
|
end
|
metadata
CHANGED
@@ -1,17 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: machinist_mongomapper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Nicolas M\xC3\xA9rouze"
|
8
8
|
- Vincent Hellot
|
9
9
|
- Mathieu Fosse
|
10
|
+
- Cyril Mougel
|
10
11
|
autorequire:
|
11
12
|
bindir: bin
|
12
13
|
cert_chain: []
|
13
14
|
|
14
|
-
date: 2009-10-
|
15
|
+
date: 2009-10-15 00:00:00 +02:00
|
15
16
|
default_executable:
|
16
17
|
dependencies:
|
17
18
|
- !ruby/object:Gem::Dependency
|
@@ -22,17 +23,17 @@ dependencies:
|
|
22
23
|
requirements:
|
23
24
|
- - ~>
|
24
25
|
- !ruby/object:Gem::Version
|
25
|
-
version: 1.0.
|
26
|
+
version: 1.0.4
|
26
27
|
version:
|
27
28
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
29
|
+
name: mongo_mapper
|
29
30
|
type: :runtime
|
30
31
|
version_requirement:
|
31
32
|
version_requirements: !ruby/object:Gem::Requirement
|
32
33
|
requirements:
|
33
34
|
- - ~>
|
34
35
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.4
|
36
|
+
version: 0.5.4
|
36
37
|
version:
|
37
38
|
description:
|
38
39
|
email: dev@yeastymobs.com
|