omisego 0.9.4 → 0.9.5

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: c9e64a66d5f1ddf2b7707d4b6eac210e140fecef
4
- data.tar.gz: 45d99e3de64d328e0798810fe11e5458976a5128
3
+ metadata.gz: 28c2d5da18bcf28befae329ecb6a09d4e7ab730f
4
+ data.tar.gz: '09f39557405e6713d7e3d256e7c47c95ada3ecc5'
5
5
  SHA512:
6
- metadata.gz: b970f8c691bf70d0606acdb9e2197e89073b44449ad6287e84c28a10958147953a9e52915ca7ec2ed1c9bf2456efd2d697d4f4645be632b9092453923de4c414
7
- data.tar.gz: dfb17762edcd94db7775c7f18e81f1594c555d9da5c5909ea92944a7d6b6d0c218231728a959509e3147439993f76162338ca4a84a4d6ab7e788f434d91a8317
6
+ metadata.gz: af37df254cea2e65f8fc70391e1666150e20eaa20b0ee33718fb4ee002c6d053b39a90bcb84e200c982f10ab008fdf1f1cfe3f05fbd475c3eff5386a219514d1
7
+ data.tar.gz: cb89d77c41b1d2ee6fdce3f9c6c988310004a205ea441290ea6e04f6daa0128954cbbab14f1fd5fbf800c4170aef99c9cb429e53739d8f0a331c39b9bfefbed4
data/AUTHORS CHANGED
@@ -1 +1,2 @@
1
1
  OmiseGo Pte Ltd
2
+ Oozou Limited
data/README.md CHANGED
@@ -378,8 +378,8 @@ Attributes:
378
378
  Attributes
379
379
  - `per_page` (integer)
380
380
  - `current_page` (integer)
381
- - `is_first_page` (boolean)
382
- - `is_last_page` (boolean)
381
+ - `first_page?` (boolean)
382
+ - `last_page?` (boolean)
383
383
 
384
384
  ### `OmiseGO::List`
385
385
 
data/changelog ADDED
@@ -0,0 +1,21 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.9.5] - 2017-03-05
11
+
12
+ ### Added
13
+
14
+ - Add Oozou to AUTHORS file
15
+ - Add support for Metadata in `OmiseGO::Transaction`
16
+
17
+ ### Changed
18
+
19
+ - Change pagination method to follow Ruby conventions
20
+ - Add tests checking those pagination methods
21
+ - Re-generated VCR cassettes
@@ -1,5 +1,14 @@
1
1
  module OmiseGO
2
2
  class Pagination < Base
3
3
  attributes :per_page, :is_last_page, :is_first_page, :current_page
4
+ private :is_first_page, :is_last_page
5
+
6
+ def first_page?
7
+ is_first_page
8
+ end
9
+
10
+ def last_page?
11
+ is_last_page
12
+ end
4
13
  end
5
14
  end
@@ -1,7 +1,7 @@
1
1
  module OmiseGO
2
2
  class Transaction < Base
3
3
  attributes :id, :idempotency_token, :amount, :from, :to, :exchange,
4
- :status, :created_at, :updated_at
4
+ :metadata, :status, :created_at, :updated_at
5
5
 
6
6
  class << self
7
7
  def all(params: {}, client: nil)
@@ -1,3 +1,3 @@
1
1
  module OmiseGO
2
- VERSION = '0.9.4'.freeze
2
+ VERSION = '0.9.5'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omisego
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thibault
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-02-28 00:00:00.000000000 Z
11
+ date: 2018-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -158,6 +158,7 @@ files:
158
158
  - Rakefile
159
159
  - bin/console
160
160
  - bin/setup
161
+ - changelog
161
162
  - lib/omisego.rb
162
163
  - lib/omisego/address.rb
163
164
  - lib/omisego/authentication_token.rb