duodealer_api 1.0.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 +7 -0
- data/.document +5 -0
- data/.gitignore +13 -0
- data/.rubocop.yml +8 -0
- data/.travis.yml +23 -0
- data/Gemfile +5 -0
- data/Gemfile_ar41 +5 -0
- data/Gemfile_ar50 +5 -0
- data/Gemfile_ar51 +5 -0
- data/Gemfile_ar_master +5 -0
- data/RELEASING +13 -0
- data/Rakefile +44 -0
- data/docker-compose.yml +13 -0
- data/docs/graphql.md +191 -0
- data/duodealer_api.gemspec +38 -0
- data/lib/active_resource/connection_ext.rb +10 -0
- data/lib/active_resource/detailed_log_subscriber.rb +52 -0
- data/lib/active_resource/json_errors.rb +31 -0
- data/lib/duodealer_api.rb +33 -0
- data/lib/duodealer_api/api_version.rb +205 -0
- data/lib/duodealer_api/connection.rb +35 -0
- data/lib/duodealer_api/countable.rb +14 -0
- data/lib/duodealer_api/disable_prefix_check.rb +31 -0
- data/lib/duodealer_api/events.rb +7 -0
- data/lib/duodealer_api/graphql.rb +79 -0
- data/lib/duodealer_api/graphql/http_client.rb +22 -0
- data/lib/duodealer_api/graphql/railtie.rb +17 -0
- data/lib/duodealer_api/graphql/task.rake +97 -0
- data/lib/duodealer_api/limits.rb +76 -0
- data/lib/duodealer_api/message_enricher.rb +23 -0
- data/lib/duodealer_api/meta.rb +15 -0
- data/lib/duodealer_api/metafields.rb +20 -0
- data/lib/duodealer_api/paginated_collection.rb +69 -0
- data/lib/duodealer_api/pagination_link_headers.rb +33 -0
- data/lib/duodealer_api/resources.rb +3 -0
- data/lib/duodealer_api/resources/abandoned_checkout.rb +7 -0
- data/lib/duodealer_api/resources/access_scope.rb +10 -0
- data/lib/duodealer_api/resources/access_token.rb +8 -0
- data/lib/duodealer_api/resources/address.rb +4 -0
- data/lib/duodealer_api/resources/announcement.rb +4 -0
- data/lib/duodealer_api/resources/api_permission.rb +9 -0
- data/lib/duodealer_api/resources/application_charge.rb +15 -0
- data/lib/duodealer_api/resources/application_credit.rb +4 -0
- data/lib/duodealer_api/resources/array_base.rb +13 -0
- data/lib/duodealer_api/resources/article.rb +21 -0
- data/lib/duodealer_api/resources/asset.rb +100 -0
- data/lib/duodealer_api/resources/assigned_fulfillment_order.rb +16 -0
- data/lib/duodealer_api/resources/base.rb +162 -0
- data/lib/duodealer_api/resources/billing_address.rb +4 -0
- data/lib/duodealer_api/resources/blog.rb +10 -0
- data/lib/duodealer_api/resources/carrier_service.rb +4 -0
- data/lib/duodealer_api/resources/cart.rb +4 -0
- data/lib/duodealer_api/resources/checkout.rb +30 -0
- data/lib/duodealer_api/resources/collect.rb +6 -0
- data/lib/duodealer_api/resources/collection.rb +14 -0
- data/lib/duodealer_api/resources/collection_listing.rb +18 -0
- data/lib/duodealer_api/resources/collection_publication.rb +10 -0
- data/lib/duodealer_api/resources/comment.rb +9 -0
- data/lib/duodealer_api/resources/country.rb +4 -0
- data/lib/duodealer_api/resources/currency.rb +6 -0
- data/lib/duodealer_api/resources/custom_collection.rb +19 -0
- data/lib/duodealer_api/resources/customer.rb +29 -0
- data/lib/duodealer_api/resources/customer_group.rb +5 -0
- data/lib/duodealer_api/resources/customer_invite.rb +4 -0
- data/lib/duodealer_api/resources/customer_saved_search.rb +11 -0
- data/lib/duodealer_api/resources/discount_code.rb +9 -0
- data/lib/duodealer_api/resources/draft_order.rb +14 -0
- data/lib/duodealer_api/resources/draft_order_invoice.rb +4 -0
- data/lib/duodealer_api/resources/event.rb +8 -0
- data/lib/duodealer_api/resources/fulfillment.rb +47 -0
- data/lib/duodealer_api/resources/fulfillment_event.rb +15 -0
- data/lib/duodealer_api/resources/fulfillment_order.rb +137 -0
- data/lib/duodealer_api/resources/fulfillment_order_locations_for_move.rb +4 -0
- data/lib/duodealer_api/resources/fulfillment_request.rb +15 -0
- data/lib/duodealer_api/resources/fulfillment_service.rb +4 -0
- data/lib/duodealer_api/resources/fulfillment_v2.rb +20 -0
- data/lib/duodealer_api/resources/gift_card.rb +7 -0
- data/lib/duodealer_api/resources/image.rb +16 -0
- data/lib/duodealer_api/resources/inventory_item.rb +6 -0
- data/lib/duodealer_api/resources/inventory_level.rb +55 -0
- data/lib/duodealer_api/resources/line_item.rb +14 -0
- data/lib/duodealer_api/resources/location.rb +8 -0
- data/lib/duodealer_api/resources/marketing_event.rb +10 -0
- data/lib/duodealer_api/resources/metafield.rb +13 -0
- data/lib/duodealer_api/resources/note_attribute.rb +4 -0
- data/lib/duodealer_api/resources/option.rb +4 -0
- data/lib/duodealer_api/resources/order.rb +43 -0
- data/lib/duodealer_api/resources/order_risk.rb +8 -0
- data/lib/duodealer_api/resources/page.rb +6 -0
- data/lib/duodealer_api/resources/payment.rb +7 -0
- data/lib/duodealer_api/resources/payment_details.rb +4 -0
- data/lib/duodealer_api/resources/ping.rb +3 -0
- data/lib/duodealer_api/resources/policy.rb +7 -0
- data/lib/duodealer_api/resources/price_rule.rb +8 -0
- data/lib/duodealer_api/resources/product.rb +35 -0
- data/lib/duodealer_api/resources/product_listing.rb +16 -0
- data/lib/duodealer_api/resources/product_publication.rb +10 -0
- data/lib/duodealer_api/resources/province.rb +5 -0
- data/lib/duodealer_api/resources/publication.rb +5 -0
- data/lib/duodealer_api/resources/receipt.rb +4 -0
- data/lib/duodealer_api/resources/recurring_application_charge.rb +31 -0
- data/lib/duodealer_api/resources/redirect.rb +4 -0
- data/lib/duodealer_api/resources/refund.rb +14 -0
- data/lib/duodealer_api/resources/report.rb +4 -0
- data/lib/duodealer_api/resources/resource_feedback.rb +19 -0
- data/lib/duodealer_api/resources/rule.rb +4 -0
- data/lib/duodealer_api/resources/script_tag.rb +4 -0
- data/lib/duodealer_api/resources/shipping_address.rb +4 -0
- data/lib/duodealer_api/resources/shipping_line.rb +4 -0
- data/lib/duodealer_api/resources/shipping_rate.rb +7 -0
- data/lib/duodealer_api/resources/shipping_zone.rb +4 -0
- data/lib/duodealer_api/resources/shop.rb +25 -0
- data/lib/duodealer_api/resources/smart_collection.rb +19 -0
- data/lib/duodealer_api/resources/storefront_access_token.rb +4 -0
- data/lib/duodealer_api/resources/tax_line.rb +4 -0
- data/lib/duodealer_api/resources/tax_service.rb +4 -0
- data/lib/duodealer_api/resources/tender_transaction.rb +6 -0
- data/lib/duodealer_api/resources/theme.rb +4 -0
- data/lib/duodealer_api/resources/transaction.rb +5 -0
- data/lib/duodealer_api/resources/usage_charge.rb +5 -0
- data/lib/duodealer_api/resources/user.rb +4 -0
- data/lib/duodealer_api/resources/variant.rb +8 -0
- data/lib/duodealer_api/resources/webhook.rb +4 -0
- data/lib/duodealer_api/session.rb +171 -0
- data/lib/duodealer_api/version.rb +3 -0
- data/shipit.rubygems.yml +1 -0
- data/test/abandoned_checkouts_test.rb +29 -0
- data/test/access_scope_test.rb +23 -0
- data/test/access_token_test.rb +19 -0
- data/test/active_resource/json_errors_test.rb +19 -0
- data/test/api_permission_test.rb +9 -0
- data/test/api_version_test.rb +157 -0
- data/test/application_charge_test.rb +79 -0
- data/test/application_credit_test.rb +35 -0
- data/test/article_test.rb +73 -0
- data/test/asset_test.rb +18 -0
- data/test/assigned_fulfillment_order_test.rb +77 -0
- data/test/base_test.rb +198 -0
- data/test/blog_test.rb +8 -0
- data/test/carrier_service_test.rb +17 -0
- data/test/cart_test.rb +13 -0
- data/test/checkouts_test.rb +77 -0
- data/test/collect_test.rb +9 -0
- data/test/collection_listing_test.rb +79 -0
- data/test/collection_publication_test.rb +40 -0
- data/test/collection_test.rb +49 -0
- data/test/countable_test.rb +13 -0
- data/test/currency_test.rb +21 -0
- data/test/custom_collection_test.rb +9 -0
- data/test/customer_saved_search_test.rb +27 -0
- data/test/customer_test.rb +50 -0
- data/test/detailed_log_subscriber_test.rb +139 -0
- data/test/discount_code_test.rb +53 -0
- data/test/draft_order_test.rb +151 -0
- data/test/fixtures/abandoned_checkout.json +184 -0
- data/test/fixtures/abandoned_checkouts.json +186 -0
- data/test/fixtures/access_scopes.json +10 -0
- data/test/fixtures/access_token_delegate.json +4 -0
- data/test/fixtures/api_versions.json +38 -0
- data/test/fixtures/apis.json +42 -0
- data/test/fixtures/application_charge.json +16 -0
- data/test/fixtures/application_charges.json +57 -0
- data/test/fixtures/application_credit.json +12 -0
- data/test/fixtures/application_credits.json +24 -0
- data/test/fixtures/article.json +15 -0
- data/test/fixtures/articles.json +39 -0
- data/test/fixtures/asset.json +9 -0
- data/test/fixtures/assets.json +136 -0
- data/test/fixtures/assigned_fulfillment_orders.json +78 -0
- data/test/fixtures/authors.json +1 -0
- data/test/fixtures/blog.json +13 -0
- data/test/fixtures/blogs.json +13 -0
- data/test/fixtures/carrier_service.json +9 -0
- data/test/fixtures/carts.json +43 -0
- data/test/fixtures/checkout.json +160 -0
- data/test/fixtures/checkouts.json +162 -0
- data/test/fixtures/collect.json +12 -0
- data/test/fixtures/collection.json +17 -0
- data/test/fixtures/collection_listing.json +11 -0
- data/test/fixtures/collection_listing_product_ids.json +1 -0
- data/test/fixtures/collection_listing_product_ids2.json +1 -0
- data/test/fixtures/collection_listings.json +13 -0
- data/test/fixtures/collection_products.json +47 -0
- data/test/fixtures/collection_publication.json +11 -0
- data/test/fixtures/collection_publications.json +13 -0
- data/test/fixtures/currencies.json +25 -0
- data/test/fixtures/custom_collection.json +17 -0
- data/test/fixtures/customer_invite.json +9 -0
- data/test/fixtures/customer_saved_search.json +9 -0
- data/test/fixtures/customer_saved_search_customers.json +60 -0
- data/test/fixtures/customers.json +59 -0
- data/test/fixtures/customers_account_activation_url.json +3 -0
- data/test/fixtures/customers_search.json +60 -0
- data/test/fixtures/discount_code.json +10 -0
- data/test/fixtures/discount_codes.json +12 -0
- data/test/fixtures/draft_order.json +159 -0
- data/test/fixtures/draft_order_completed.json +159 -0
- data/test/fixtures/draft_order_invoice.json +9 -0
- data/test/fixtures/draft_orders.json +161 -0
- data/test/fixtures/engagement.json +15 -0
- data/test/fixtures/events.json +31 -0
- data/test/fixtures/fulfillment.json +49 -0
- data/test/fixtures/fulfillment_event.json +12 -0
- data/test/fixtures/fulfillment_order.json +38 -0
- data/test/fixtures/fulfillment_order_locations_for_move.json +18 -0
- data/test/fixtures/fulfillment_orders.json +78 -0
- data/test/fixtures/fulfillment_request.json +28 -0
- data/test/fixtures/fulfillment_service.json +10 -0
- data/test/fixtures/fulfillments.json +53 -0
- data/test/fixtures/gift_card.json +20 -0
- data/test/fixtures/gift_card_disabled.json +20 -0
- data/test/fixtures/graphql/2019-10.json +1083 -0
- data/test/fixtures/graphql/dummy_schema.rb +16 -0
- data/test/fixtures/graphql/unstable.json +1083 -0
- data/test/fixtures/image.json +10 -0
- data/test/fixtures/images.json +20 -0
- data/test/fixtures/inventory_level.json +7 -0
- data/test/fixtures/inventory_levels.json +24 -0
- data/test/fixtures/marketing_event.json +28 -0
- data/test/fixtures/marketing_events.json +54 -0
- data/test/fixtures/metafield.json +12 -0
- data/test/fixtures/metafields.json +34 -0
- data/test/fixtures/order.json +297 -0
- data/test/fixtures/order_risk.json +14 -0
- data/test/fixtures/order_risks.json +28 -0
- data/test/fixtures/order_with_properties.json +373 -0
- data/test/fixtures/orders.json +299 -0
- data/test/fixtures/payment.json +7 -0
- data/test/fixtures/payments.json +9 -0
- data/test/fixtures/ping/conversation.json +1 -0
- data/test/fixtures/ping/failed_delivery_confirmation.json +1 -0
- data/test/fixtures/ping/message.json +1 -0
- data/test/fixtures/ping/successful_delivery_confirmation.json +1 -0
- data/test/fixtures/policies.json +8 -0
- data/test/fixtures/price_rule.json +27 -0
- data/test/fixtures/price_rules.json +28 -0
- data/test/fixtures/product.json +116 -0
- data/test/fixtures/product_listing.json +86 -0
- data/test/fixtures/product_listing_product_ids.json +1 -0
- data/test/fixtures/product_listing_product_ids2.json +1 -0
- data/test/fixtures/product_listings.json +174 -0
- data/test/fixtures/product_publication.json +11 -0
- data/test/fixtures/product_publications.json +13 -0
- data/test/fixtures/publications.json +9 -0
- data/test/fixtures/recurring_application_charge.json +22 -0
- data/test/fixtures/recurring_application_charge_adjustment.json +5 -0
- data/test/fixtures/recurring_application_charges.json +106 -0
- data/test/fixtures/redirect.json +7 -0
- data/test/fixtures/refund.json +112 -0
- data/test/fixtures/report.json +9 -0
- data/test/fixtures/reports.json +11 -0
- data/test/fixtures/script_tag.json +10 -0
- data/test/fixtures/script_tags.json +18 -0
- data/test/fixtures/shipping_rates.json +12 -0
- data/test/fixtures/shipping_zones.json +315 -0
- data/test/fixtures/shop.json +26 -0
- data/test/fixtures/smart_collection.json +21 -0
- data/test/fixtures/smart_collection_products.json +155 -0
- data/test/fixtures/storefront_access_token.json +9 -0
- data/test/fixtures/storefront_access_tokens.json +18 -0
- data/test/fixtures/tags.json +1 -0
- data/test/fixtures/tax_service.json +9 -0
- data/test/fixtures/tender_transactions.json +52 -0
- data/test/fixtures/transaction.json +29 -0
- data/test/fixtures/usage_charge.json +11 -0
- data/test/fixtures/usage_charges.json +23 -0
- data/test/fixtures/user.json +21 -0
- data/test/fixtures/users.json +42 -0
- data/test/fixtures/variant.json +23 -0
- data/test/fixtures/variants.json +88 -0
- data/test/fixtures/webhook.json +10 -0
- data/test/fixtures/webhooks.json +18 -0
- data/test/fulfillment_event_test.rb +69 -0
- data/test/fulfillment_order_test.rb +462 -0
- data/test/fulfillment_order_test_helper.rb +7 -0
- data/test/fulfillment_request_test.rb +33 -0
- data/test/fulfillment_service_test.rb +17 -0
- data/test/fulfillment_test.rb +224 -0
- data/test/fulfillment_v2_test.rb +62 -0
- data/test/gift_card_test.rb +22 -0
- data/test/graphql/http_client_test.rb +26 -0
- data/test/graphql_test.rb +147 -0
- data/test/image_test.rb +39 -0
- data/test/inventory_level_test.rb +59 -0
- data/test/lib/webmock_extensions/last_request.rb +16 -0
- data/test/limits_test.rb +38 -0
- data/test/location_test.rb +14 -0
- data/test/marketing_event_test.rb +68 -0
- data/test/message_enricher_test.rb +45 -0
- data/test/meta_test.rb +49 -0
- data/test/metafield_test.rb +46 -0
- data/test/order_risk_test.rb +46 -0
- data/test/order_test.rb +125 -0
- data/test/pagination_test.rb +257 -0
- data/test/payment_test.rb +19 -0
- data/test/policy_test.rb +19 -0
- data/test/price_rule_test.rb +65 -0
- data/test/product_listing_test.rb +97 -0
- data/test/product_publication_test.rb +40 -0
- data/test/product_test.rb +60 -0
- data/test/publication_test.rb +12 -0
- data/test/recurring_application_charge_test.rb +142 -0
- data/test/redirect_test.rb +9 -0
- data/test/refund_test.rb +32 -0
- data/test/report_test.rb +35 -0
- data/test/resource_feedback_test.rb +42 -0
- data/test/script_tag_test.rb +30 -0
- data/test/session_test.rb +366 -0
- data/test/shipping_rate_test.rb +17 -0
- data/test/shipping_zone_test.rb +10 -0
- data/test/shop_test.rb +68 -0
- data/test/smart_collection_test.rb +35 -0
- data/test/storefront_access_token_test.rb +32 -0
- data/test/tax_service_test.rb +9 -0
- data/test/tender_transaction_test.rb +18 -0
- data/test/test_helper.rb +124 -0
- data/test/transaction_test.rb +17 -0
- data/test/usage_charge_test.rb +21 -0
- data/test/user_test.rb +17 -0
- data/test/variant_test.rb +46 -0
- data/test/webhook_test.rb +21 -0
- metadata +541 -0
metadata
ADDED
|
@@ -0,0 +1,541 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: duodealer_api
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Eric Raio
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2020-02-22 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: railties
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 6.0.2.1
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 6.0.2.1
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: activeresource
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 4.1.0
|
|
34
|
+
- - "<"
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: 6.0.0
|
|
37
|
+
type: :runtime
|
|
38
|
+
prerelease: false
|
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: 4.1.0
|
|
44
|
+
- - "<"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 6.0.0
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: rack
|
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0'
|
|
54
|
+
type: :runtime
|
|
55
|
+
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '0'
|
|
61
|
+
- !ruby/object:Gem::Dependency
|
|
62
|
+
name: graphql-client
|
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '0'
|
|
68
|
+
type: :runtime
|
|
69
|
+
prerelease: false
|
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
75
|
+
- !ruby/object:Gem::Dependency
|
|
76
|
+
name: mocha
|
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: 0.9.8
|
|
82
|
+
type: :development
|
|
83
|
+
prerelease: false
|
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: 0.9.8
|
|
89
|
+
- !ruby/object:Gem::Dependency
|
|
90
|
+
name: webmock
|
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - ">="
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '0'
|
|
96
|
+
type: :development
|
|
97
|
+
prerelease: false
|
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '0'
|
|
103
|
+
- !ruby/object:Gem::Dependency
|
|
104
|
+
name: minitest
|
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '4.0'
|
|
110
|
+
type: :development
|
|
111
|
+
prerelease: false
|
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - ">="
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '4.0'
|
|
117
|
+
- !ruby/object:Gem::Dependency
|
|
118
|
+
name: rake
|
|
119
|
+
requirement: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '0'
|
|
124
|
+
type: :development
|
|
125
|
+
prerelease: false
|
|
126
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - ">="
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '0'
|
|
131
|
+
- !ruby/object:Gem::Dependency
|
|
132
|
+
name: timecop
|
|
133
|
+
requirement: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - ">="
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: '0'
|
|
138
|
+
type: :development
|
|
139
|
+
prerelease: false
|
|
140
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '0'
|
|
145
|
+
- !ruby/object:Gem::Dependency
|
|
146
|
+
name: rubocop
|
|
147
|
+
requirement: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - ">="
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '0'
|
|
152
|
+
type: :development
|
|
153
|
+
prerelease: false
|
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - ">="
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: '0'
|
|
159
|
+
- !ruby/object:Gem::Dependency
|
|
160
|
+
name: pry
|
|
161
|
+
requirement: !ruby/object:Gem::Requirement
|
|
162
|
+
requirements:
|
|
163
|
+
- - ">="
|
|
164
|
+
- !ruby/object:Gem::Version
|
|
165
|
+
version: '0'
|
|
166
|
+
type: :development
|
|
167
|
+
prerelease: false
|
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
169
|
+
requirements:
|
|
170
|
+
- - ">="
|
|
171
|
+
- !ruby/object:Gem::Version
|
|
172
|
+
version: '0'
|
|
173
|
+
- !ruby/object:Gem::Dependency
|
|
174
|
+
name: pry-byebug
|
|
175
|
+
requirement: !ruby/object:Gem::Requirement
|
|
176
|
+
requirements:
|
|
177
|
+
- - ">="
|
|
178
|
+
- !ruby/object:Gem::Version
|
|
179
|
+
version: '0'
|
|
180
|
+
type: :development
|
|
181
|
+
prerelease: false
|
|
182
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
183
|
+
requirements:
|
|
184
|
+
- - ">="
|
|
185
|
+
- !ruby/object:Gem::Version
|
|
186
|
+
version: '0'
|
|
187
|
+
description: The Duo Dealer API gem allows Ruby developers to programmatically access
|
|
188
|
+
the admin section of Duo Dealer stores. The API is implemented as JSON or XML over
|
|
189
|
+
HTTP using all four verbs (GET/POST/PUT/DELETE). Each resource, like Order, Product,
|
|
190
|
+
or Collection, has its own URL and is manipulated in isolation.
|
|
191
|
+
email: careers@duodealer.com
|
|
192
|
+
executables: []
|
|
193
|
+
extensions: []
|
|
194
|
+
extra_rdoc_files: []
|
|
195
|
+
files:
|
|
196
|
+
- ".document"
|
|
197
|
+
- ".gitignore"
|
|
198
|
+
- ".rubocop.yml"
|
|
199
|
+
- ".travis.yml"
|
|
200
|
+
- Gemfile
|
|
201
|
+
- Gemfile_ar41
|
|
202
|
+
- Gemfile_ar50
|
|
203
|
+
- Gemfile_ar51
|
|
204
|
+
- Gemfile_ar_master
|
|
205
|
+
- RELEASING
|
|
206
|
+
- Rakefile
|
|
207
|
+
- docker-compose.yml
|
|
208
|
+
- docs/graphql.md
|
|
209
|
+
- duodealer_api.gemspec
|
|
210
|
+
- lib/active_resource/connection_ext.rb
|
|
211
|
+
- lib/active_resource/detailed_log_subscriber.rb
|
|
212
|
+
- lib/active_resource/json_errors.rb
|
|
213
|
+
- lib/duodealer_api.rb
|
|
214
|
+
- lib/duodealer_api/api_version.rb
|
|
215
|
+
- lib/duodealer_api/connection.rb
|
|
216
|
+
- lib/duodealer_api/countable.rb
|
|
217
|
+
- lib/duodealer_api/disable_prefix_check.rb
|
|
218
|
+
- lib/duodealer_api/events.rb
|
|
219
|
+
- lib/duodealer_api/graphql.rb
|
|
220
|
+
- lib/duodealer_api/graphql/http_client.rb
|
|
221
|
+
- lib/duodealer_api/graphql/railtie.rb
|
|
222
|
+
- lib/duodealer_api/graphql/task.rake
|
|
223
|
+
- lib/duodealer_api/limits.rb
|
|
224
|
+
- lib/duodealer_api/message_enricher.rb
|
|
225
|
+
- lib/duodealer_api/meta.rb
|
|
226
|
+
- lib/duodealer_api/metafields.rb
|
|
227
|
+
- lib/duodealer_api/paginated_collection.rb
|
|
228
|
+
- lib/duodealer_api/pagination_link_headers.rb
|
|
229
|
+
- lib/duodealer_api/resources.rb
|
|
230
|
+
- lib/duodealer_api/resources/abandoned_checkout.rb
|
|
231
|
+
- lib/duodealer_api/resources/access_scope.rb
|
|
232
|
+
- lib/duodealer_api/resources/access_token.rb
|
|
233
|
+
- lib/duodealer_api/resources/address.rb
|
|
234
|
+
- lib/duodealer_api/resources/announcement.rb
|
|
235
|
+
- lib/duodealer_api/resources/api_permission.rb
|
|
236
|
+
- lib/duodealer_api/resources/application_charge.rb
|
|
237
|
+
- lib/duodealer_api/resources/application_credit.rb
|
|
238
|
+
- lib/duodealer_api/resources/array_base.rb
|
|
239
|
+
- lib/duodealer_api/resources/article.rb
|
|
240
|
+
- lib/duodealer_api/resources/asset.rb
|
|
241
|
+
- lib/duodealer_api/resources/assigned_fulfillment_order.rb
|
|
242
|
+
- lib/duodealer_api/resources/base.rb
|
|
243
|
+
- lib/duodealer_api/resources/billing_address.rb
|
|
244
|
+
- lib/duodealer_api/resources/blog.rb
|
|
245
|
+
- lib/duodealer_api/resources/carrier_service.rb
|
|
246
|
+
- lib/duodealer_api/resources/cart.rb
|
|
247
|
+
- lib/duodealer_api/resources/checkout.rb
|
|
248
|
+
- lib/duodealer_api/resources/collect.rb
|
|
249
|
+
- lib/duodealer_api/resources/collection.rb
|
|
250
|
+
- lib/duodealer_api/resources/collection_listing.rb
|
|
251
|
+
- lib/duodealer_api/resources/collection_publication.rb
|
|
252
|
+
- lib/duodealer_api/resources/comment.rb
|
|
253
|
+
- lib/duodealer_api/resources/country.rb
|
|
254
|
+
- lib/duodealer_api/resources/currency.rb
|
|
255
|
+
- lib/duodealer_api/resources/custom_collection.rb
|
|
256
|
+
- lib/duodealer_api/resources/customer.rb
|
|
257
|
+
- lib/duodealer_api/resources/customer_group.rb
|
|
258
|
+
- lib/duodealer_api/resources/customer_invite.rb
|
|
259
|
+
- lib/duodealer_api/resources/customer_saved_search.rb
|
|
260
|
+
- lib/duodealer_api/resources/discount_code.rb
|
|
261
|
+
- lib/duodealer_api/resources/draft_order.rb
|
|
262
|
+
- lib/duodealer_api/resources/draft_order_invoice.rb
|
|
263
|
+
- lib/duodealer_api/resources/event.rb
|
|
264
|
+
- lib/duodealer_api/resources/fulfillment.rb
|
|
265
|
+
- lib/duodealer_api/resources/fulfillment_event.rb
|
|
266
|
+
- lib/duodealer_api/resources/fulfillment_order.rb
|
|
267
|
+
- lib/duodealer_api/resources/fulfillment_order_locations_for_move.rb
|
|
268
|
+
- lib/duodealer_api/resources/fulfillment_request.rb
|
|
269
|
+
- lib/duodealer_api/resources/fulfillment_service.rb
|
|
270
|
+
- lib/duodealer_api/resources/fulfillment_v2.rb
|
|
271
|
+
- lib/duodealer_api/resources/gift_card.rb
|
|
272
|
+
- lib/duodealer_api/resources/image.rb
|
|
273
|
+
- lib/duodealer_api/resources/inventory_item.rb
|
|
274
|
+
- lib/duodealer_api/resources/inventory_level.rb
|
|
275
|
+
- lib/duodealer_api/resources/line_item.rb
|
|
276
|
+
- lib/duodealer_api/resources/location.rb
|
|
277
|
+
- lib/duodealer_api/resources/marketing_event.rb
|
|
278
|
+
- lib/duodealer_api/resources/metafield.rb
|
|
279
|
+
- lib/duodealer_api/resources/note_attribute.rb
|
|
280
|
+
- lib/duodealer_api/resources/option.rb
|
|
281
|
+
- lib/duodealer_api/resources/order.rb
|
|
282
|
+
- lib/duodealer_api/resources/order_risk.rb
|
|
283
|
+
- lib/duodealer_api/resources/page.rb
|
|
284
|
+
- lib/duodealer_api/resources/payment.rb
|
|
285
|
+
- lib/duodealer_api/resources/payment_details.rb
|
|
286
|
+
- lib/duodealer_api/resources/ping.rb
|
|
287
|
+
- lib/duodealer_api/resources/policy.rb
|
|
288
|
+
- lib/duodealer_api/resources/price_rule.rb
|
|
289
|
+
- lib/duodealer_api/resources/product.rb
|
|
290
|
+
- lib/duodealer_api/resources/product_listing.rb
|
|
291
|
+
- lib/duodealer_api/resources/product_publication.rb
|
|
292
|
+
- lib/duodealer_api/resources/province.rb
|
|
293
|
+
- lib/duodealer_api/resources/publication.rb
|
|
294
|
+
- lib/duodealer_api/resources/receipt.rb
|
|
295
|
+
- lib/duodealer_api/resources/recurring_application_charge.rb
|
|
296
|
+
- lib/duodealer_api/resources/redirect.rb
|
|
297
|
+
- lib/duodealer_api/resources/refund.rb
|
|
298
|
+
- lib/duodealer_api/resources/report.rb
|
|
299
|
+
- lib/duodealer_api/resources/resource_feedback.rb
|
|
300
|
+
- lib/duodealer_api/resources/rule.rb
|
|
301
|
+
- lib/duodealer_api/resources/script_tag.rb
|
|
302
|
+
- lib/duodealer_api/resources/shipping_address.rb
|
|
303
|
+
- lib/duodealer_api/resources/shipping_line.rb
|
|
304
|
+
- lib/duodealer_api/resources/shipping_rate.rb
|
|
305
|
+
- lib/duodealer_api/resources/shipping_zone.rb
|
|
306
|
+
- lib/duodealer_api/resources/shop.rb
|
|
307
|
+
- lib/duodealer_api/resources/smart_collection.rb
|
|
308
|
+
- lib/duodealer_api/resources/storefront_access_token.rb
|
|
309
|
+
- lib/duodealer_api/resources/tax_line.rb
|
|
310
|
+
- lib/duodealer_api/resources/tax_service.rb
|
|
311
|
+
- lib/duodealer_api/resources/tender_transaction.rb
|
|
312
|
+
- lib/duodealer_api/resources/theme.rb
|
|
313
|
+
- lib/duodealer_api/resources/transaction.rb
|
|
314
|
+
- lib/duodealer_api/resources/usage_charge.rb
|
|
315
|
+
- lib/duodealer_api/resources/user.rb
|
|
316
|
+
- lib/duodealer_api/resources/variant.rb
|
|
317
|
+
- lib/duodealer_api/resources/webhook.rb
|
|
318
|
+
- lib/duodealer_api/session.rb
|
|
319
|
+
- lib/duodealer_api/version.rb
|
|
320
|
+
- shipit.rubygems.yml
|
|
321
|
+
- test/abandoned_checkouts_test.rb
|
|
322
|
+
- test/access_scope_test.rb
|
|
323
|
+
- test/access_token_test.rb
|
|
324
|
+
- test/active_resource/json_errors_test.rb
|
|
325
|
+
- test/api_permission_test.rb
|
|
326
|
+
- test/api_version_test.rb
|
|
327
|
+
- test/application_charge_test.rb
|
|
328
|
+
- test/application_credit_test.rb
|
|
329
|
+
- test/article_test.rb
|
|
330
|
+
- test/asset_test.rb
|
|
331
|
+
- test/assigned_fulfillment_order_test.rb
|
|
332
|
+
- test/base_test.rb
|
|
333
|
+
- test/blog_test.rb
|
|
334
|
+
- test/carrier_service_test.rb
|
|
335
|
+
- test/cart_test.rb
|
|
336
|
+
- test/checkouts_test.rb
|
|
337
|
+
- test/collect_test.rb
|
|
338
|
+
- test/collection_listing_test.rb
|
|
339
|
+
- test/collection_publication_test.rb
|
|
340
|
+
- test/collection_test.rb
|
|
341
|
+
- test/countable_test.rb
|
|
342
|
+
- test/currency_test.rb
|
|
343
|
+
- test/custom_collection_test.rb
|
|
344
|
+
- test/customer_saved_search_test.rb
|
|
345
|
+
- test/customer_test.rb
|
|
346
|
+
- test/detailed_log_subscriber_test.rb
|
|
347
|
+
- test/discount_code_test.rb
|
|
348
|
+
- test/draft_order_test.rb
|
|
349
|
+
- test/fixtures/abandoned_checkout.json
|
|
350
|
+
- test/fixtures/abandoned_checkouts.json
|
|
351
|
+
- test/fixtures/access_scopes.json
|
|
352
|
+
- test/fixtures/access_token_delegate.json
|
|
353
|
+
- test/fixtures/api_versions.json
|
|
354
|
+
- test/fixtures/apis.json
|
|
355
|
+
- test/fixtures/application_charge.json
|
|
356
|
+
- test/fixtures/application_charges.json
|
|
357
|
+
- test/fixtures/application_credit.json
|
|
358
|
+
- test/fixtures/application_credits.json
|
|
359
|
+
- test/fixtures/article.json
|
|
360
|
+
- test/fixtures/articles.json
|
|
361
|
+
- test/fixtures/asset.json
|
|
362
|
+
- test/fixtures/assets.json
|
|
363
|
+
- test/fixtures/assigned_fulfillment_orders.json
|
|
364
|
+
- test/fixtures/authors.json
|
|
365
|
+
- test/fixtures/blog.json
|
|
366
|
+
- test/fixtures/blogs.json
|
|
367
|
+
- test/fixtures/carrier_service.json
|
|
368
|
+
- test/fixtures/carts.json
|
|
369
|
+
- test/fixtures/checkout.json
|
|
370
|
+
- test/fixtures/checkouts.json
|
|
371
|
+
- test/fixtures/collect.json
|
|
372
|
+
- test/fixtures/collection.json
|
|
373
|
+
- test/fixtures/collection_listing.json
|
|
374
|
+
- test/fixtures/collection_listing_product_ids.json
|
|
375
|
+
- test/fixtures/collection_listing_product_ids2.json
|
|
376
|
+
- test/fixtures/collection_listings.json
|
|
377
|
+
- test/fixtures/collection_products.json
|
|
378
|
+
- test/fixtures/collection_publication.json
|
|
379
|
+
- test/fixtures/collection_publications.json
|
|
380
|
+
- test/fixtures/currencies.json
|
|
381
|
+
- test/fixtures/custom_collection.json
|
|
382
|
+
- test/fixtures/customer_invite.json
|
|
383
|
+
- test/fixtures/customer_saved_search.json
|
|
384
|
+
- test/fixtures/customer_saved_search_customers.json
|
|
385
|
+
- test/fixtures/customers.json
|
|
386
|
+
- test/fixtures/customers_account_activation_url.json
|
|
387
|
+
- test/fixtures/customers_search.json
|
|
388
|
+
- test/fixtures/discount_code.json
|
|
389
|
+
- test/fixtures/discount_codes.json
|
|
390
|
+
- test/fixtures/draft_order.json
|
|
391
|
+
- test/fixtures/draft_order_completed.json
|
|
392
|
+
- test/fixtures/draft_order_invoice.json
|
|
393
|
+
- test/fixtures/draft_orders.json
|
|
394
|
+
- test/fixtures/engagement.json
|
|
395
|
+
- test/fixtures/events.json
|
|
396
|
+
- test/fixtures/fulfillment.json
|
|
397
|
+
- test/fixtures/fulfillment_event.json
|
|
398
|
+
- test/fixtures/fulfillment_order.json
|
|
399
|
+
- test/fixtures/fulfillment_order_locations_for_move.json
|
|
400
|
+
- test/fixtures/fulfillment_orders.json
|
|
401
|
+
- test/fixtures/fulfillment_request.json
|
|
402
|
+
- test/fixtures/fulfillment_service.json
|
|
403
|
+
- test/fixtures/fulfillments.json
|
|
404
|
+
- test/fixtures/gift_card.json
|
|
405
|
+
- test/fixtures/gift_card_disabled.json
|
|
406
|
+
- test/fixtures/graphql/2019-10.json
|
|
407
|
+
- test/fixtures/graphql/dummy_schema.rb
|
|
408
|
+
- test/fixtures/graphql/unstable.json
|
|
409
|
+
- test/fixtures/image.json
|
|
410
|
+
- test/fixtures/images.json
|
|
411
|
+
- test/fixtures/inventory_level.json
|
|
412
|
+
- test/fixtures/inventory_levels.json
|
|
413
|
+
- test/fixtures/marketing_event.json
|
|
414
|
+
- test/fixtures/marketing_events.json
|
|
415
|
+
- test/fixtures/metafield.json
|
|
416
|
+
- test/fixtures/metafields.json
|
|
417
|
+
- test/fixtures/order.json
|
|
418
|
+
- test/fixtures/order_risk.json
|
|
419
|
+
- test/fixtures/order_risks.json
|
|
420
|
+
- test/fixtures/order_with_properties.json
|
|
421
|
+
- test/fixtures/orders.json
|
|
422
|
+
- test/fixtures/payment.json
|
|
423
|
+
- test/fixtures/payments.json
|
|
424
|
+
- test/fixtures/ping/conversation.json
|
|
425
|
+
- test/fixtures/ping/failed_delivery_confirmation.json
|
|
426
|
+
- test/fixtures/ping/message.json
|
|
427
|
+
- test/fixtures/ping/successful_delivery_confirmation.json
|
|
428
|
+
- test/fixtures/policies.json
|
|
429
|
+
- test/fixtures/price_rule.json
|
|
430
|
+
- test/fixtures/price_rules.json
|
|
431
|
+
- test/fixtures/product.json
|
|
432
|
+
- test/fixtures/product_listing.json
|
|
433
|
+
- test/fixtures/product_listing_product_ids.json
|
|
434
|
+
- test/fixtures/product_listing_product_ids2.json
|
|
435
|
+
- test/fixtures/product_listings.json
|
|
436
|
+
- test/fixtures/product_publication.json
|
|
437
|
+
- test/fixtures/product_publications.json
|
|
438
|
+
- test/fixtures/publications.json
|
|
439
|
+
- test/fixtures/recurring_application_charge.json
|
|
440
|
+
- test/fixtures/recurring_application_charge_adjustment.json
|
|
441
|
+
- test/fixtures/recurring_application_charges.json
|
|
442
|
+
- test/fixtures/redirect.json
|
|
443
|
+
- test/fixtures/refund.json
|
|
444
|
+
- test/fixtures/report.json
|
|
445
|
+
- test/fixtures/reports.json
|
|
446
|
+
- test/fixtures/script_tag.json
|
|
447
|
+
- test/fixtures/script_tags.json
|
|
448
|
+
- test/fixtures/shipping_rates.json
|
|
449
|
+
- test/fixtures/shipping_zones.json
|
|
450
|
+
- test/fixtures/shop.json
|
|
451
|
+
- test/fixtures/smart_collection.json
|
|
452
|
+
- test/fixtures/smart_collection_products.json
|
|
453
|
+
- test/fixtures/storefront_access_token.json
|
|
454
|
+
- test/fixtures/storefront_access_tokens.json
|
|
455
|
+
- test/fixtures/tags.json
|
|
456
|
+
- test/fixtures/tax_service.json
|
|
457
|
+
- test/fixtures/tender_transactions.json
|
|
458
|
+
- test/fixtures/transaction.json
|
|
459
|
+
- test/fixtures/usage_charge.json
|
|
460
|
+
- test/fixtures/usage_charges.json
|
|
461
|
+
- test/fixtures/user.json
|
|
462
|
+
- test/fixtures/users.json
|
|
463
|
+
- test/fixtures/variant.json
|
|
464
|
+
- test/fixtures/variants.json
|
|
465
|
+
- test/fixtures/webhook.json
|
|
466
|
+
- test/fixtures/webhooks.json
|
|
467
|
+
- test/fulfillment_event_test.rb
|
|
468
|
+
- test/fulfillment_order_test.rb
|
|
469
|
+
- test/fulfillment_order_test_helper.rb
|
|
470
|
+
- test/fulfillment_request_test.rb
|
|
471
|
+
- test/fulfillment_service_test.rb
|
|
472
|
+
- test/fulfillment_test.rb
|
|
473
|
+
- test/fulfillment_v2_test.rb
|
|
474
|
+
- test/gift_card_test.rb
|
|
475
|
+
- test/graphql/http_client_test.rb
|
|
476
|
+
- test/graphql_test.rb
|
|
477
|
+
- test/image_test.rb
|
|
478
|
+
- test/inventory_level_test.rb
|
|
479
|
+
- test/lib/webmock_extensions/last_request.rb
|
|
480
|
+
- test/limits_test.rb
|
|
481
|
+
- test/location_test.rb
|
|
482
|
+
- test/marketing_event_test.rb
|
|
483
|
+
- test/message_enricher_test.rb
|
|
484
|
+
- test/meta_test.rb
|
|
485
|
+
- test/metafield_test.rb
|
|
486
|
+
- test/order_risk_test.rb
|
|
487
|
+
- test/order_test.rb
|
|
488
|
+
- test/pagination_test.rb
|
|
489
|
+
- test/payment_test.rb
|
|
490
|
+
- test/policy_test.rb
|
|
491
|
+
- test/price_rule_test.rb
|
|
492
|
+
- test/product_listing_test.rb
|
|
493
|
+
- test/product_publication_test.rb
|
|
494
|
+
- test/product_test.rb
|
|
495
|
+
- test/publication_test.rb
|
|
496
|
+
- test/recurring_application_charge_test.rb
|
|
497
|
+
- test/redirect_test.rb
|
|
498
|
+
- test/refund_test.rb
|
|
499
|
+
- test/report_test.rb
|
|
500
|
+
- test/resource_feedback_test.rb
|
|
501
|
+
- test/script_tag_test.rb
|
|
502
|
+
- test/session_test.rb
|
|
503
|
+
- test/shipping_rate_test.rb
|
|
504
|
+
- test/shipping_zone_test.rb
|
|
505
|
+
- test/shop_test.rb
|
|
506
|
+
- test/smart_collection_test.rb
|
|
507
|
+
- test/storefront_access_token_test.rb
|
|
508
|
+
- test/tax_service_test.rb
|
|
509
|
+
- test/tender_transaction_test.rb
|
|
510
|
+
- test/test_helper.rb
|
|
511
|
+
- test/transaction_test.rb
|
|
512
|
+
- test/usage_charge_test.rb
|
|
513
|
+
- test/user_test.rb
|
|
514
|
+
- test/variant_test.rb
|
|
515
|
+
- test/webhook_test.rb
|
|
516
|
+
homepage: http://www.duodealer.com/partners/apps
|
|
517
|
+
licenses:
|
|
518
|
+
- MIT
|
|
519
|
+
metadata: {}
|
|
520
|
+
post_install_message:
|
|
521
|
+
rdoc_options:
|
|
522
|
+
- "--charset=UTF-8"
|
|
523
|
+
require_paths:
|
|
524
|
+
- lib
|
|
525
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
526
|
+
requirements:
|
|
527
|
+
- - ">="
|
|
528
|
+
- !ruby/object:Gem::Version
|
|
529
|
+
version: '2.4'
|
|
530
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
531
|
+
requirements:
|
|
532
|
+
- - ">="
|
|
533
|
+
- !ruby/object:Gem::Version
|
|
534
|
+
version: '0'
|
|
535
|
+
requirements: []
|
|
536
|
+
rubygems_version: 3.0.3
|
|
537
|
+
signing_key:
|
|
538
|
+
specification_version: 4
|
|
539
|
+
summary: DuodealerAPI is a lightweight gem for accessing the Duo Dealer admin GraphQL
|
|
540
|
+
web services
|
|
541
|
+
test_files: []
|