peakium 0.1.3 → 0.1.4
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/VERSION +1 -1
- data/lib/peakium/api_resources/gateway.rb +1 -0
- data/lib/peakium/version.rb +1 -1
- data/test/peakium/gateway_module_test.rb +0 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f76ec342e101aa8b9481230edc4b470ad9ade68e
|
|
4
|
+
data.tar.gz: 22f73d7ab1199a83269b57480b2e51880e2fb630
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ddb7fbc6be2f8462567cc736285f099244116c20481c22a6ccab6a7e2b39d85dd8a2a0127fa1299683a136a5733236b51bfd0eb3e7389d80db1e952990c950b3
|
|
7
|
+
data.tar.gz: dbbedec6f2277fc3a2fb46cf6ed303b4238f6645d66d4469676bdad2216fc7f7b24b301f5aa39656d69b7a2d846c8cbb4c12f4ffdaba3d92bb0196e9a566928c
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4
|
|
@@ -3,6 +3,7 @@ module Peakium
|
|
|
3
3
|
include Peakium::APIOperations::Create
|
|
4
4
|
include Peakium::APIOperations::List
|
|
5
5
|
include Peakium::APIOperations::Update
|
|
6
|
+
include Peakium::APIOperations::Delete
|
|
6
7
|
|
|
7
8
|
def set_default()
|
|
8
9
|
response, api_key = Peakium.request(:post, set_default_url, @api_key)
|
data/lib/peakium/version.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: peakium
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dan Schultzer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-09-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|
|
@@ -161,6 +161,7 @@ files:
|
|
|
161
161
|
- test/peakium/customer_test.rb
|
|
162
162
|
- test/peakium/event_test.rb
|
|
163
163
|
- test/peakium/event_webhook_test.rb
|
|
164
|
+
- test/peakium/gateway_module_test.rb
|
|
164
165
|
- test/peakium/gateway_test.rb
|
|
165
166
|
- test/peakium/invoice_test.rb
|
|
166
167
|
- test/peakium/list_object_test.rb
|
|
@@ -199,6 +200,7 @@ test_files:
|
|
|
199
200
|
- test/peakium/customer_test.rb
|
|
200
201
|
- test/peakium/event_test.rb
|
|
201
202
|
- test/peakium/event_webhook_test.rb
|
|
203
|
+
- test/peakium/gateway_module_test.rb
|
|
202
204
|
- test/peakium/gateway_test.rb
|
|
203
205
|
- test/peakium/invoice_test.rb
|
|
204
206
|
- test/peakium/list_object_test.rb
|