mongoid-rspec 1.11.0 → 1.13.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 90683af43b99f047532aad535c6e43dd6967f95d
4
- data.tar.gz: 6dc40541b28ba2944e2a28e1db7aac2a1d8f986f
3
+ metadata.gz: 9a4c1a2239f0fe2d5fa2e91f8c33d3e481700810
4
+ data.tar.gz: 8c6e6f83f5a1d01d5ee9820fb56e76913f568dbd
5
5
  SHA512:
6
- metadata.gz: 4600c194356594e38e1ce975412e3a64ae740deaef458adc1f069936254bc2b85c59fffbee44ee6272197affab3a998e8bf76f4d2f62eab7715cdca68e58cb74
7
- data.tar.gz: fbd39276f0ae7b8bf388c488df939ce343bbeaa25377b79094ff24b8593590e402549681e1290ba857d5a318d4675ca1e7ed3abe449c1cad20c4cd5b5d005350
6
+ metadata.gz: 51b893ad1bf9837b1c7e5183cd4033be0397953b90169852cdad26a26388b60e193d834bc035eb274ef4c6434a02c4f2c75e8eee72534fb88cc53b035465edc2
7
+ data.tar.gz: 8d35fbfdb8b35e44050330f06fa00e98cb3670a1fe444159d12e182f1f50efdc11616de71d0685dc49d6a128104964ed9c08d08d8e71a2a0653c641e1ded6c97
@@ -1,17 +1,12 @@
1
+ services: mongodb
1
2
  language: ruby
2
3
  rvm:
3
4
  - 1.9.3
4
5
  - 2.0.0
5
6
  - 2.1.0
6
- - ruby-head
7
- - jruby-18mode
7
+ - 2.1.2
8
+ - 2.1.3
9
+ - 2.2.0
8
10
  - jruby-19mode
9
- - jruby-head
10
- - rbx-2.1.1
11
- - rbx-head
12
- - ree
13
- matrix:
14
- allow_failures:
15
- - rvm: ruby-head
16
- - rvm: jruby-head
17
- - rvm: rbx-head
11
+ gemfile:
12
+ - Gemfile
data/README.md CHANGED
@@ -1,9 +1,7 @@
1
1
  mongoid-rspec
2
2
  =
3
3
 
4
- [![Build Status](https://secure.travis-ci.org/evansagge/mongoid-rspec.png?branch=master)](https://travis-ci.org/evansagge/mongoid-rspec)
5
-
6
- http://rubygems.org/gems/mongoid-rspec
4
+ [![Build Status][travis_badge]][travis]
7
5
 
8
6
  RSpec matchers for Mongoid 3.x.
9
7
 
@@ -203,3 +201,7 @@ Acknowledgement
203
201
  Thanks to [Durran Jordan](https://github.com/durran) for providing the changes necessary to make
204
202
  this compatible with mongoid 2.0.0.rc, and for other [contributors](https://github.com/evansagge/mongoid-rspec/contributors)
205
203
  to this project.
204
+
205
+
206
+ [travis_badge]: https://travis-ci.org/mongoid-rspec/mongoid-rspec.svg?branch=mongoid-3-1
207
+ [travis]: https://travis-ci.org/mongoid-rspec/mongoid-rspec
@@ -31,6 +31,8 @@ module Mongoid
31
31
  "Did not expect #{expectation}"
32
32
  end
33
33
 
34
+ alias :failure_message_when_negated :negative_failure_message
35
+
34
36
  def description
35
37
  description = "accepts_nested_attributes_for :#{@attribute}"
36
38
  end
@@ -3,6 +3,7 @@ module Mongoid
3
3
  module Matchers
4
4
  class AllowMassAssignmentOfMatcher # :nodoc:
5
5
  attr_reader :failure_message, :negative_failure_message
6
+ alias :failure_message_when_negated :negative_failure_message
6
7
 
7
8
  def initialize(attribute)
8
9
  @attribute = attribute.to_s
@@ -246,6 +246,9 @@ module Mongoid
246
246
  "Expected #{@actual.inspect} to not #{@expectation_message}, got #{@positive_result_message}"
247
247
  end
248
248
 
249
+ alias :failure_message :failure_message_for_should
250
+ alias :failure_message_when_negated :failure_message_for_should_not
251
+
249
252
  def description
250
253
  @expectation_message
251
254
  end
@@ -70,6 +70,9 @@ module Mongoid
70
70
  "Expected #{@klass.inspect} to not #{description}, got #{@klass.inspect} to #{description}"
71
71
  end
72
72
 
73
+ alias :failure_message :failure_message_for_should
74
+ alias :failure_message_when_negated :failure_message_for_should_not
75
+
73
76
  def description
74
77
  desc = "have #{@attributes.size > 1 ? 'fields' : 'field'} named #{@attributes.collect(&:inspect).to_sentence}"
75
78
  desc << " of type #{@type.inspect}" if @type
@@ -36,6 +36,9 @@ module Mongoid
36
36
  "Expected #{@klass.inspect} to not #{description}, got #{@klass.inspect} to #{description}"
37
37
  end
38
38
 
39
+ alias :failure_message :failure_message_for_should
40
+ alias :failure_message_when_negated :failure_message_for_should_not
41
+
39
42
  def description
40
43
  desc = "have an index for #{@index_fields.inspect}"
41
44
  desc << " with options of #{@options.inspect}" if @options
@@ -37,6 +37,9 @@ module Mongoid
37
37
  "Expected #{@klass.inspect} to not #{description}; instead got #{@positive_result_message}"
38
38
  end
39
39
 
40
+ alias :failure_message :failure_message_for_should
41
+ alias :failure_message_when_negated :failure_message_for_should_not
42
+
40
43
  def description
41
44
  desc = "have #{@type.inspect} validator on #{@field.inspect}"
42
45
  desc << " on #{@options[:on]}" if @options[:on]
@@ -1,5 +1,5 @@
1
1
  module Mongoid
2
2
  module Rspec
3
- VERSION = "1.11.0"
3
+ VERSION = "1.13.0"
4
4
  end
5
5
  end
@@ -20,6 +20,6 @@ Gem::Specification.new do |s|
20
20
  s.require_paths = ["lib"]
21
21
 
22
22
  s.add_dependency 'rake'
23
- s.add_dependency 'mongoid', '~> 3.1.6'
24
- s.add_dependency 'rspec', '>= 2.14'
23
+ s.add_dependency 'mongoid', '~> 3.1'
24
+ s.add_dependency 'rspec', '~> 3.1'
25
25
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongoid-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Sagge
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-15 00:00:00.000000000 Z
11
+ date: 2015-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -30,28 +30,28 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 3.1.6
33
+ version: '3.1'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 3.1.6
40
+ version: '3.1'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '2.14'
47
+ version: '3.1'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '2.14'
54
+ version: '3.1'
55
55
  description: RSpec matches for Mongoid models, including association and validation
56
56
  matchers
57
57
  email: evansagge@gmail.com
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
129
  version: '0'
130
130
  requirements: []
131
131
  rubyforge_project: mongoid-rspec
132
- rubygems_version: 2.2.2
132
+ rubygems_version: 2.4.5
133
133
  signing_key:
134
134
  specification_version: 4
135
135
  summary: RSpec matchers for Mongoid