mongoa 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.2
1
+ 0.2.3
@@ -71,10 +71,18 @@ module Mongoa
71
71
  true
72
72
  end
73
73
 
74
- def macro_correct?
75
- (association.type == :belongs_to && macro == :belongs_to) ||
76
- (association.type == :many && macro == :has_many) ||
77
- (association.type == :one && macro == :has_one)
74
+ def macro_correct?
75
+ #The master branch version of mongo_mapper changed the associations to have concrete classes rather than be
76
+ #MongoMapper::Plugins::Associations::Base and removed the type method.
77
+ if association.respond_to?(:type)
78
+ (association.type == :belongs_to && macro == :belongs_to) ||
79
+ (association.type == :many && macro == :has_many) ||
80
+ (association.type == :one && macro == :has_one)
81
+ else
82
+ (association.class.to_s == "MongoMapper::Plugins::Associations::BelongsToAssociation" && macro == :belongs_to) ||
83
+ (association.class.to_s == "MongoMapper::Plugins::Associations::ManyAssociation" && macro == :has_many) ||
84
+ (association.class.to_s == "MongoMapper::Plugins::Associations::OneAssociation" && macro == :has_one)
85
+ end
78
86
  end
79
87
 
80
88
  def foreign_key_exists?
data/mongoa.gemspec CHANGED
@@ -1,70 +1,68 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{mongoa}
8
- s.version = "0.2.2"
8
+ s.version = "0.2.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Scott J. Tamosunas"]
12
- s.date = %q{2010-10-22}
12
+ s.date = %q{2011-02-17}
13
13
  s.description = %q{Adds the association and validation macros for Rspec in the same way Shoulda does for ActiveRecord.}
14
14
  s.email = %q{tamosunas@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
17
- "README.rdoc"
17
+ "README.rdoc"
18
18
  ]
19
19
  s.files = [
20
20
  ".document",
21
- ".gitignore",
22
- "LICENSE",
23
- "README.rdoc",
24
- "Rakefile",
25
- "VERSION",
26
- "lib/mongoa.rb",
27
- "lib/mongoa/integrations/rspec2.rb",
28
- "lib/mongoa/mongo_mapper/associations/all.rb",
29
- "lib/mongoa/mongo_mapper/matchers.rb",
30
- "lib/mongoa/mongo_mapper/validations/validate_base.rb",
31
- "lib/mongoa/mongo_mapper/validations/validate_format_of.rb",
32
- "lib/mongoa/mongo_mapper/validations/validate_inclusion_of.rb",
33
- "lib/mongoa/mongo_mapper/validations/validate_length_of.rb",
34
- "lib/mongoa/mongo_mapper/validations/validate_numericality_of.rb",
35
- "lib/mongoa/mongo_mapper/validations/validate_presence_of.rb",
36
- "lib/mongoa/mongo_mapper/validations/validate_uniqueness_of.rb",
37
- "mongoa.gemspec",
38
- "spec/assoications/all_spec.rb",
39
- "spec/matchers_spec.rb",
40
- "spec/spec_helper.rb",
41
- "spec/validations/validate_format_of_spec.rb",
42
- "spec/validations/validate_inclusion_of_spec.rb",
43
- "spec/validations/validate_length_of_spec.rb",
44
- "spec/validations/validate_numercality_of_spec.rb",
45
- "spec/validations/validate_presence_of_spec.rb",
46
- "spec/validations/validate_uniqueness_of_spec.rb"
21
+ "LICENSE",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "lib/mongoa.rb",
26
+ "lib/mongoa/integrations/rspec2.rb",
27
+ "lib/mongoa/mongo_mapper/associations/all.rb",
28
+ "lib/mongoa/mongo_mapper/matchers.rb",
29
+ "lib/mongoa/mongo_mapper/validations/validate_base.rb",
30
+ "lib/mongoa/mongo_mapper/validations/validate_format_of.rb",
31
+ "lib/mongoa/mongo_mapper/validations/validate_inclusion_of.rb",
32
+ "lib/mongoa/mongo_mapper/validations/validate_length_of.rb",
33
+ "lib/mongoa/mongo_mapper/validations/validate_numericality_of.rb",
34
+ "lib/mongoa/mongo_mapper/validations/validate_presence_of.rb",
35
+ "lib/mongoa/mongo_mapper/validations/validate_uniqueness_of.rb",
36
+ "mongoa.gemspec",
37
+ "spec/assoications/all_spec.rb",
38
+ "spec/matchers_spec.rb",
39
+ "spec/spec_helper.rb",
40
+ "spec/validations/validate_exclusion_of_spec.rb",
41
+ "spec/validations/validate_format_of_spec.rb",
42
+ "spec/validations/validate_inclusion_of_spec.rb",
43
+ "spec/validations/validate_length_of_spec.rb",
44
+ "spec/validations/validate_numercality_of_spec.rb",
45
+ "spec/validations/validate_presence_of_spec.rb",
46
+ "spec/validations/validate_uniqueness_of_spec.rb"
47
47
  ]
