mongo_mapper 0.14.0.rc1 → 0.14.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,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- ZDZhYzcyYjE1YmNiYTY4NTVlOGFiZjRlNjk1MTVjOWRkZWViODE3YQ==
5
- data.tar.gz: !binary |-
6
- YjUxMmRlMTUyOTM5ZjgwMTBlM2JlMzFjNWIxNTVjYWY4NDU3NTYxMA==
2
+ SHA1:
3
+ metadata.gz: b6880875b0db1bcf8f52f472551b859be5d399a9
4
+ data.tar.gz: ee4023cda04c706b6c56aa7358040b1a3d0c07e8
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- N2ZhNWM1NmZlOTE3NDYwYjExZTZhODcxMTM1YzM3Yzg4NTY4ZjFlOTk4NDA1
10
- NGJkNDc3YTdhZWRiY2JlOWZjNWZjNDZjYjkzMzZlMmNkY2MxNWNjZTE4M2Q3
11
- OWYzYjBjNjcxNTVkODg4OTliODY5NTZjYWE1NzBjZGE1ZGU0NDA=
12
- data.tar.gz: !binary |-
13
- OWMyYjNmNTY5ZGNhOTM1MGNkNTg0MGFkNzkwMjg3Yjc5Y2M0MzM2ZjUwNTZm
14
- YjU1MjAxODYzOTllYzM4NzBjZjNmYmI2NGUzYWFiODQwMjNmN2E4MDAxYWYz
15
- MjQyNGQ4ZmU1OTcwMmRmOGZlMWQ4NDI1ZTJjYjU4ODViMjM4OWQ=
6
+ metadata.gz: acae6e9a273dd77a8c41f06138b910c23c197d0c3e790be33042fc9198fb02398a30bb73360655ca4bc8b1256b140e40ee568530fa75f56caa11f79b36f22ef8
7
+ data.tar.gz: dbb174abd832dddcc86e720a296198696401abc28da84e1a96737785c5d68b8197b7b8ce87b726340ba2e3858ae6f59649c6b270b663865a5fe2628871ee1fe1
@@ -2,7 +2,7 @@
2
2
 
3
3
  {<img src="https://badge.fury.io/rb/mongo_mapper.png" alt="RubyGem" />}[https://rubygems.org/gems/mongo_mapper]
4
4
  {<img src="https://travis-ci.org/mongomapper/mongomapper.png?branch=master" alt="Build Status" />}[https://travis-ci.org/mongomapper/mongomapper]
5
- {<img src="https://coveralls.io/repos/jnunemaker/mongomapper/badge.png" alt="Coverage Status" />}[https://coveralls.io/r/jnunemaker/mongomapper]
5
+ {<img src="https://coveralls.io/repos/mongomapper/mongomapper/badge.png" alt="Coverage Status" />}[https://coveralls.io/r/mongomapper/mongomapper]
6
6
 
7
7
  A Ruby Object Mapper for Mongo.
8
8
 
@@ -1,4 +1,4 @@
1
1
  # encoding: UTF-8
2
2
  module MongoMapper
3
- Version = '0.14.0.rc1'
3
+ Version = '0.14.0'
4
4
  end
@@ -300,7 +300,8 @@ describe "Support" do
300
300
  end
301
301
 
302
302
  it "should be time in utc if time" do
303
- Time.to_mongo(Time.local(2009, 8, 15, 0, 0, 0)).zone.should == 'UTC'
303
+ utc_str = RUBY_PLATFORM != "java" ? 'UTC' : "GMT"
304
+ Time.to_mongo(Time.local(2009, 8, 15, 0, 0, 0)).zone.should == utc_str
304
305
  end
305
306
 
306
307
  it "should be nil if blank string" do
metadata CHANGED
@@ -1,74 +1,78 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongo_mapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0.rc1
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Nunemaker
8
+ - Chris Heald
9
+ - Scott Taylor
8
10
  autorequire:
9
11
  bindir: bin
10
12
  cert_chain: []
11
- date: 2016-03-16 00:00:00.000000000 Z
13
+ date: 2017-01-20 00:00:00.000000000 Z
12
14
  dependencies:
13
15
  - !ruby/object:Gem::Dependency
14
16
  name: activemodel
15
17
  requirement: !ruby/object:Gem::Requirement
16
18
  requirements:
17
- - - ! '>='
19
+ - - ">="
18
20
  - !ruby/object:Gem::Version
19
21
  version: 3.0.0
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
23
25
  requirements:
24
- - - ! '>='
26
+ - - ">="
25
27
  - !ruby/object:Gem::Version
26
28
  version: 3.0.0
27
29
  - !ruby/object:Gem::Dependency
28
30
  name: activesupport
29
31
  requirement: !ruby/object:Gem::Requirement
30
32
  requirements:
31
- - - ! '>='
33
+ - - ">="
32
34
  - !ruby/object:Gem::Version
33
35
  version: '3.0'
34
36
  type: :runtime
35
37
  prerelease: false
36
38
  version_requirements: !ruby/object:Gem::Requirement
37
39
  requirements:
38
- - - ! '>='
40
+ - - ">="
39
41
  - !ruby/object:Gem::Version
40
42
  version: '3.0'
41
43
  - !ruby/object:Gem::Dependency
42
44
  name: plucky
43
45
  requirement: !ruby/object:Gem::Requirement
44
46
  requirements:
45
- - - ~>
47
+ - - "~>"
46
48
  - !ruby/object:Gem::Version
47
49
  version: 0.7.0
48
50
  type: :runtime
49
51
  prerelease: false
50
52
  version_requirements: !ruby/object:Gem::Requirement
51
53
  requirements:
52
- - - ~>
54
+ - - "~>"
53
55
  - !ruby/object:Gem::Version
54
56
  version: 0.7.0
55
57
  - !ruby/object:Gem::Dependency
56
58
  name: mongo
57
59
  requirement: !ruby/object:Gem::Requirement
58
60
  requirements:
59
- - - ~>
61
+ - - "~>"
60
62
  - !ruby/object:Gem::Version
61
63
  version: '1.8'
62
64
  type: :runtime
63
65
  prerelease: false
64
66
  version_requirements: !ruby/object:Gem::Requirement
65
67
  requirements:
66
- - - ~>
68
+ - - "~>"
67
69
  - !ruby/object:Gem::Version
68
70
  version: '1.8'
69
71
  description: MongoMapper is a Object-Document Mapper for Ruby and Rails
70
72
  email:
71
73
  - nunemaker@gmail.com
74
+ - cheald@gmail.com
75
+ - scott@railsnewbie.com
72
76
  executables:
73
77
  - mmconsole
74
78
  extensions: []
@@ -272,17 +276,17 @@ require_paths:
272
276
  - lib
273
277
  required_ruby_version: !ruby/object:Gem::Requirement
274
278
  requirements:
275
- - - ! '>='
279
+ - - ">="
276
280
  - !ruby/object:Gem::Version
277
281
  version: '0'
278
282
  required_rubygems_version: !ruby/object:Gem::Requirement
279
283
  requirements:
280
- - - ! '>'
284
+ - - ">="
281
285
  - !ruby/object:Gem::Version
282
- version: 1.3.1
286
+ version: '0'
283
287
  requirements: []
284
288
  rubyforge_project:
285
- rubygems_version: 2.5.0
289
+ rubygems_version: 2.4.8
286
290
  signing_key:
287
291
  specification_version: 4
288
292
  summary: A Ruby Object Mapper for Mongo