chartmogul-ruby 1.4.1 → 1.6.2
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/.travis.yml +8 -1
- data/Gemfile +2 -0
- data/LICENSE.txt +1 -1
- data/README.md +5 -3
- data/Rakefile +2 -0
- data/bin/console +1 -0
- data/changelog.md +3 -0
- data/chartmogul-ruby.gemspec +14 -11
- data/fixtures/vcr_cassettes/ChartMogul_APIResource/connection/works_in_a_threaded_environment.yml +112 -0
- data/fixtures/vcr_cassettes/ChartMogul_APIResource/connection/works_when_credentials_are_updated.yml +77 -0
- data/fixtures/vcr_cassettes/ChartMogul_Customer/API_Interactions/updates_customer_using_class_method.yml +53 -0
- data/fixtures/vcr_cassettes/ChartMogul_Plan/API_Interactions/updates_existing_plan_using_class_method.yml +164 -0
- data/fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/correctly_handles_a_422_error.yml +50 -0
- data/fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/deletes_a_plan_group.yml +293 -0
- data/fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/retrieves_existing_plan_group_by_uuid.yml +251 -0
- data/fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/returns_an_array_of_plan_groups.yml +357 -0
- data/fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/updates_existing_plan_group_name.yml +304 -0
- data/fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/updates_existing_plan_group_name_via_class_method.yml +297 -0
- data/fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/updates_existing_plan_group_plans.yml +411 -0
- data/fixtures/vcr_cassettes/ChartMogul_PlanGroups_Plans/API_interactions/given_a_plan_group_uuid_returns_an_array_of_plans_in_the_plan_group.yml +252 -0
- data/lib/chartmogul.rb +9 -2
- data/lib/chartmogul/api/actions/all.rb +2 -0
- data/lib/chartmogul/api/actions/create.rb +2 -0
- data/lib/chartmogul/api/actions/custom.rb +2 -0
- data/lib/chartmogul/api/actions/destroy.rb +2 -0
- data/lib/chartmogul/api/actions/retrieve.rb +2 -0
- data/lib/chartmogul/api/actions/update.rb +22 -0
- data/lib/chartmogul/api_resource.rb +21 -12
- data/lib/chartmogul/concerns/entries.rb +2 -0
- data/lib/chartmogul/concerns/pageable.rb +2 -0
- data/lib/chartmogul/concerns/pageable2.rb +2 -0
- data/lib/chartmogul/concerns/summary.rb +2 -0
- data/lib/chartmogul/config_attributes.rb +7 -1
- data/lib/chartmogul/configuration.rb +2 -0
- data/lib/chartmogul/customer.rb +2 -0
- data/lib/chartmogul/customer_invoices.rb +2 -0
- data/lib/chartmogul/data_source.rb +2 -0
- data/lib/chartmogul/enrichment/customer.rb +2 -0
- data/lib/chartmogul/errors/chartmogul_error.rb +2 -0
- data/lib/chartmogul/errors/configuration_error.rb +2 -0
- data/lib/chartmogul/errors/forbidden_error.rb +2 -0
- data/lib/chartmogul/errors/not_found_error.rb +2 -0
- data/lib/chartmogul/errors/resource_invalid_error.rb +2 -0
- data/lib/chartmogul/errors/schema_invalid_error.rb +2 -0
- data/lib/chartmogul/errors/server_error.rb +2 -0
- data/lib/chartmogul/errors/unauthorized_error.rb +2 -0
- data/lib/chartmogul/invoice.rb +2 -0
- data/lib/chartmogul/line_items/one_time.rb +2 -0
- data/lib/chartmogul/line_items/subscription.rb +2 -0
- data/lib/chartmogul/metrics/activity.rb +2 -0
- data/lib/chartmogul/metrics/all_key_metrics.rb +2 -0
- data/lib/chartmogul/metrics/arpa.rb +2 -0
- data/lib/chartmogul/metrics/arr.rb +2 -0
- data/lib/chartmogul/metrics/asp.rb +2 -0
- data/lib/chartmogul/metrics/base.rb +6 -2
- data/lib/chartmogul/metrics/customer_churn_rate.rb +2 -0
- data/lib/chartmogul/metrics/customer_count.rb +2 -0
- data/lib/chartmogul/metrics/ltv.rb +2 -0
- data/lib/chartmogul/metrics/mrr.rb +2 -0
- data/lib/chartmogul/metrics/mrr_churn_rate.rb +2 -0
- data/lib/chartmogul/metrics/subscription.rb +2 -0
- data/lib/chartmogul/object.rb +2 -0
- data/lib/chartmogul/ping.rb +2 -0
- data/lib/chartmogul/plan.rb +2 -0
- data/lib/chartmogul/plan_group.rb +39 -0
- data/lib/chartmogul/plan_groups/plans.rb +17 -0
- data/lib/chartmogul/resource_path.rb +6 -1
- data/lib/chartmogul/subscription.rb +2 -0
- data/lib/chartmogul/summary.rb +2 -0
- data/lib/chartmogul/transactions/payment.rb +2 -0
- data/lib/chartmogul/transactions/refund.rb +2 -0
- data/lib/chartmogul/utils/hash_snake_caser.rb +2 -0
- data/lib/chartmogul/utils/json_parser.rb +2 -0
- data/lib/chartmogul/version.rb +3 -1
- metadata +78 -28
data/lib/chartmogul/customer.rb
CHANGED
data/lib/chartmogul/invoice.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
module ChartMogul
|
|
2
4
|
module Metrics
|
|
3
5
|
def self.all(options = {})
|
|
@@ -40,11 +42,13 @@ module ChartMogul
|
|
|
40
42
|
|
|
41
43
|
def self.preprocess_params(options)
|
|
42
44
|
%i[start_date end_date].each do |param_name|
|
|
43
|
-
|
|
45
|
+
if options[param_name]
|
|
46
|
+
options[param_name.to_s.tr('_', '-')] = options.delete(param_name)
|
|
47
|
+
end
|
|
44
48
|
end
|
|
45
49
|
|
|
46
50
|
%i[geo plans].each do |param_name|
|
|
47
|
-
if options[param_name]
|
|
51
|
+
if options[param_name]&.is_a?(Array)
|
|
48
52
|
options[param_name] = options[param_name].join(',')
|
|
49
53
|
end
|
|
50
54
|
end
|
data/lib/chartmogul/object.rb
CHANGED
data/lib/chartmogul/ping.rb
CHANGED
data/lib/chartmogul/plan.rb
CHANGED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module ChartMogul
|
|
4
|
+
class PlanGroup < APIResource
|
|
5
|
+
set_resource_name 'PlanGroup'
|
|
6
|
+
set_resource_path '/v1/plan_groups'
|
|
7
|
+
|
|
8
|
+
readonly_attr :uuid
|
|
9
|
+
readonly_attr :plans_count
|
|
10
|
+
|
|
11
|
+
writeable_attr :name
|
|
12
|
+
writeable_attr :plans, default: []
|
|
13
|
+
|
|
14
|
+
include API::Actions::Create
|
|
15
|
+
include API::Actions::Destroy
|
|
16
|
+
include API::Actions::Retrieve
|
|
17
|
+
include API::Actions::Update
|
|
18
|
+
|
|
19
|
+
def self.all(options = {})
|
|
20
|
+
PlanGroups.all(options)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def serialize_plans
|
|
24
|
+
plans.map(&:uuid)
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
class PlanGroups < APIResource
|
|
28
|
+
set_resource_name 'PlanGroups'
|
|
29
|
+
set_resource_path '/v1/plan_groups'
|
|
30
|
+
|
|
31
|
+
set_resource_root_key :plan_groups
|
|
32
|
+
|
|
33
|
+
include Concerns::Entries
|
|
34
|
+
include Concerns::Pageable2
|
|
35
|
+
|
|
36
|
+
set_entry_class PlanGroup
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module ChartMogul
|
|
4
|
+
module PlanGroups
|
|
5
|
+
class Plans < APIResource
|
|
6
|
+
set_resource_name 'Plans'
|
|
7
|
+
set_resource_path '/v1/plan_groups/:plan_group_uuid/plans'
|
|
8
|
+
|
|
9
|
+
set_resource_root_key :plans
|
|
10
|
+
|
|
11
|
+
include Concerns::Entries
|
|
12
|
+
include Concerns::Pageable2
|
|
13
|
+
|
|
14
|
+
set_entry_class Plan
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
require 'uri'
|
|
2
4
|
|
|
3
5
|
module ChartMogul
|
|
@@ -33,7 +35,10 @@ module ChartMogul
|
|
|
33
35
|
def apply_named_params(params)
|
|
34
36
|
path.dup.tap do |path|
|
|
35
37
|
named_params.each do |named_param, param_key|
|
|
36
|
-
|
|
38
|
+
unless params.key?(param_key)
|
|
39
|
+
raise(RequiredParameterMissing, "#{named_param} is required")
|
|
40
|
+
end
|
|
41
|
+
|
|
37
42
|
path.gsub!(named_param, params[param_key].to_s)
|
|
38
43
|
end
|
|
39
44
|
end
|
data/lib/chartmogul/summary.rb
CHANGED
data/lib/chartmogul/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chartmogul-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Petr Kopac
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-07-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -16,42 +16,56 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.17.3
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.17.3
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: bundler
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2
|
|
33
|
+
version: '2'
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 2
|
|
40
|
+
version: '2'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: pry
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 0.12.2
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 0.12.2
|
|
41
55
|
- !ruby/object:Gem::Dependency
|
|
42
56
|
name: rake
|
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
|
44
58
|
requirements:
|
|
45
59
|
- - "~>"
|
|
46
60
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
61
|
+
version: '13.0'
|
|
48
62
|
type: :development
|
|
49
63
|
prerelease: false
|
|
50
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
65
|
requirements:
|
|
52
66
|
- - "~>"
|
|
53
67
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
68
|
+
version: '13.0'
|
|
55
69
|
- !ruby/object:Gem::Dependency
|
|
56
70
|
name: rspec
|
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -67,70 +81,92 @@ dependencies:
|
|
|
67
81
|
- !ruby/object:Gem::Version
|
|
68
82
|
version: '3.0'
|
|
69
83
|
- !ruby/object:Gem::Dependency
|
|
70
|
-
name:
|
|
84
|
+
name: rubocop
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - '='
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0.79'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - '='
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0.79'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: rubocop-rspec
|
|
71
99
|
requirement: !ruby/object:Gem::Requirement
|
|
72
100
|
requirements:
|
|
73
101
|
- - "~>"
|
|
74
102
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '
|
|
103
|
+
version: '1.38'
|
|
76
104
|
type: :development
|
|
77
105
|
prerelease: false
|
|
78
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
107
|
requirements:
|
|
80
108
|
- - "~>"
|
|
81
109
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '
|
|
110
|
+
version: '1.38'
|
|
83
111
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name:
|
|
112
|
+
name: rubocop-thread_safety
|
|
85
113
|
requirement: !ruby/object:Gem::Requirement
|
|
86
114
|
requirements:
|
|
87
115
|
- - "~>"
|
|
88
116
|
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
90
|
-
- - ">="
|
|
91
|
-
- !ruby/object:Gem::Version
|
|
92
|
-
version: 3.4.2
|
|
117
|
+
version: 0.3.4
|
|
93
118
|
type: :development
|
|
94
119
|
prerelease: false
|
|
95
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
96
121
|
requirements:
|
|
97
122
|
- - "~>"
|
|
98
123
|
- !ruby/object:Gem::Version
|
|
99
|
-
version:
|
|
100
|
-
- - ">="
|
|
101
|
-
- !ruby/object:Gem::Version
|
|
102
|
-
version: 3.4.2
|
|
124
|
+
version: 0.3.4
|
|
103
125
|
- !ruby/object:Gem::Dependency
|
|
104
126
|
name: simplecov
|
|
105
127
|
requirement: !ruby/object:Gem::Requirement
|
|
106
128
|
requirements:
|
|
107
129
|
- - "~>"
|
|
108
130
|
- !ruby/object:Gem::Version
|
|
109
|
-
version: 0.
|
|
131
|
+
version: 0.17.1
|
|
110
132
|
type: :development
|
|
111
133
|
prerelease: false
|
|
112
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
113
135
|
requirements:
|
|
114
136
|
- - "~>"
|
|
115
137
|
- !ruby/object:Gem::Version
|
|
116
|
-
version: 0.
|
|
138
|
+
version: 0.17.1
|
|
117
139
|
- !ruby/object:Gem::Dependency
|
|
118
|
-
name:
|
|
140
|
+
name: vcr
|
|
119
141
|
requirement: !ruby/object:Gem::Requirement
|
|
120
142
|
requirements:
|
|
121
143
|
- - "~>"
|
|
122
144
|
- !ruby/object:Gem::Version
|
|
123
|
-
version:
|
|
145
|
+
version: '5.1'
|
|
124
146
|
type: :development
|
|
125
147
|
prerelease: false
|
|
126
148
|
version_requirements: !ruby/object:Gem::Requirement
|
|
127
149
|
requirements:
|
|
128
150
|
- - "~>"
|
|
129
151
|
- !ruby/object:Gem::Version
|
|
130
|
-
version:
|
|
152
|
+
version: '5.1'
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: webmock
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - "~>"
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '3.8'
|
|
160
|
+
type: :development
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - "~>"
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '3.8'
|
|
131
167
|
description: Official Ruby client for ChartMogul's API
|
|
132
168
|
email:
|
|
133
|
-
-
|
|
169
|
+
- petr@chartmogul.com
|
|
134
170
|
executables: []
|
|
135
171
|
extensions: []
|
|
136
172
|
extra_rdoc_files: []
|
|
@@ -146,6 +182,8 @@ files:
|
|
|
146
182
|
- bin/setup
|
|
147
183
|
- changelog.md
|
|
148
184
|
- chartmogul-ruby.gemspec
|
|
185
|
+
- fixtures/vcr_cassettes/ChartMogul_APIResource/connection/works_in_a_threaded_environment.yml
|
|
186
|
+
- fixtures/vcr_cassettes/ChartMogul_APIResource/connection/works_when_credentials_are_updated.yml
|
|
149
187
|
- fixtures/vcr_cassettes/ChartMogul_Customer/API_Interactions/adds_custom_attributes.yml
|
|
150
188
|
- fixtures/vcr_cassettes/ChartMogul_Customer/API_Interactions/adds_required_tags.yml
|
|
151
189
|
- fixtures/vcr_cassettes/ChartMogul_Customer/API_Interactions/can_page_through_search_endpoint.yml
|
|
@@ -162,6 +200,7 @@ files:
|
|
|
162
200
|
- fixtures/vcr_cassettes/ChartMogul_Customer/API_Interactions/returns_right_customers_through_search_endpoint.yml
|
|
163
201
|
- fixtures/vcr_cassettes/ChartMogul_Customer/API_Interactions/updates_custom_attributes.yml
|
|
164
202
|
- fixtures/vcr_cassettes/ChartMogul_Customer/API_Interactions/updates_customer.yml
|
|
203
|
+
- fixtures/vcr_cassettes/ChartMogul_Customer/API_Interactions/updates_customer_using_class_method.yml
|
|
165
204
|
- fixtures/vcr_cassettes/ChartMogul_Customer/_find_by_external_id/when_external_id_is_provided/returns_matching_user_if_exists.yml
|
|
166
205
|
- fixtures/vcr_cassettes/ChartMogul_Customer/_find_by_external_id/when_external_id_is_provided/returns_nil_if_customer_does_not_exist.yml
|
|
167
206
|
- fixtures/vcr_cassettes/ChartMogul_CustomerInvoices/API_Interactions/correctly_interracts_with_the_API.yml
|
|
@@ -204,6 +243,15 @@ files:
|
|
|
204
243
|
- fixtures/vcr_cassettes/ChartMogul_Plan/API_Interactions/deletes_existing_plan.yml
|
|
205
244
|
- fixtures/vcr_cassettes/ChartMogul_Plan/API_Interactions/retrieves_existing_plan_by_uuid.yml
|
|
206
245
|
- fixtures/vcr_cassettes/ChartMogul_Plan/API_Interactions/updates_existing_plan.yml
|
|
246
|
+
- fixtures/vcr_cassettes/ChartMogul_Plan/API_Interactions/updates_existing_plan_using_class_method.yml
|
|
247
|
+
- fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/correctly_handles_a_422_error.yml
|
|
248
|
+
- fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/deletes_a_plan_group.yml
|
|
249
|
+
- fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/retrieves_existing_plan_group_by_uuid.yml
|
|
250
|
+
- fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/returns_an_array_of_plan_groups.yml
|
|
251
|
+
- fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/updates_existing_plan_group_name.yml
|
|
252
|
+
- fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/updates_existing_plan_group_name_via_class_method.yml
|
|
253
|
+
- fixtures/vcr_cassettes/ChartMogul_PlanGroup/API_interactions/updates_existing_plan_group_plans.yml
|
|
254
|
+
- fixtures/vcr_cassettes/ChartMogul_PlanGroups_Plans/API_interactions/given_a_plan_group_uuid_returns_an_array_of_plans_in_the_plan_group.yml
|
|
207
255
|
- fixtures/vcr_cassettes/ChartMogul_Subscription/API_Interactions/connects_subscriptions.yml
|
|
208
256
|
- fixtures/vcr_cassettes/ChartMogul_Subscription/API_Interactions/correctly_interracts_with_the_API.yml
|
|
209
257
|
- fixtures/vcr_cassettes/ChartMogul_Subscription/API_Interactions/has_multiple_aliases.yml
|
|
@@ -256,6 +304,8 @@ files:
|
|
|
256
304
|
- lib/chartmogul/object.rb
|
|
257
305
|
- lib/chartmogul/ping.rb
|
|
258
306
|
- lib/chartmogul/plan.rb
|
|
307
|
+
- lib/chartmogul/plan_group.rb
|
|
308
|
+
- lib/chartmogul/plan_groups/plans.rb
|
|
259
309
|
- lib/chartmogul/resource_path.rb
|
|
260
310
|
- lib/chartmogul/subscription.rb
|
|
261
311
|
- lib/chartmogul/summary.rb
|
|
@@ -284,7 +334,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
284
334
|
- !ruby/object:Gem::Version
|
|
285
335
|
version: '0'
|
|
286
336
|
requirements: []
|
|
287
|
-
rubygems_version: 3.0.
|
|
337
|
+
rubygems_version: 3.0.8
|
|
288
338
|
signing_key:
|
|
289
339
|
specification_version: 4
|
|
290
340
|
summary: Chartmogul API Ruby Client
|