atpay_tokens 2.3.0 → 2.4.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.
- data/README.md +1 -1
- data/atpay_tokens.gemspec +2 -2
- data/circle.yml +4 -4
- data/lib/atpay/tokenator.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
|
@@ -31,7 +31,7 @@ gem 'atpay_tokens'
|
|
|
31
31
|
|
|
32
32
|
With the `keys` scope, authenticate with OAuth, and make a request
|
|
33
33
|
to the 'keys' endpoint (see the api documentation at
|
|
34
|
-
|
|
34
|
+
http://developer.atpay.com) to receive the partner_id,
|
|
35
35
|
public key and private key.
|
|
36
36
|
|
|
37
37
|
Apply these values to your configuration
|
data/atpay_tokens.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'atpay_tokens'
|
|
3
|
-
s.version = '2.
|
|
4
|
-
s.date = '
|
|
3
|
+
s.version = '2.4.0'
|
|
4
|
+
s.date = '2014-02-27'
|
|
5
5
|
s.summary = "@Pay Token Generator"
|
|
6
6
|
s.description = "Client interface for the @Pay API, key generation for performance optimization"
|
|
7
7
|
s.authors = ["James Kassemi", "Glen Holcomb"]
|
data/circle.yml
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
dependencies:
|
|
2
2
|
pre:
|
|
3
|
-
- curl -O http://download.dnscrypt.org/libsodium/releases/libsodium-0.4.
|
|
4
|
-
- tar -xvzf libsodium-0.4.
|
|
5
|
-
- cd libsodium-0.4.
|
|
6
|
-
- cp libsodium-0.4.
|
|
3
|
+
- curl -O http://download.dnscrypt.org/libsodium/releases/libsodium-0.4.5.tar.gz
|
|
4
|
+
- tar -xvzf libsodium-0.4.5.tar.gz
|
|
5
|
+
- cd libsodium-0.4.5 && ./configure && make
|
|
6
|
+
- cp libsodium-0.4.5/src/libsodium/.libs/libsodium.so ./lib/
|
|
7
7
|
|
|
8
8
|
machine:
|
|
9
9
|
environment:
|
data/lib/atpay/tokenator.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: atpay_tokens
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.4.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2014-02-27 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: ffi
|