gocardless 1.4.0 → 1.5.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/CHANGELOG.md +4 -0
- data/README.md +1 -3
- data/lib/gocardless/pre_authorization.rb +3 -3
- data/lib/gocardless/subscription.rb +2 -3
- data/lib/gocardless/version.rb +1 -1
- metadata +1 -1
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-

|
4
2
|
|
5
3
|
The GoCardless Ruby client provides a simple Ruby interface to the GoCardless
|
6
4
|
API.
|
@@ -11,11 +11,11 @@ module GoCardless
|
|
11
11
|
:description,
|
12
12
|
:plan_id,
|
13
13
|
:status,
|
14
|
-
:remaining_amount
|
15
|
-
:next_interval_start
|
14
|
+
:remaining_amount
|
16
15
|
|
17
16
|
reference_accessor :merchant_id, :user_id
|
18
|
-
|
17
|
+
|
18
|
+
date_accessor :expires_at, :created_at, :next_interval_start
|
19
19
|
|
20
20
|
# Create a new bill under this pre-authorization. Similar to
|
21
21
|
# {Client#create_bill}, but only requires the amount to be specified.
|
@@ -13,12 +13,11 @@ module GoCardless
|
|
13
13
|
:status,
|
14
14
|
:setup_fee,
|
15
15
|
:trial_length,
|
16
|
-
:trial_unit
|
17
|
-
:next_interval_start
|
16
|
+
:trial_unit
|
18
17
|
|
19
18
|
reference_accessor :merchant_id, :user_id
|
20
19
|
|
21
|
-
date_accessor :start_at, :expires_at, :created_at
|
20
|
+
date_accessor :start_at, :expires_at, :created_at, :next_interval_start
|
22
21
|
|
23
22
|
|
24
23
|
def cancel!
|
data/lib/gocardless/version.rb
CHANGED