attr_digest 2.0.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eaa4ae880f27d1904cc66b8d9f7186616ab8054b
4
- data.tar.gz: b00e5deaa044a148f202cc1400bce150083b995a
3
+ metadata.gz: 8c753b2a9ccb33cf64ee5c22906300d09705927f
4
+ data.tar.gz: a357fbda446403fb713634626c098c6e718ec5c1
5
5
  SHA512:
6
- metadata.gz: 4f2b05367ce886a884cf6b7a0c508efbfd212bf72f14e2b5594debd46dc8184fbdde02801018925359e8acd870094e07a99a9658ac5180159ab3102c7b8022ed
7
- data.tar.gz: 4b341a00e8c34d9bce2a1c493238d1f9bd26f508956e87f63fd5e183bfcf22841cc0139ed98a308a0c152c1eada81e03fe36594c6e7fba14947d27dd103cde6c
6
+ metadata.gz: a2ae88436debc7510a0b647e5a4fd13accba196b84c8a101ba507418ab83e0bc1d1b86d25b31856cd34e6859176645377cb5986a63c8782f11f0fe7d9cfc6d80
7
+ data.tar.gz: 42b1343b5519a62bf302072182541c86a58f702ba4ffb4a9d6aec148328225f65b3ef674cf0b7d4c455a22fdac0e80513384b896a86f84d703c5bdfc0ab40cc1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ##v2.1.0
4
+ - Removed upper limit for ActiveSupport and ActiveRecord dependencies.
5
+ - Updated README.
6
+
3
7
  ##v2.0.0
4
8
  - Added Ruby 2.3.1 to Travis CI configuration file.
5
9
  - Updated README.
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  [![Gem Version](https://badge.fury.io/rb/attr_digest.svg)](https://badge.fury.io/rb/attr_digest)
2
2
  [![Build Status](https://travis-ci.org/brightcommerce/attr_digest.svg?branch=master)](https://travis-ci.org/brightcommerce/attr_digest)
3
3
  [![codecov.io](https://codecov.io/github/brightcommerce/attr_digest/coverage.svg?branch=master)](https://codecov.io/github/brightcommerce/attr_digest?branch=master)
4
- [![HitCount](https://hitt.herokuapp.com/brightcommerce/attr_digest.svg)](https://github.com/brightcommerce/attr_digest)
5
4
  [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/brightcommerce/attr_digest/pulls)
6
5
 
7
6
  # AttrDigest
@@ -27,8 +26,8 @@ And run `bundle install`.
27
26
  ## Dependencies
28
27
 
29
28
  Runtime:
30
- - activerecord (>= 4.2.6, ~> 5.0.0)
31
- - activesupport (>= 4.2.6, ~> 5.0.0)
29
+ - activerecord (>= 4.2.6)
30
+ - activesupport (>= 4.2.6)
32
31
  - argon2 (~> 1.1.1)
33
32
 
34
33
  Development/Test:
@@ -40,7 +39,7 @@ Development/Test:
40
39
 
41
40
  ## Compatibility
42
41
 
43
- Tested with Ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin15] against ActiveRecord 5.0.0 on macOS Sierra 10.12.1 (16B2555).
42
+ Tested with Ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin15] against ActiveRecord 5.0.0 on macOS Sierra 10.12.5 (16F73).
44
43
 
45
44
  Argon2 requires Ruby 2.2 minimum and an OS platform that supports Ruby FFI Bindings, so unfortunately Windows is out.
46
45
 
@@ -204,4 +203,4 @@ The gem is available as open source under the terms of the [MIT License](http://
204
203
 
205
204
  ## Copyright
206
205
 
207
- Copyright 2016 Brightcommerce, Inc.
206
+ Copyright 2016-2017 Brightcommerce, Inc.
@@ -1,7 +1,7 @@
1
1
  module AttrDigest
2
2
  module VERSION
3
3
  MAJOR = 2
4
- MINOR = 0
4
+ MINOR = 1
5
5
  TINY = 0
6
6
  PRE = nil
7
7
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: attr_digest
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jurgen Jocubeit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-12 00:00:00.000000000 Z
11
+ date: 2017-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -17,9 +17,6 @@ dependencies:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 4.2.6
20
- - - "~>"
21
- - !ruby/object:Gem::Version
22
- version: 5.0.0
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
@@ -27,9 +24,6 @@ dependencies:
27
24
  - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: 4.2.6
30
- - - "~>"
31
- - !ruby/object:Gem::Version
32
- version: 5.0.0
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: activerecord
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -37,9 +31,6 @@ dependencies:
37
31
  - - ">="
38
32
  - !ruby/object:Gem::Version
39
33
  version: 4.2.6
40
- - - "~>"
41
- - !ruby/object:Gem::Version
42
- version: 5.0.0
43
34
  type: :runtime
44
35
  prerelease: false
45
36
  version_requirements: !ruby/object:Gem::Requirement
@@ -47,9 +38,6 @@ dependencies:
47
38
  - - ">="
48
39
  - !ruby/object:Gem::Version
49
40
  version: 4.2.6
50
- - - "~>"
51
- - !ruby/object:Gem::Version
52
- version: 5.0.0
53
41
  - !ruby/object:Gem::Dependency
54
42
  name: argon2
55
43
  requirement: !ruby/object:Gem::Requirement
@@ -171,5 +159,5 @@ rubyforge_project:
171
159
  rubygems_version: 2.5.1
172
160
  signing_key:
173
161
  specification_version: 4
174
- summary: AttrDigest v2.0.0
162
+ summary: AttrDigest v2.1.0
175
163
  test_files: []