beyonic 0.0.9 → 0.0.10
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 +4 -4
- data/lib/beyonic.rb +4 -2
- data/lib/beyonic/account.rb +5 -0
- data/lib/beyonic/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93a73ba43a64f3f8c2a7e72037b3f6e43f84e893
|
|
4
|
+
data.tar.gz: 99d12682e2a89891fdd7eb14f5a22993dfbd7c52
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab0e41678f71b19c990b4069c34e9265f0eca7dcb87b7844113a4e8c892cfb3dbc3c4dde9636b048f01d4d344d03f188cb0a585114323567aeb1e9aa8ba3f4ea
|
|
7
|
+
data.tar.gz: c43df23ddd3ecce6c870f11f28610071033f662f4fe9743194fc61a9c33587a8b8c75e8a745efab17e39135432d020f54090f27af1a7938f90b1c7c884ff6af1
|
data/lib/beyonic.rb
CHANGED
|
@@ -5,7 +5,7 @@ module Beyonic
|
|
|
5
5
|
|
|
6
6
|
# Uncomment this if you are testing on your server and you want to bypass SSL checks.
|
|
7
7
|
# OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
def self.api_key=(key)
|
|
10
10
|
@api_key = key
|
|
11
11
|
end
|
|
@@ -17,7 +17,7 @@ module Beyonic
|
|
|
17
17
|
def self.api_version=(version)
|
|
18
18
|
@api_version = version
|
|
19
19
|
end
|
|
20
|
-
|
|
20
|
+
|
|
21
21
|
def self.api_version
|
|
22
22
|
@api_version
|
|
23
23
|
end
|
|
@@ -34,3 +34,5 @@ require "beyonic/payment"
|
|
|
34
34
|
require "beyonic/webhook"
|
|
35
35
|
require "beyonic/collection"
|
|
36
36
|
require "beyonic/collection_request"
|
|
37
|
+
require "beyonic/account"
|
|
38
|
+
require "beyonic/contact"
|
data/lib/beyonic/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beyonic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Oleg German
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2016-05-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rest-client
|
|
@@ -163,6 +163,7 @@ files:
|
|
|
163
163
|
- README.md
|
|
164
164
|
- lib/beyonic.rb
|
|
165
165
|
- lib/beyonic/abstract_api.rb
|
|
166
|
+
- lib/beyonic/account.rb
|
|
166
167
|
- lib/beyonic/collection.rb
|
|
167
168
|
- lib/beyonic/collection_request.rb
|
|
168
169
|
- lib/beyonic/contact.rb
|
|
@@ -189,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
189
190
|
version: '0'
|
|
190
191
|
requirements: []
|
|
191
192
|
rubyforge_project:
|
|
192
|
-
rubygems_version: 2.4.
|
|
193
|
+
rubygems_version: 2.4.6
|
|
193
194
|
signing_key:
|
|
194
195
|
specification_version: 4
|
|
195
196
|
summary: Ruby library for the beyonic.com api
|