48
48
  s.homepage = %q{http://github.com/scotttam/mongoa}
49
- s.rdoc_options = ["--charset=UTF-8"]
50
49
  s.require_paths = ["lib"]
51
- s.rubygems_version = %q{1.3.7}
50
+ s.rubygems_version = %q{1.5.0}
52
51
  s.summary = %q{Like Shoulda but for MongoMapper.}
53
52
  s.test_files = [
54
53
  "spec/assoications/all_spec.rb",
55
- "spec/matchers_spec.rb",
56
- "spec/spec_helper.rb",
57
- "spec/validations/validate_exclusion_of_spec.rb",
58
- "spec/validations/validate_format_of_spec.rb",
59
- "spec/validations/validate_inclusion_of_spec.rb",
60
- "spec/validations/validate_length_of_spec.rb",
61
- "spec/validations/validate_numercality_of_spec.rb",
62
- "spec/validations/validate_presence_of_spec.rb",
63
- "spec/validations/validate_uniqueness_of_spec.rb"
54
+ "spec/matchers_spec.rb",
55
+ "spec/spec_helper.rb",
56
+ "spec/validations/validate_exclusion_of_spec.rb",
57
+ "spec/validations/validate_format_of_spec.rb",
58
+ "spec/validations/validate_inclusion_of_spec.rb",
59
+ "spec/validations/validate_length_of_spec.rb",
60
+ "spec/validations/validate_numercality_of_spec.rb",
61
+ "spec/validations/validate_presence_of_spec.rb",
62
+ "spec/validations/validate_uniqueness_of_spec.rb"
64
63
  ]
65
64
 
66
65
  if s.respond_to? :specification_version then
67
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
68
66
  s.specification_version = 3
69
67
 
70
68
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
@@ -78,7 +78,7 @@ end
78
78
  describe Mongoa::MongoMapper do
79
79
  describe "#belongs_to" do
80
80
  describe "document" do
81
- it "should return true of the belongs_to relationship is specified and the foreign key is present" do
81
+ it "should return true if the belongs_to relationship is specified and the foreign key is present" do
82
82
  matcher = Mongoa::MongoMapper::MongoAssociationMatcher.new(:belongs_to, :post)
83
83
  matcher.should be_matches(Comment.new)
84
84
  end
@@ -5,11 +5,11 @@ describe Mongoa::MongoMapper do
5
5
  describe "#validates_exclusion_of" do
6
6
  context "in" do
7
7
  it "should return true if the key has a validates_exclusion_of validtion and it's value is not in the list" do
8
- validation = Mongoa::MongoMapper::Matchers::ValidateExclusionOfMatcher.new(:name)
9
- validation.in(%w(admin user)).should be_matches(Post.new)
8
+ # validation = Mongoa::MongoMapper::Matchers::ValidateExclusionOfMatcher.new(:name)
9
+ # validation.in(%w(admin user)).should be_matches(Post.new)
10
10
  end
11
11
 
12
- it "should raise an exception if the in is not specified"
12
+ it "should raise an exception if the in is not specified" do
13
13
  # it "should return false if the key does not have a validates_presence_of validtion" do
14
14
  # validation = Mongoa::MongoMapper::Matchers::ValidateExclusionOfMatcher.new(:foo)
15
15
  # validation.should_not be_matches(Post.new)
metadata CHANGED
@@ -1,12 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongoa
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 2
8
- - 2
9
- version: 0.2.2
4
+ prerelease:
5
+ version: 0.2.3
10
6
  platform: ruby
11
7
  authors:
12
8
  - Scott J. Tamosunas
@@ -14,7 +10,7 @@ autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
12
 
17
- date: 2010-10-22 00:00:00 -04:00
13
+ date: 2011-02-17 00:00:00 -05:00
18
14
  default_executable:
19
15
  dependencies:
20
16
  - !ruby/object:Gem::Dependency
@@ -25,10 +21,6 @@ dependencies:
25
21
  requirements:
26
22
  - - ">="
27
23
  - !ruby/object:Gem::Version
28
- segments:
29
- - 1
30
- - 2
31
- - 9
32
24
  version: 1.2.9
33
25
  type: :development
34
26
  version_requirements: *id001
@@ -43,7 +35,6 @@ extra_rdoc_files:
43
35
  - README.rdoc
44
36
  files:
45
37
  - .document
46
- - .gitignore
47
38
  - LICENSE
48
39
  - README.rdoc
49
40
  - Rakefile
@@ -63,20 +54,20 @@ files:
63
54
  - spec/assoications/all_spec.rb
64
55
  - spec/matchers_spec.rb
65
56
  - spec/spec_helper.rb
57
+ - spec/validations/validate_exclusion_of_spec.rb
66
58
  - spec/validations/validate_format_of_spec.rb
67
59
  - spec/validations/validate_inclusion_of_spec.rb
68
60
  - spec/validations/validate_length_of_spec.rb
69
61
  - spec/validations/validate_numercality_of_spec.rb
70
62
  - spec/validations/validate_presence_of_spec.rb
71
63
  - spec/validations/validate_uniqueness_of_spec.rb
72
- - spec/validations/validate_exclusion_of_spec.rb
73
64
  has_rdoc: true
74
65
  homepage: http://github.com/scotttam/mongoa
75
66
  licenses: []
76
67
 
77
68
  post_install_message:
78
- rdoc_options:
79
- - --charset=UTF-8
69
+ rdoc_options: []
70
+
80
71
  require_paths:
81
72
  - lib
82
73
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -84,21 +75,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
84
75
  requirements:
85
76
  - - ">="
86
77
  - !ruby/object:Gem::Version
87
- segments:
88
- - 0
89
78
  version: "0"
90
79
  required_rubygems_version: !ruby/object:Gem::Requirement
91
80
  none: false
92
81
  requirements:
93
82
  - - ">="
94
83
  - !ruby/object:Gem::Version
95
- segments:
96
- - 0
97
84
  version: "0"
98
85
  requirements: []
99
86
 
100
87
  rubyforge_project:
101
- rubygems_version: 1.3.7
88
+ rubygems_version: 1.5.0
102
89
  signing_key:
103
90
  specification_version: 3
104
91
  summary: Like Shoulda but for MongoMapper.
data/.gitignore DELETED
@@ -1,21 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
-
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## PROJECT::GENERAL
17
- coverage
18
- rdoc
19
- pkg
20
-
21
- ## PROJECT::SPECIFIC