action_kit_rest 0.4.4 → 0.4.8
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/.github/workflows/ci.yml +24 -0
- data/.rubocop.yml +26 -0
- data/.ruby-version +1 -1
- data/Gemfile +11 -9
- data/README.md +2 -2
- data/Rakefile +15 -18
- data/action_kit_rest.gemspec +28 -34
- data/lib/action_kit_rest/action.rb +3 -1
- data/lib/action_kit_rest/actions/event_create_action.rb +5 -3
- data/lib/action_kit_rest/actions/event_signup_action.rb +6 -3
- data/lib/action_kit_rest/actions/unsubscribe_action.rb +3 -1
- data/lib/action_kit_rest/allowed_user_field.rb +3 -1
- data/lib/action_kit_rest/api.rb +9 -7
- data/lib/action_kit_rest/base.rb +5 -4
- data/lib/action_kit_rest/client.rb +5 -3
- data/lib/action_kit_rest/event.rb +3 -1
- data/lib/action_kit_rest/event_signup.rb +3 -1
- data/lib/action_kit_rest/language.rb +3 -1
- data/lib/action_kit_rest/list.rb +3 -1
- data/lib/action_kit_rest/page.rb +4 -2
- data/lib/action_kit_rest/pages/base.rb +4 -5
- data/lib/action_kit_rest/pages/donation_page.rb +3 -1
- data/lib/action_kit_rest/pages/event_campaign_page.rb +4 -2
- data/lib/action_kit_rest/pages/import_page.rb +3 -1
- data/lib/action_kit_rest/pages/signup_page.rb +3 -1
- data/lib/action_kit_rest/pages/unsubscribe_page.rb +3 -1
- data/lib/action_kit_rest/phone.rb +2 -0
- data/lib/action_kit_rest/railties.rb +3 -1
- data/lib/action_kit_rest/response/collection.rb +4 -4
- data/lib/action_kit_rest/response/raise_error.rb +15 -12
- data/lib/action_kit_rest/response/validation_error.rb +20 -9
- data/lib/action_kit_rest/response/wrapper.rb +10 -10
- data/lib/action_kit_rest/tag.rb +6 -6
- data/lib/action_kit_rest/user.rb +3 -1
- data/lib/action_kit_rest/version.rb +3 -1
- data/lib/action_kit_rest.rb +2 -0
- data/spec/lib/action_kit_rest/actions/event_create_action_spec.rb +6 -4
- data/spec/lib/action_kit_rest/actions/event_signup_action_spec.rb +6 -4
- data/spec/lib/action_kit_rest/allowed_user_field_spec.rb +9 -7
- data/spec/lib/action_kit_rest/api_spec.rb +103 -0
- data/spec/lib/action_kit_rest/logger_spec.rb +7 -5
- data/spec/lib/action_kit_rest/page_spec.rb +28 -28
- data/spec/lib/action_kit_rest/pages/event_campaign_page_spec.rb +25 -20
- data/spec/lib/action_kit_rest/pages/import_page_spec.rb +21 -17
- data/spec/lib/action_kit_rest/response/collection_spec.rb +13 -11
- data/spec/lib/action_kit_rest/response/validation_error_spec.rb +16 -4
- data/spec/lib/action_kit_rest/response/wrapper_spec.rb +6 -4
- data/spec/lib/action_kit_rest/user_spec.rb +11 -9
- data/spec/spec_helper.rb +6 -4
- data/spec/support/shared_contexts/stub_logger.rb +4 -2
- metadata +64 -54
- data/.travis.yml +0 -3
@@ -1,34 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
require 'support/shared_contexts/stub_logger'
|
3
5
|
|
4
6
|
describe ActionKitRest::Pages::EventCampaignPage do
|
5
|
-
include_context
|
7
|
+
include_context 'stub_logger'
|
6
8
|
|
7
9
|
describe 'create' do
|
8
|
-
let(:actionkit) { ActionKitRest.new(host: 'test.com')
|
10
|
+
let(:actionkit) { ActionKitRest.new(host: 'test.com') }
|
9
11
|
|
10
|
-
let(:event_campaign_title) {
|
11
|
-
let(:event_campaign_name) {
|
12
|
+
let(:event_campaign_title) { 'Climate Change Paris 2015' }
|
13
|
+
let(:event_campaign_name) { 'climate-change-paris-2015' }
|
12
14
|
|
13
15
|
before :each do
|
14
16
|
stub_request(:post, 'https://test.com/rest/v1/campaign/')
|
15
17
|
.with(body: "{\"title\":\"#{event_campaign_title}\",\"name\":\"#{event_campaign_name}\"}")
|
16
|
-
.to_return({status: '200', headers: {location: 'https://test.com/rest/v1/campaign/88/'} })
|
18
|
+
.to_return({ status: '200', headers: { location: 'https://test.com/rest/v1/campaign/88/' } })
|
17
19
|
|
18
20
|
stub_request(:get, 'https://test.com/rest/v1/campaign/88/')
|
19
|
-
.to_return({body: fixture('page/campaign.json'), status: '200',
|
21
|
+
.to_return({ body: fixture('page/campaign.json'), status: '200',
|
22
|
+
headers: { content_type: 'application/json; charset=utf-8' } })
|
20
23
|
|
21
24
|
stub_request(:post, 'https://test.com/rest/v1/eventcreatepage/')
|
22
|
-
.with(:
|
23
|
-
.to_return({status: '200', headers: {location:
|
25
|
+
.with(body: '{"campaign":"/rest/v1/campaign/88/","name":"climate-change-paris-2015-event-create","title":"Climate Change Paris 2015: event create","tags":["/rest/v1/tag/1/","/rest/v1/tag/5/"]}')
|
26
|
+
.to_return({ status: '200', headers: { location: 'https://test.com/rest/v1/eventcreatepage/99/' } })
|
24
27
|
|
25
28
|
stub_request(:post, 'https://test.com/rest/v1/eventsignuppage/')
|
26
|
-
.with(:
|
27
|
-
.to_return({status: '200', headers: {location:
|
29
|
+
.with(body: '{"campaign":"/rest/v1/campaign/88/","name":"climate-change-paris-2015-event-signup","title":"Climate Change Paris 2015: event signup","tags":["/rest/v1/tag/1/","/rest/v1/tag/5/"]}')
|
30
|
+
.to_return({ status: '200', headers: { location: 'https://test.com/rest/v1/eventsignuppage/111/' } })
|
28
31
|
end
|
29
32
|
|
30
33
|
it 'should create an event campaign' do
|
31
|
-
resp = actionkit.event_campaign_page.create({title: 'Climate Change Paris 2015',
|
34
|
+
resp = actionkit.event_campaign_page.create({ title: 'Climate Change Paris 2015',
|
35
|
+
name: 'climate-change-paris-2015', event_pages_tags: ['/rest/v1/tag/1/', '/rest/v1/tag/5/'] })
|
32
36
|
expect(resp.title).to eq event_campaign_title
|
33
37
|
expect(resp.name).to eq event_campaign_name
|
34
38
|
|
@@ -37,7 +41,8 @@ describe ActionKitRest::Pages::EventCampaignPage do
|
|
37
41
|
end
|
38
42
|
|
39
43
|
it 'should create associated event and signup create pages' do
|
40
|
-
resp = actionkit.event_campaign_page.create({title: 'Climate Change Paris 2015',
|
44
|
+
resp = actionkit.event_campaign_page.create({ title: 'Climate Change Paris 2015',
|
45
|
+
name: 'climate-change-paris-2015', event_pages_tags: ['/rest/v1/tag/1/', '/rest/v1/tag/5/'] })
|
41
46
|
expect(resp.event_create_page_name).to eq 'climate-change-paris-2015-event-create'
|
42
47
|
expect(resp.event_signup_page_name).to eq 'climate-change-paris-2015-event-signup'
|
43
48
|
|
@@ -47,18 +52,18 @@ describe ActionKitRest::Pages::EventCampaignPage do
|
|
47
52
|
end
|
48
53
|
|
49
54
|
describe 'find' do
|
50
|
-
let(:actionkit) { ActionKitRest.new(host: 'test.com')
|
55
|
+
let(:actionkit) { ActionKitRest.new(host: 'test.com') }
|
51
56
|
|
52
|
-
let(:event_campaign_title) {
|
53
|
-
let(:event_campaign_name) {
|
57
|
+
let(:event_campaign_title) { 'Climate Change Paris 2015' }
|
58
|
+
let(:event_campaign_name) { 'climate-change-paris-2015' }
|
54
59
|
|
55
60
|
before :each do
|
56
61
|
stub_request(:get, 'https://test.com/rest/v1/campaign/?name=climate-change-paris-2015')
|
57
|
-
.to_return(body: fixture('page/find_campaign.json'), status: '200', headers: {content_type:
|
58
|
-
stub_request(:get,
|
59
|
-
.to_return(body: fixture('page/find_event_create.json'), status: '200', headers: {content_type:
|
60
|
-
stub_request(:get,
|
61
|
-
.to_return(body: fixture('page/find_event_signup.json'), status: '200', headers: {content_type:
|
62
|
+
.to_return(body: fixture('page/find_campaign.json'), status: '200', headers: { content_type: 'application/json; charset=utf-8' })
|
63
|
+
stub_request(:get, 'https://test.com/rest/v1/eventcreatepage/?name=climate-change-paris-2015-event-create')
|
64
|
+
.to_return(body: fixture('page/find_event_create.json'), status: '200', headers: { content_type: 'application/json; charset=utf-8' })
|
65
|
+
stub_request(:get, 'https://test.com/rest/v1/eventsignuppage/?name=climate-change-paris-2015-event-signup')
|
66
|
+
.to_return(body: fixture('page/find_event_signup.json'), status: '200', headers: { content_type: 'application/json; charset=utf-8' })
|
62
67
|
end
|
63
68
|
|
64
69
|
it 'should retrieve event campaign by name' do
|
@@ -1,27 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
require 'support/shared_contexts/stub_logger'
|
3
5
|
|
4
6
|
describe ActionKitRest::Pages::ImportPage do
|
5
|
-
include_context
|
7
|
+
include_context 'stub_logger'
|
6
8
|
|
7
|
-
let(:actionkit) { ActionKitRest.new(host: 'test.com')
|
9
|
+
let(:actionkit) { ActionKitRest.new(host: 'test.com') }
|
8
10
|
let(:status) { 200 }
|
9
11
|
|
10
|
-
describe
|
11
|
-
let(:body) {
|
12
|
-
let(:request_body) { {title:
|
12
|
+
describe 'create' do
|
13
|
+
let(:body) { '' }
|
14
|
+
let(:request_body) { { title: 'Title', name: 'name' }.to_json }
|
13
15
|
let(:request_path) { 'importpage/' }
|
14
16
|
|
15
17
|
before(:each) do
|
16
|
-
stub_post(request_path).with(body: request_body).to_return(:
|
17
|
-
:
|
18
|
+
stub_post(request_path).with(body: request_body).to_return(body: body, status: status,
|
19
|
+
headers: { location: 'https://test.com/rest/v1/importpage/1093/', content_type: 'application/json; charset=utf-8' })
|
18
20
|
|
19
|
-
stub_request(:get,
|
21
|
+
stub_request(:get, 'https://test.com/rest/v1/importpage/1093/').to_return(body: fixture('page/object.json'),
|
22
|
+
status: '200', headers: { content_type: 'application/json; charset=utf-8' })
|
20
23
|
end
|
21
24
|
|
22
|
-
describe
|
23
|
-
it
|
24
|
-
resp = actionkit.import_page.create(title:
|
25
|
+
describe '.create' do
|
26
|
+
it 'should allow creation' do
|
27
|
+
resp = actionkit.import_page.create(title: 'Title', name: 'name')
|
25
28
|
expect(resp.title).to eq 'Demand a Sustainable USDA'
|
26
29
|
end
|
27
30
|
end
|
@@ -29,21 +32,22 @@ describe ActionKitRest::Pages::ImportPage do
|
|
29
32
|
|
30
33
|
describe 'update' do
|
31
34
|
let(:body) { '' }
|
32
|
-
let(:request_body) { {title:
|
35
|
+
let(:request_body) { { title: 'Title', name: 'name' }.to_json }
|
33
36
|
let(:request_path) { 'importpage/1093/' }
|
34
37
|
|
35
38
|
before(:each) do
|
36
|
-
stub_put(request_path).with(body: request_body).to_return(:
|
37
|
-
|
39
|
+
stub_put(request_path).with(body: request_body).to_return(body: body, status: status,
|
40
|
+
headers: { content_type: 'application/json; charset=utf-8' })
|
38
41
|
|
39
|
-
stub_request(:get,
|
42
|
+
stub_request(:get, 'https://test.com/rest/v1/importpage/1093/').to_return(body: fixture('page/object.json'),
|
43
|
+
status: '200', headers: { content_type: 'application/json; charset=utf-8' })
|
40
44
|
end
|
41
45
|
|
42
46
|
describe '.update' do
|
43
47
|
it 'should allow updates' do
|
44
|
-
resp = actionkit.import_page.update('1093', title:
|
48
|
+
resp = actionkit.import_page.update('1093', title: 'Title', name: 'name')
|
45
49
|
expect(resp.title).to eq 'Demand a Sustainable USDA'
|
46
50
|
end
|
47
51
|
end
|
48
52
|
end
|
49
|
-
end
|
53
|
+
end
|
@@ -1,26 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
|
-
describe ActionKitRest::Response::Collection
|
4
|
-
let(:meta) { double
|
5
|
-
let(:objects) { double
|
5
|
+
describe ActionKitRest::Response::Collection do
|
6
|
+
let(:meta) { double }
|
7
|
+
let(:objects) { double }
|
6
8
|
subject { ActionKitRest::Response::Collection.new(meta, objects) }
|
7
9
|
|
8
10
|
describe 'initialization' do
|
9
11
|
it 'should set meta and objects' do
|
10
|
-
subject.meta.
|
11
|
-
subject.objects.
|
12
|
+
expect(subject.meta).to eq(meta)
|
13
|
+
expect(subject.objects).to eq(objects)
|
12
14
|
end
|
13
15
|
end
|
14
16
|
|
15
17
|
describe 'each' do
|
16
18
|
let(:item1) { double }
|
17
19
|
let(:item2) { double }
|
18
|
-
let(:objects) { [
|
20
|
+
let(:objects) { [item1, item2] }
|
19
21
|
|
20
|
-
it
|
21
|
-
subject.count.
|
22
|
-
subject.any? { |i| i == item1 }
|
23
|
-
subject.any? { |i| i == item2 }
|
22
|
+
it 'should return all collection items' do
|
23
|
+
expect(subject.count).to eq(2)
|
24
|
+
expect(subject.any? { |i| i == item1 }).to be_truthy
|
25
|
+
expect(subject.any? { |i| i == item2 }).to be_truthy
|
24
26
|
end
|
25
27
|
end
|
26
|
-
end
|
28
|
+
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe ActionKitRest::Response::ValidationError do
|
@@ -6,8 +8,8 @@ describe ActionKitRest::Response::ValidationError do
|
|
6
8
|
|
7
9
|
context 'with a normal URL and body' do
|
8
10
|
let(:url) { 'https://actionkit.example.com/rest/v1/page/1' }
|
9
|
-
let(:errors) { {'zip' => 'invalid zip code'} }
|
10
|
-
let(:body) { {errors: errors}.to_json }
|
11
|
+
let(:errors) { { 'zip' => 'invalid zip code' } }
|
12
|
+
let(:body) { { errors: errors }.to_json }
|
11
13
|
|
12
14
|
it 'should put information in the string' do
|
13
15
|
expect(subject.to_s).to eq "ActionKitRest::Response::ValidationError \n url: #{url} \n body: #{body} \n errors: #{errors.inspect}"
|
@@ -16,12 +18,22 @@ describe ActionKitRest::Response::ValidationError do
|
|
16
18
|
|
17
19
|
context 'with special characters in the body' do
|
18
20
|
let(:url) { 'https://actionkit.example.com/rest/v1/page/1' }
|
19
|
-
let(:errors) { {'zip' => '☃'} }
|
20
|
-
let(:body) { {errors: errors}.to_json }
|
21
|
+
let(:errors) { { 'zip' => '☃' } }
|
22
|
+
let(:body) { { errors: errors }.to_json }
|
21
23
|
|
22
24
|
it 'should put information in the string' do
|
23
25
|
expect(subject.to_s).to eq "ActionKitRest::Response::ValidationError \n url: #{url} \n body: #{body} \n errors: #{errors.inspect}"
|
24
26
|
end
|
25
27
|
end
|
28
|
+
|
29
|
+
context 'with a body in ASCII-8BIT format' do
|
30
|
+
let(:url) { 'https://actionkit.example.com/rest/v1/page/1' }
|
31
|
+
let(:errors) { {'mailing_id' => ['לא הצלחנו לקשר בין מספר הזיהוי של רשימת הדיוור הזו לבין החשבון.']} }
|
32
|
+
let(:body) { { errors: errors }.to_json.b }
|
33
|
+
|
34
|
+
it 'should put information in the string' do
|
35
|
+
expect(subject.to_s).to eq "ActionKitRest::Response::ValidationError \n url: #{url} \n body: {\"errors\":#{errors.to_json}} \n errors: #{errors.inspect}"
|
36
|
+
end
|
37
|
+
end
|
26
38
|
end
|
27
39
|
end
|
@@ -1,10 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe ActionKitRest::Response::Wrapper do
|
4
6
|
describe 'initialization' do
|
5
7
|
it "should be kind 'object' for objects" do
|
6
8
|
body = double
|
7
|
-
response = double(:
|
9
|
+
response = double(body: body)
|
8
10
|
|
9
11
|
wrapper = ActionKitRest::Response::Wrapper.new(response)
|
10
12
|
|
@@ -13,8 +15,8 @@ describe ActionKitRest::Response::Wrapper do
|
|
13
15
|
end
|
14
16
|
|
15
17
|
it "should be kind 'collection' for collections" do
|
16
|
-
body = double(:
|
17
|
-
response = double(:
|
18
|
+
body = double(meta: '', objects: [])
|
19
|
+
response = double(body: body)
|
18
20
|
|
19
21
|
wrapper = ActionKitRest::Response::Wrapper.new(response)
|
20
22
|
|
@@ -22,4 +24,4 @@ describe ActionKitRest::Response::Wrapper do
|
|
22
24
|
wrapper.collection?.should be_truthy
|
23
25
|
end
|
24
26
|
end
|
25
|
-
end
|
27
|
+
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe ActionKitRest::User do
|
@@ -11,16 +13,16 @@ describe ActionKitRest::User do
|
|
11
13
|
|
12
14
|
subject { ActionKitRest.new(host: 'test.com') }
|
13
15
|
|
14
|
-
describe
|
16
|
+
describe 'retrieval' do
|
15
17
|
let(:request_path) { 'user/1/' }
|
16
18
|
|
17
19
|
context 'without basic auth' do
|
18
20
|
before(:each) do
|
19
|
-
stub_get(request_path).to_return(:
|
20
|
-
:
|
21
|
+
stub_get(request_path).to_return(body: body, status: status,
|
22
|
+
headers: { content_type: 'application/json; charset=utf-8' })
|
21
23
|
end
|
22
24
|
|
23
|
-
describe
|
25
|
+
describe '.get' do
|
24
26
|
let(:status) { 200 }
|
25
27
|
|
26
28
|
context 'without phones' do
|
@@ -36,9 +38,9 @@ describe ActionKitRest::User do
|
|
36
38
|
let(:phone_body) { fixture('phone/object.json') }
|
37
39
|
|
38
40
|
it 'should include phones' do
|
39
|
-
stub_get('phone/?user=1').to_return(:
|
41
|
+
stub_get('phone/?user=1').to_return(body: phone_body, status: 200)
|
40
42
|
expect(subject.user.get(1).phones.count).to eq 3
|
41
|
-
expect(subject.user.get(1).phones.map(&:phone)).to match_array([
|
43
|
+
expect(subject.user.get(1).phones.map(&:phone)).to match_array(%w[7755555555 7755555577 310-310-3310])
|
42
44
|
end
|
43
45
|
end
|
44
46
|
end
|
@@ -47,7 +49,7 @@ describe ActionKitRest::User do
|
|
47
49
|
let(:body) { '' }
|
48
50
|
let(:status) { 404 }
|
49
51
|
|
50
|
-
it
|
52
|
+
it 'should raise an exception' do
|
51
53
|
expect { subject.user.get(1) }.to raise_error(ActionKitRest::Response::NotFound)
|
52
54
|
end
|
53
55
|
end
|
@@ -59,8 +61,8 @@ describe ActionKitRest::User do
|
|
59
61
|
subject { ActionKitRest.new(host: 'test.com', username: 'alice', password: 'somesecret') }
|
60
62
|
|
61
63
|
before(:each) do
|
62
|
-
stub_get(request_path).with(basic_auth: [
|
63
|
-
|
64
|
+
stub_get(request_path).with(basic_auth: %w[alice somesecret])
|
65
|
+
.to_return(body: body, status: 200, headers: { content_type: 'application/json; charset=utf-8' })
|
64
66
|
end
|
65
67
|
|
66
68
|
it 'should return a user object' do
|
data/spec/spec_helper.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'rspec'
|
2
4
|
require 'webmock/rspec'
|
3
5
|
|
@@ -16,11 +18,11 @@ RSpec.configure do |config|
|
|
16
18
|
end
|
17
19
|
|
18
20
|
config.mock_with :rspec do |mocks|
|
19
|
-
mocks.syntax = [
|
21
|
+
mocks.syntax = %i[should expect]
|
20
22
|
end
|
21
23
|
|
22
24
|
config.expect_with :rspec do |c|
|
23
|
-
c.syntax = [
|
25
|
+
c.syntax = %i[should expect]
|
24
26
|
end
|
25
27
|
end
|
26
28
|
|
@@ -37,11 +39,11 @@ def stub_put(path)
|
|
37
39
|
end
|
38
40
|
|
39
41
|
def stub_action_kit_request(method, path)
|
40
|
-
stub_request(method,
|
42
|
+
stub_request(method, "https://test.com/rest/v1/#{path}")
|
41
43
|
end
|
42
44
|
|
43
45
|
def fixture_path
|
44
|
-
File.expand_path(
|
46
|
+
File.expand_path('fixtures', __dir__)
|
45
47
|
end
|
46
48
|
|
47
49
|
def fixture(file)
|
@@ -1,4 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
shared_context 'stub_logger' do
|
2
4
|
before(:each) do
|
3
5
|
logger = double
|
4
6
|
allow(logger).to receive(:debug).and_return(true)
|
@@ -6,4 +8,4 @@ shared_context "stub_logger" do
|
|
6
8
|
allow(ActionKitRest).to receive(:logger).and_return(logger)
|
7
9
|
allow(Vertebrae::Base).to receive(:logger).and_return(logger)
|
8
10
|
end
|
9
|
-
end
|
11
|
+
end
|
metadata
CHANGED
@@ -1,59 +1,51 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: action_kit_rest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathan Woodhull
|
8
8
|
- Diego Marcet
|
9
|
-
-
|
9
|
+
- Grey Moore
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2021-10-07 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: vertebrae
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
18
18
|
requirements:
|
19
|
-
- - "
|
19
|
+
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.
|
21
|
+
version: 0.6.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
|
-
- - "
|
26
|
+
- - ">="
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 0.
|
28
|
+
version: 0.6.0
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
|
-
name:
|
30
|
+
name: bundler
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
|
-
- - "
|
34
|
-
- !ruby/object:Gem::Version
|
35
|
-
version: '3.7'
|
36
|
-
type: :development
|
37
|
-
prerelease: false
|
38
|
-
version_requirements: !ruby/object:Gem::Requirement
|
39
|
-
requirements:
|
40
|
-
- - "~>"
|
33
|
+
- - ">="
|
41
34
|
- !ruby/object:Gem::Version
|
42
|
-
version: '
|
43
|
-
-
|
44
|
-
name: webmock
|
45
|
-
requirement: !ruby/object:Gem::Requirement
|
46
|
-
requirements:
|
47
|
-
- - "~>"
|
35
|
+
version: '2.0'
|
36
|
+
- - "<"
|
48
37
|
- !ruby/object:Gem::Version
|
49
|
-
version: '3.
|
38
|
+
version: '3.0'
|
50
39
|
type: :development
|
51
40
|
prerelease: false
|
52
41
|
version_requirements: !ruby/object:Gem::Requirement
|
53
42
|
requirements:
|
54
|
-
- - "
|
43
|
+
- - ">="
|
55
44
|
- !ruby/object:Gem::Version
|
56
|
-
version: '
|
45
|
+
version: '2.0'
|
46
|
+
- - "<"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '3.0'
|
57
49
|
- !ruby/object:Gem::Dependency
|
58
50
|
name: byebug
|
59
51
|
requirement: !ruby/object:Gem::Requirement
|
@@ -69,32 +61,32 @@ dependencies:
|
|
69
61
|
- !ruby/object:Gem::Version
|
70
62
|
version: '0'
|
71
63
|
- !ruby/object:Gem::Dependency
|
72
|
-
name:
|
64
|
+
name: em-http-request
|
73
65
|
requirement: !ruby/object:Gem::Requirement
|
74
66
|
requirements:
|
75
67
|
- - ">="
|
76
68
|
- !ruby/object:Gem::Version
|
77
|
-
version:
|
69
|
+
version: 1.1.5
|
78
70
|
- - "<"
|
79
71
|
- !ruby/object:Gem::Version
|
80
|
-
version: '
|
72
|
+
version: '2.0'
|
81
73
|
type: :development
|
82
74
|
prerelease: false
|
83
75
|
version_requirements: !ruby/object:Gem::Requirement
|
84
76
|
requirements:
|
85
77
|
- - ">="
|
86
78
|
- !ruby/object:Gem::Version
|
87
|
-
version:
|
79
|
+
version: 1.1.5
|
88
80
|
- - "<"
|
89
81
|
- !ruby/object:Gem::Version
|
90
|
-
version: '
|
82
|
+
version: '2.0'
|
91
83
|
- !ruby/object:Gem::Dependency
|
92
|
-
name:
|
84
|
+
name: em-synchrony
|
93
85
|
requirement: !ruby/object:Gem::Requirement
|
94
86
|
requirements:
|
95
87
|
- - ">="
|
96
88
|
- !ruby/object:Gem::Version
|
97
|
-
version: 1.
|
89
|
+
version: 1.0.6
|
98
90
|
- - "<"
|
99
91
|
- !ruby/object:Gem::Version
|
100
92
|
version: '2.0'
|
@@ -104,17 +96,17 @@ dependencies:
|
|
104
96
|
requirements:
|
105
97
|
- - ">="
|
106
98
|
- !ruby/object:Gem::Version
|
107
|
-
version: 1.
|
99
|
+
version: 1.0.6
|
108
100
|
- - "<"
|
109
101
|
- !ruby/object:Gem::Version
|
110
102
|
version: '2.0'
|
111
103
|
- !ruby/object:Gem::Dependency
|
112
|
-
name:
|
104
|
+
name: eventmachine
|
113
105
|
requirement: !ruby/object:Gem::Requirement
|
114
106
|
requirements:
|
115
107
|
- - ">="
|
116
108
|
- !ruby/object:Gem::Version
|
117
|
-
version: 1.
|
109
|
+
version: 1.2.5
|
118
110
|
- - "<"
|
119
111
|
- !ruby/object:Gem::Version
|
120
112
|
version: '2.0'
|
@@ -124,50 +116,66 @@ dependencies:
|
|
124
116
|
requirements:
|
125
117
|
- - ">="
|
126
118
|
- !ruby/object:Gem::Version
|
127
|
-
version: 1.
|
119
|
+
version: 1.2.5
|
128
120
|
- - "<"
|
129
121
|
- !ruby/object:Gem::Version
|
130
122
|
version: '2.0'
|
131
123
|
- !ruby/object:Gem::Dependency
|
132
|
-
name:
|
124
|
+
name: juwelier
|
133
125
|
requirement: !ruby/object:Gem::Requirement
|
134
126
|
requirements:
|
135
127
|
- - ">="
|
136
128
|
- !ruby/object:Gem::Version
|
137
|
-
version:
|
138
|
-
- - "<"
|
139
|
-
- !ruby/object:Gem::Version
|
140
|
-
version: '2.0'
|
129
|
+
version: '0'
|
141
130
|
type: :development
|
142
131
|
prerelease: false
|
143
132
|
version_requirements: !ruby/object:Gem::Requirement
|
144
133
|
requirements:
|
145
134
|
- - ">="
|
146
135
|
- !ruby/object:Gem::Version
|
147
|
-
version:
|
148
|
-
|
136
|
+
version: '0'
|
137
|
+
- !ruby/object:Gem::Dependency
|
138
|
+
name: rspec
|
139
|
+
requirement: !ruby/object:Gem::Requirement
|
140
|
+
requirements:
|
141
|
+
- - "~>"
|
149
142
|
- !ruby/object:Gem::Version
|
150
|
-
version: '
|
143
|
+
version: '3.7'
|
144
|
+
type: :development
|
145
|
+
prerelease: false
|
146
|
+
version_requirements: !ruby/object:Gem::Requirement
|
147
|
+
requirements:
|
148
|
+
- - "~>"
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: '3.7'
|
151
151
|
- !ruby/object:Gem::Dependency
|
152
|
-
name:
|
152
|
+
name: rubocop
|
153
153
|
requirement: !ruby/object:Gem::Requirement
|
154
154
|
requirements:
|
155
155
|
- - ">="
|
156
156
|
- !ruby/object:Gem::Version
|
157
|
-
version:
|
158
|
-
- - "<"
|
159
|
-
- !ruby/object:Gem::Version
|
160
|
-
version: '3.0'
|
157
|
+
version: '0'
|
161
158
|
type: :development
|
162
159
|
prerelease: false
|
163
160
|
version_requirements: !ruby/object:Gem::Requirement
|
164
161
|
requirements:
|
165
162
|
- - ">="
|
166
163
|
- !ruby/object:Gem::Version
|
167
|
-
version:
|
168
|
-
|
164
|
+
version: '0'
|
165
|
+
- !ruby/object:Gem::Dependency
|
166
|
+
name: webmock
|
167
|
+
requirement: !ruby/object:Gem::Requirement
|
168
|
+
requirements:
|
169
|
+
- - "~>"
|
169
170
|
- !ruby/object:Gem::Version
|
170
|
-
version: '3.
|
171
|
+
version: '3.3'
|
172
|
+
type: :development
|
173
|
+
prerelease: false
|
174
|
+
version_requirements: !ruby/object:Gem::Requirement
|
175
|
+
requirements:
|
176
|
+
- - "~>"
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: '3.3'
|
171
179
|
description: Gem for interacting with the ActionKit API
|
172
180
|
email: systems@controlshiftlabs.com
|
173
181
|
executables: []
|
@@ -177,10 +185,11 @@ extra_rdoc_files:
|
|
177
185
|
- README.md
|
178
186
|
files:
|
179
187
|
- ".document"
|
188
|
+
- ".github/workflows/ci.yml"
|
180
189
|
- ".rspec"
|
190
|
+
- ".rubocop.yml"
|
181
191
|
- ".ruby-gemset"
|
182
192
|
- ".ruby-version"
|
183
|
-
- ".travis.yml"
|
184
193
|
- Gemfile
|
185
194
|
- LICENSE.txt
|
186
195
|
- README.md
|
@@ -233,6 +242,7 @@ files:
|
|
233
242
|
- spec/lib/action_kit_rest/actions/event_create_action_spec.rb
|
234
243
|
- spec/lib/action_kit_rest/actions/event_signup_action_spec.rb
|
235
244
|
- spec/lib/action_kit_rest/allowed_user_field_spec.rb
|
245
|
+
- spec/lib/action_kit_rest/api_spec.rb
|
236
246
|
- spec/lib/action_kit_rest/logger_spec.rb
|
237
247
|
- spec/lib/action_kit_rest/page_spec.rb
|
238
248
|
- spec/lib/action_kit_rest/pages/event_campaign_page_spec.rb
|
@@ -262,7 +272,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
262
272
|
- !ruby/object:Gem::Version
|
263
273
|
version: '0'
|
264
274
|
requirements: []
|
265
|
-
rubygems_version: 3.
|
275
|
+
rubygems_version: 3.1.6
|
266
276
|
signing_key:
|
267
277
|
specification_version: 4
|
268
278
|
summary: A wrapper for the ActionKit REST API
|
data/.travis.yml
DELETED