stripe 2.6.0 → 2.7.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.
- checksums.yaml +4 -4
- data/History.txt +4 -0
- data/VERSION +1 -1
- data/lib/stripe.rb +1 -0
- data/lib/stripe/invoice_line_item.rb +5 -0
- data/lib/stripe/util.rb +1 -0
- data/lib/stripe/version.rb +1 -1
- data/test/stripe/invoice_line_item_test.rb +7 -0
- metadata +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f1ca52eecc695b6655a4317d0b5c8c893431aab
|
4
|
+
data.tar.gz: 1a5e5f17ba9e3e73574fb3af3f2014b3b39b06ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9bf4f072ef017d7247c014606532275d976a46aa451fbb9be12d25eaa792b4ae843795d329cf94359d41c83a1a3bf836b090ba7beb20ebcad6b4151497469cff
|
7
|
+
data.tar.gz: 58db5a2043f13901d93e9024a1dcfffde774cbcfc4f614cce4b43354069efbc115252b78981f33baddc599a090b2775dd6ee23b9bc2aa4d5c43007d9f062c57d
|
data/History.txt
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.7.0
|
data/lib/stripe.rb
CHANGED
data/lib/stripe/util.rb
CHANGED
@@ -43,6 +43,7 @@ module Stripe
|
|
43
43
|
FileUpload::OBJECT_NAME => FileUpload,
|
44
44
|
Invoice::OBJECT_NAME => Invoice,
|
45
45
|
InvoiceItem::OBJECT_NAME => InvoiceItem,
|
46
|
+
InvoiceLineItem::OBJECT_NAME => InvoiceLineItem,
|
46
47
|
Order::OBJECT_NAME => Order,
|
47
48
|
OrderReturn::OBJECT_NAME => OrderReturn,
|
48
49
|
Payout::OBJECT_NAME => Payout,
|
data/lib/stripe/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stripe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
@@ -73,6 +73,7 @@ files:
|
|
73
73
|
- lib/stripe/file_upload.rb
|
74
74
|
- lib/stripe/invoice.rb
|
75
75
|
- lib/stripe/invoice_item.rb
|
76
|
+
- lib/stripe/invoice_line_item.rb
|
76
77
|
- lib/stripe/list_object.rb
|
77
78
|
- lib/stripe/order.rb
|
78
79
|
- lib/stripe/order_return.rb
|
@@ -123,6 +124,7 @@ files:
|
|
123
124
|
- test/stripe/errors_test.rb
|
124
125
|
- test/stripe/file_upload_test.rb
|
125
126
|
- test/stripe/invoice_item_test.rb
|
127
|
+
- test/stripe/invoice_line_item_test.rb
|
126
128
|
- test/stripe/invoice_test.rb
|
127
129
|
- test/stripe/list_object_test.rb
|
128
130
|
- test/stripe/order_return_test.rb
|
@@ -194,6 +196,7 @@ test_files:
|
|
194
196
|
- test/stripe/errors_test.rb
|
195
197
|
- test/stripe/file_upload_test.rb
|
196
198
|
- test/stripe/invoice_item_test.rb
|
199
|
+
- test/stripe/invoice_line_item_test.rb
|
197
200
|
- test/stripe/invoice_test.rb
|
198
201
|
- test/stripe/list_object_test.rb
|
199
202
|
- test/stripe/order_return_test.rb
|