rotp 1.6.0 → 1.6.1

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: 2f0dbf99a0880ce75c5936772e82623ca5c83d94
4
- data.tar.gz: caaae71f337eb86af23afd0ffc38a5f318121e5d
3
+ metadata.gz: 925325389a0599d8e3d5fa61035be448cba2d26d
4
+ data.tar.gz: e5639873115b3f91ff962250c1e0528e332a225c
5
5
  SHA512:
6
- metadata.gz: 0df2b27a1a0a078a3458746eaeacf5b1461858b26fb74a5774fa441e9897546dbc2ce3767854812613a69d520c64c9a04a4c5f62a6f91e885b02ff0c27c4f2a9
7
- data.tar.gz: fed6bf9cdb5c28d8e1acdd7e39ba7211e8fe943530f589e0739e4b446973236d892aede78144f4a54c467179329f5ad9a5c576901e63b63230f0d51b8e5a2175
6
+ metadata.gz: 5b377c8eedeb3de0c68ccbb8f2c6896bdfe58bf62259129583bc1933685e4f5a9ee34e3b9e1558f747935f2b1214ed08b2fba64061ba81d6f648885a04eaf4d4
7
+ data.tar.gz: e781069e1760f538924cecf5476eecabdf19423e8289a933ff824ce7b3c788b8369835d5f91a804ef3a9267e62688fd06a86d9fa300dddff65b2dc06d3e5aa79
@@ -1,5 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
+ - 2.1.0
4
+ - 2.0.0
3
5
  - 1.9.3
4
6
  - 1.8.7
5
- - ree
@@ -92,6 +92,11 @@ Now run the following and compare the output
92
92
 
93
93
  ### Changelog
94
94
 
95
+ #### 1.6.1
96
+
97
+ - Remove deprecation warning in Ruby 2.1.0 (@ylansegal)
98
+ - Add Ruby 2.0 and 2.1 to Travis
99
+
95
100
  #### 1.6.0
96
101
 
97
102
  - Add verify_with_retries to HOTP
@@ -22,7 +22,7 @@ module ROTP
22
22
  # based on the Unix timestamp
23
23
  def generate_otp(input, padded=false)
24
24
  hmac = OpenSSL::HMAC.digest(
25
- OpenSSL::Digest::Digest.new(digest),
25
+ OpenSSL::Digest.new(digest),
26
26
  byte_secret,
27
27
  int_to_bytestring(input)
28
28
  )
@@ -1,3 +1,3 @@
1
1
  module ROTP
2
- VERSION = "1.6.0"
2
+ VERSION = "1.6.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rotp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Percival
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-16 00:00:00.000000000 Z
11
+ date: 2014-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake