mongoid-tag-collectible 0.2.1 → 0.2.2

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: 526e18530a711576751aa96f32d48281c65dc9ad
4
- data.tar.gz: 57302860972306b2e9a696095195133efe2b6fe1
3
+ metadata.gz: 0f5288fadd5221617c8cc48d99a0fb395b8a268f
4
+ data.tar.gz: 37ec9bc82116f89fd21464c261707824f0f725a9
5
5
  SHA512:
6
- metadata.gz: 5ca46690df231dac9472dc8e365b9c0b3165778f38c2885a95381a56cfad3ee584e497608ea8420df97c928f41b0c4162a49a12ad0992241d92646483c661444
7
- data.tar.gz: 06988ab5bae3adb354bf2c67e96fdf0e5eeb4d204d00e426855b31c95c45c176523604a8186725bc69581f44fa9645dc41cef74a6c932484c889364fbc429788
6
+ metadata.gz: 05ad09f1c172eceb05dbdb7a3c60c8dd1a8c56182c22424f416b98d583a1ba23b4fbafead32784db7c33d5c37353cde448351d7031831ccc79954268123dc61d
7
+ data.tar.gz: b43ed9fc101b2bcedace6bf829cccdd70a633751ea98049af0b277f9c3c086af49c191fd3f1bfd9f0a97803e3ce2c978f9f2de151f55c8f43527f29d4b70060b
@@ -12,5 +12,5 @@ services:
12
12
  env:
13
13
  - MONGOID_VERSION=3
14
14
  - MONGOID_VERSION=4
15
- - MONGOID_VERSION=5.0.0.beta
15
+ - MONGOID_VERSION=5
16
16
 
@@ -1,13 +1,17 @@
1
- ### 0.2.1 (Next)
1
+ ### 0.2.2 (2015/09/17)
2
+
3
+ * Officially compatible with Mongoid 5 - [@dblock](https://github.com/dblock).
4
+
5
+ ### 0.2.1 (2015/08/12)
2
6
 
3
7
  * Fix: support for namespaced classes with name repeated in module name - [@dblock](https://github.com/dblock).
4
8
 
5
- ### 0.2.0 (08/12/2015)
9
+ ### 0.2.0 (2015/08/12)
6
10
 
7
11
  * Implemented RuboCop, Ruby-style linter - [@dblock](https://github.com/dblock).
8
12
  * Added support for Mongoid 4 and Mongoid 5 Beta - [@dblock](https://github.com/dblock).
9
13
  * Added support for namespaced classes - [@dblock](https://github.com/dblock).
10
14
 
11
- ### 0.1.0 (06/26/2013)
15
+ ### 0.1.0 (2013/06/26)
12
16
 
13
17
  * Initial public release, written on a plane from SF to NYC - [@dblock](https://github.com/dblock).
data/Gemfile CHANGED
@@ -2,7 +2,9 @@ source 'http://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- case version = ENV['MONGOID_VERSION'] || '~> 4.0'
5
+ case version = ENV['MONGOID_VERSION'] || '~> 5.0'
6
+ when /5/
7
+ gem 'mongoid', '~> 5.0'
6
8
  when /4/
7
9
  gem 'mongoid', '~> 4.0'
8
10
  when /3/
@@ -11,6 +13,11 @@ else
11
13
  gem 'mongoid', version
12
14
  end
13
15
 
14
- gem 'rspec'
15
- gem 'rake'
16
- gem 'rubocop', '0.32.1'
16
+ group :test do
17
+ gem 'rspec'
18
+ end
19
+
20
+ group :development do
21
+ gem 'rake'
22
+ gem 'rubocop', '0.32.1'
23
+ end
data/README.md CHANGED
@@ -10,7 +10,7 @@ Easily maintain a collection of `Tag` instances with aggregate counts from your
10
10
 
11
11
  ### Compatibility
12
12
 
13
- This gem supports Mongoid 3, Mongoid 4 and Mongoid 5 Beta.
13
+ This gem supports Mongoid 3, Mongoid 4 and Mongoid 5.
14
14
 
15
15
  ### Install
16
16
 
@@ -1,5 +1,5 @@
1
1
  module Mongoid
2
2
  module TagCollectible
3
- VERSION = '0.2.1'
3
+ VERSION = '0.2.2'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongoid-tag-collectible
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Doubrovkine
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-12 00:00:00.000000000 Z
11
+ date: 2015-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mongoid