fuelsdk_json_bump 0.0.5
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/.gitignore +26 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +91 -0
- data/Guardfile +8 -0
- data/LICENSE.md +13 -0
- data/README.md +127 -0
- data/Rakefile +1 -0
- data/fuelsdk.gemspec +30 -0
- data/lib/fuelsdk.rb +74 -0
- data/lib/fuelsdk/client.rb +282 -0
- data/lib/fuelsdk/http_request.rb +116 -0
- data/lib/fuelsdk/objects.rb +757 -0
- data/lib/fuelsdk/rest.rb +122 -0
- data/lib/fuelsdk/soap.rb +288 -0
- data/lib/fuelsdk/targeting.rb +58 -0
- data/lib/fuelsdk/utils.rb +47 -0
- data/lib/fuelsdk/version.rb +39 -0
- data/lib/new.rb +1240 -0
- data/samples/sample-AddSubscriberToList.rb +56 -0
- data/samples/sample-CreateAndStartDataExtensionImport.rb +29 -0
- data/samples/sample-CreateAndStartListImport.rb +27 -0
- data/samples/sample-CreateContentAreas.rb +48 -0
- data/samples/sample-CreateDataExtensions.rb +54 -0
- data/samples/sample-CreateProfileAttributes.rb +48 -0
- data/samples/sample-SendEmailToDataExtension.rb +23 -0
- data/samples/sample-SendEmailToList.rb +23 -0
- data/samples/sample-SendTriggeredSends.rb +30 -0
- data/samples/sample-bounceevent.rb +70 -0
- data/samples/sample-campaign.rb +211 -0
- data/samples/sample-clickevent.rb +71 -0
- data/samples/sample-contentarea.rb +122 -0
- data/samples/sample-dataextension.rb +209 -0
- data/samples/sample-directverb.rb +55 -0
- data/samples/sample-email.rb +122 -0
- data/samples/sample-email.senddefinition.rb +134 -0
- data/samples/sample-folder.rb +143 -0
- data/samples/sample-import.rb +104 -0
- data/samples/sample-list.rb +105 -0
- data/samples/sample-list.subscriber.rb +97 -0
- data/samples/sample-openevent.rb +70 -0
- data/samples/sample-profileattribute.rb +57 -0
- data/samples/sample-sentevent.rb +70 -0
- data/samples/sample-subscriber.rb +136 -0
- data/samples/sample-triggeredsend.rb +130 -0
- data/samples/sample-unsubevent.rb +72 -0
- data/samples/sample_helper.rb.template +8 -0
- data/spec/client_spec.rb +200 -0
- data/spec/helper_funcs_spec.rb +11 -0
- data/spec/http_request_spec.rb +36 -0
- data/spec/objects_helper_spec.rb +32 -0
- data/spec/objects_spec.rb +484 -0
- data/spec/rest_spec.rb +48 -0
- data/spec/soap_spec.rb +140 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/targeting_spec.rb +39 -0
- metadata +250 -0
data/spec/rest_spec.rb
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
describe FuelSDK::Rest do
|
3
|
+
let(:client) { FuelSDK::Client.new }
|
4
|
+
|
5
|
+
subject { client }
|
6
|
+
it { should respond_to(:rest_get) }
|
7
|
+
it { should respond_to(:rest_client) }
|
8
|
+
it { should respond_to(:complete_url) }
|
9
|
+
|
10
|
+
describe '#complete_url' do
|
11
|
+
it 'raises an exception when identities are missing' do
|
12
|
+
expect { client.complete_url "some_url/%{parent}/%{child}", {parent: 1} }.to raise_exception 'key{child} not found to complete some_url/%{parent}/%{child}'
|
13
|
+
end
|
14
|
+
|
15
|
+
it 'returns url with all identities replaced' do
|
16
|
+
expect( client.complete_url "some_url/%{parent}/%{child}", {:parent => 1, :child => 2} ).to eq 'some_url/1/2'
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'handles identities with string keys' do
|
20
|
+
expect( client.complete_url "some_url/%{parent}/%{child}", {'parent'=> 1, 'child'=> 2} ).to eq 'some_url/1/2'
|
21
|
+
end
|
22
|
+
|
23
|
+
it 'treats empty values as optional keys' do
|
24
|
+
expect( client.complete_url "some_url/%{parent}/%{child}", {'parent'=> 1, 'child'=> ''} ).to eq 'some_url/1'
|
25
|
+
end
|
26
|
+
|
27
|
+
it 'handles extra keys' do
|
28
|
+
expect( client.complete_url "some_url/%{parent}/%{child}", {'parent'=> 1, 'child'=> '', 'other' => 1} ).to eq 'some_url/1'
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
describe '#get_url_properties' do
|
33
|
+
it 'returns hash of properties in format string' do
|
34
|
+
expect( client.get_url_properties "some_url/%{parent}/%{child}", {'parent'=> 1, 'child'=> '', 'other' => 1} ).to eq({'parent' => 1, 'child' => ''})
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'handles missing url properties' do
|
38
|
+
expect( client.get_url_properties "some_url/%{parent}/%{child}", {'parent'=> 1, 'other' => 1} ).to eq({'parent' => 1})
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'filters url properties from properties leaving query params' do
|
42
|
+
properties = {'parent'=> 1, 'other' => 1}
|
43
|
+
client.get_url_properties "some_url/%{parent}/%{child}", properties
|
44
|
+
expect(properties).to eq 'other' => 1
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
data/spec/soap_spec.rb
ADDED
@@ -0,0 +1,140 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe FuelSDK::Soap do
|
4
|
+
|
5
|
+
let(:client) { FuelSDK::Client.new }
|
6
|
+
|
7
|
+
subject { client }
|
8
|
+
|
9
|
+
it { should respond_to(:soap_get) }
|
10
|
+
it { should respond_to(:soap_post) }
|
11
|
+
it { should respond_to(:soap_patch) }
|
12
|
+
it { should respond_to(:soap_delete) }
|
13
|
+
it { should respond_to(:soap_describe) }
|
14
|
+
|
15
|
+
it { should respond_to(:header) }
|
16
|
+
it { should_not respond_to(:header=) }
|
17
|
+
|
18
|
+
it { should respond_to(:wsdl) }
|
19
|
+
it { should respond_to(:wsdl=) }
|
20
|
+
|
21
|
+
it { should respond_to(:endpoint) }
|
22
|
+
it { should_not respond_to(:endpoint=) }
|
23
|
+
|
24
|
+
it { should respond_to(:soap_client) }
|
25
|
+
|
26
|
+
it { should respond_to(:package_name) }
|
27
|
+
it { should respond_to(:package_name=) }
|
28
|
+
|
29
|
+
it { should respond_to(:package_folders) }
|
30
|
+
it { should respond_to(:package_folders=) }
|
31
|
+
|
32
|
+
its(:debug) { should be_false }
|
33
|
+
its(:wsdl) { should eq 'https://webservice.exacttarget.com/etframework.wsdl' }
|
34
|
+
|
35
|
+
describe '#header' do
|
36
|
+
it 'raises an exception when internal_token is missing' do
|
37
|
+
expect { client.header }.to raise_exception 'Require legacy token for soap header'
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'returns header hash' do
|
41
|
+
client.internal_token = 'innerspace'
|
42
|
+
expect(client.header).to eq(
|
43
|
+
{
|
44
|
+
'oAuth' => { 'oAuthToken' => 'innerspace' },
|
45
|
+
:attributes! => {
|
46
|
+
'oAuth' => { 'xmlns' => 'http://exacttarget.com' }
|
47
|
+
}
|
48
|
+
}
|
49
|
+
)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'requests' do
|
54
|
+
subject {
|
55
|
+
client.stub(:soap_request) do |action, message|
|
56
|
+
[action, message]
|
57
|
+
end
|
58
|
+
client
|
59
|
+
}
|
60
|
+
|
61
|
+
it '#soap_describe calls client with :describe and DescribeRequests message' do
|
62
|
+
expect(subject.soap_describe 'Subscriber').to eq([:describe,
|
63
|
+
{'DescribeRequests' => {'ObjectDefinitionRequest' => {'ObjectType' => 'Subscriber' }}}])
|
64
|
+
end
|
65
|
+
|
66
|
+
describe '#soap_post' do
|
67
|
+
subject {
|
68
|
+
client.stub(:soap_request) do |action, message|
|
69
|
+
[action, message]
|
70
|
+
end
|
71
|
+
|
72
|
+
client.stub_chain(:soap_describe,:editable)
|
73
|
+
.and_return(['First Name', 'Last Name', 'Gender'])
|
74
|
+
client
|
75
|
+
}
|
76
|
+
it 'formats soap :create message for single object' do
|
77
|
+
expect(subject.soap_post 'Subscriber', 'EmailAddress' => 'test@fuelsdk.com' ).to eq([:create,
|
78
|
+
{
|
79
|
+
'Objects' => [{'EmailAddress' => 'test@fuelsdk.com'}],
|
80
|
+
:attributes! => {'Objects' => {'xsi:type' => ('tns:Subscriber')}}
|
81
|
+
}])
|
82
|
+
end
|
83
|
+
|
84
|
+
it 'formats soap :create message for multiple objects' do
|
85
|
+
expect(subject.soap_post 'Subscriber', [{'EmailAddress' => 'first@fuelsdk.com'}, {'EmailAddress' => 'second@fuelsdk.com'}] ).to eq([:create,
|
86
|
+
{
|
87
|
+
'Objects' => [{'EmailAddress' => 'first@fuelsdk.com'}, {'EmailAddress' => 'second@fuelsdk.com'}],
|
88
|
+
:attributes! => {'Objects' => {'xsi:type' => ('tns:Subscriber')}}
|
89
|
+
}])
|
90
|
+
end
|
91
|
+
|
92
|
+
it 'formats soap :create message for single object with an attribute' do
|
93
|
+
expect(subject.soap_post 'Subscriber', {'EmailAddress' => 'test@fuelsdk.com', 'Attributes'=> [{'Name'=>'First Name', 'Value'=>'first'}]}).to eq([:create,
|
94
|
+
{
|
95
|
+
'Objects' => [{
|
96
|
+
'EmailAddress' => 'test@fuelsdk.com',
|
97
|
+
'Attributes' => [{'Name' => 'First Name', 'Value' => 'first'}],
|
98
|
+
}],
|
99
|
+
:attributes! => {'Objects' => {'xsi:type' => ('tns:Subscriber')}}
|
100
|
+
}])
|
101
|
+
end
|
102
|
+
|
103
|
+
it 'formats soap :create message for single object with multiple attributes' do
|
104
|
+
expect(subject.soap_post 'Subscriber', {'EmailAddress' => 'test@fuelsdk.com',
|
105
|
+
'Attributes'=> [{'Name'=>'First Name', 'Value'=>'first'}, {'Name'=>'Last Name', 'Value'=>'subscriber'}]}).to eq([:create,
|
106
|
+
{
|
107
|
+
'Objects' => [{
|
108
|
+
'EmailAddress' => 'test@fuelsdk.com',
|
109
|
+
'Attributes' => [
|
110
|
+
{'Name' => 'First Name', 'Value' => 'first'},
|
111
|
+
{'Name' => 'Last Name', 'Value' => 'subscriber'},
|
112
|
+
],
|
113
|
+
}],
|
114
|
+
:attributes! => {'Objects' => {'xsi:type' => ('tns:Subscriber')}}
|
115
|
+
}])
|
116
|
+
end
|
117
|
+
|
118
|
+
it 'formats soap :create message for multiple objects with multiple attributes' do
|
119
|
+
expect(subject.soap_post 'Subscriber', [{'EmailAddress' => 'first@fuelsdk.com', 'Attributes'=> [{'Name'=>'First Name', 'Value'=>'first'}, {'Name'=>'Last Name', 'Value'=>'subscriber'}]},
|
120
|
+
{'EmailAddress' => 'second@fuelsdk.com', 'Attributes'=> [{'Name'=>'First Name', 'Value'=>'second'}, {'Name'=>'Last Name', 'Value'=>'subscriber'}]}]).to eq([:create,
|
121
|
+
{
|
122
|
+
'Objects' => [
|
123
|
+
{'EmailAddress' => 'first@fuelsdk.com',
|
124
|
+
'Attributes' => [
|
125
|
+
{'Name' => 'First Name', 'Value' => 'first'},
|
126
|
+
{'Name' => 'Last Name', 'Value' => 'subscriber'},
|
127
|
+
]
|
128
|
+
},
|
129
|
+
{'EmailAddress' => 'second@fuelsdk.com',
|
130
|
+
'Attributes' => [
|
131
|
+
{'Name' => 'First Name', 'Value' => 'second'},
|
132
|
+
{'Name' => 'Last Name', 'Value' => 'subscriber'},
|
133
|
+
]
|
134
|
+
}],
|
135
|
+
:attributes! => {'Objects' => {'xsi:type' => ('tns:Subscriber')}}
|
136
|
+
}])
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
140
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
|
4
|
+
require 'fuelsdk'
|
5
|
+
|
6
|
+
RSpec.configure do |config|
|
7
|
+
config.mock_with :rspec
|
8
|
+
|
9
|
+
# Use color in STDOUT
|
10
|
+
config.color_enabled = true
|
11
|
+
|
12
|
+
# Use the specified formatter
|
13
|
+
config.formatter = :documentation
|
14
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe FuelSDK::Targeting do
|
4
|
+
|
5
|
+
subject { Class.new.new.extend(FuelSDK::Targeting) }
|
6
|
+
|
7
|
+
it { should respond_to(:endpoint) }
|
8
|
+
it { should_not respond_to(:endpoint=) }
|
9
|
+
it { should respond_to(:determine_stack) }
|
10
|
+
it { should respond_to(:get) }
|
11
|
+
it { should respond_to(:post) }
|
12
|
+
it { should respond_to(:patch) }
|
13
|
+
it { should respond_to(:delete) }
|
14
|
+
it { should respond_to(:access_token) }
|
15
|
+
|
16
|
+
describe '#determine_stack' do
|
17
|
+
let(:client) { c = Class.new.new.extend(FuelSDK::Targeting)
|
18
|
+
c.stub(:access_token).and_return('open_sesame')
|
19
|
+
c.stub(:get)
|
20
|
+
.with('https://www.exacttargetapis.com/platform/v1/endpoints/soap',{'params'=>{'access_token'=>'open_sesame'}})
|
21
|
+
.and_return({'url' => 'S#.authentication.target'})
|
22
|
+
c
|
23
|
+
}
|
24
|
+
it 'sets @endpoint' do
|
25
|
+
expect(client.send(:determine_stack)).to eq 'S#.authentication.target'
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe '#endpoint' do
|
30
|
+
let(:client) { c = Class.new.new.extend(FuelSDK::Targeting)
|
31
|
+
c.stub(:get).and_return({'url' => 'S#.authentication.target'})
|
32
|
+
c
|
33
|
+
}
|
34
|
+
|
35
|
+
it 'calls determine_stack to find target' do
|
36
|
+
expect(client.endpoint).to eq 'S#.authentication.target'
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
metadata
ADDED
@@ -0,0 +1,250 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fuelsdk_json_bump
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- MichaelAllenClark
|
8
|
+
- barberj
|
9
|
+
- kellyjandrews
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2015-08-17 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: bundler
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - "~>"
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.3'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - "~>"
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: '1.3'
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: rake
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - "~>"
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '0'
|
36
|
+
type: :development
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - "~>"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '0'
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: rspec
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0'
|
50
|
+
type: :development
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - "~>"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: guard
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - "~>"
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
type: :development
|
65
|
+
prerelease: false
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - "~>"
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: guard-rspec
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - "~>"
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
type: :development
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - "~>"
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: savon
|
87
|
+
requirement: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - '='
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: 2.2.0
|
92
|
+
type: :runtime
|
93
|
+
prerelease: false
|
94
|
+
version_requirements: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - '='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: 2.2.0
|
99
|
+
- !ruby/object:Gem::Dependency
|
100
|
+
name: json
|
101
|
+
requirement: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - "~>"
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '1.8'
|
106
|
+
type: :runtime
|
107
|
+
prerelease: false
|
108
|
+
version_requirements: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - "~>"
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '1.8'
|
113
|
+
- !ruby/object:Gem::Dependency
|
114
|
+
name: jwt
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - "~>"
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: 0.1.6
|
120
|
+
type: :runtime
|
121
|
+
prerelease: false
|
122
|
+
version_requirements: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - "~>"
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: 0.1.6
|
127
|
+
description: API wrapper for SOAP and REST API with Salesforce Marketing Cloud (ExactTarget)
|
128
|
+
email:
|
129
|
+
- code@exacttarget.com
|
130
|
+
executables: []
|
131
|
+
extensions: []
|
132
|
+
extra_rdoc_files: []
|
133
|
+
files:
|
134
|
+
- ".gitignore"
|
135
|
+
- Gemfile
|
136
|
+
- Gemfile.lock
|
137
|
+
- Guardfile
|
138
|
+
- LICENSE.md
|
139
|
+
- README.md
|
140
|
+
- Rakefile
|
141
|
+
- fuelsdk.gemspec
|
142
|
+
- lib/fuelsdk.rb
|
143
|
+
- lib/fuelsdk/client.rb
|
144
|
+
- lib/fuelsdk/http_request.rb
|
145
|
+
- lib/fuelsdk/objects.rb
|
146
|
+
- lib/fuelsdk/rest.rb
|
147
|
+
- lib/fuelsdk/soap.rb
|
148
|
+
- lib/fuelsdk/targeting.rb
|
149
|
+
- lib/fuelsdk/utils.rb
|
150
|
+
- lib/fuelsdk/version.rb
|
151
|
+
- lib/new.rb
|
152
|
+
- samples/sample-AddSubscriberToList.rb
|
153
|
+
- samples/sample-CreateAndStartDataExtensionImport.rb
|
154
|
+
- samples/sample-CreateAndStartListImport.rb
|
155
|
+
- samples/sample-CreateContentAreas.rb
|
156
|
+
- samples/sample-CreateDataExtensions.rb
|
157
|
+
- samples/sample-CreateProfileAttributes.rb
|
158
|
+
- samples/sample-SendEmailToDataExtension.rb
|
159
|
+
- samples/sample-SendEmailToList.rb
|
160
|
+
- samples/sample-SendTriggeredSends.rb
|
161
|
+
- samples/sample-bounceevent.rb
|
162
|
+
- samples/sample-campaign.rb
|
163
|
+
- samples/sample-clickevent.rb
|
164
|
+
- samples/sample-contentarea.rb
|
165
|
+
- samples/sample-dataextension.rb
|
166
|
+
- samples/sample-directverb.rb
|
167
|
+
- samples/sample-email.rb
|
168
|
+
- samples/sample-email.senddefinition.rb
|
169
|
+
- samples/sample-folder.rb
|
170
|
+
- samples/sample-import.rb
|
171
|
+
- samples/sample-list.rb
|
172
|
+
- samples/sample-list.subscriber.rb
|
173
|
+
- samples/sample-openevent.rb
|
174
|
+
- samples/sample-profileattribute.rb
|
175
|
+
- samples/sample-sentevent.rb
|
176
|
+
- samples/sample-subscriber.rb
|
177
|
+
- samples/sample-triggeredsend.rb
|
178
|
+
- samples/sample-unsubevent.rb
|
179
|
+
- samples/sample_helper.rb.template
|
180
|
+
- spec/client_spec.rb
|
181
|
+
- spec/helper_funcs_spec.rb
|
182
|
+
- spec/http_request_spec.rb
|
183
|
+
- spec/objects_helper_spec.rb
|
184
|
+
- spec/objects_spec.rb
|
185
|
+
- spec/rest_spec.rb
|
186
|
+
- spec/soap_spec.rb
|
187
|
+
- spec/spec_helper.rb
|
188
|
+
- spec/targeting_spec.rb
|
189
|
+
homepage: https://github.com/ExactTarget/FuelSDK-Ruby
|
190
|
+
licenses:
|
191
|
+
- ''
|
192
|
+
metadata: {}
|
193
|
+
post_install_message:
|
194
|
+
rdoc_options: []
|
195
|
+
require_paths:
|
196
|
+
- lib
|
197
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
203
|
+
requirements:
|
204
|
+
- - ">="
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
version: '0'
|
207
|
+
requirements: []
|
208
|
+
rubyforge_project:
|
209
|
+
rubygems_version: 2.4.6
|
210
|
+
signing_key:
|
211
|
+
specification_version: 4
|
212
|
+
summary: Fuel Client Library for Ruby
|
213
|
+
test_files:
|
214
|
+
- samples/sample-AddSubscriberToList.rb
|
215
|
+
- samples/sample-CreateAndStartDataExtensionImport.rb
|
216
|
+
- samples/sample-CreateAndStartListImport.rb
|
217
|
+
- samples/sample-CreateContentAreas.rb
|
218
|
+
- samples/sample-CreateDataExtensions.rb
|
219
|
+
- samples/sample-CreateProfileAttributes.rb
|
220
|
+
- samples/sample-SendEmailToDataExtension.rb
|
221
|
+
- samples/sample-SendEmailToList.rb
|
222
|
+
- samples/sample-SendTriggeredSends.rb
|
223
|
+
- samples/sample-bounceevent.rb
|
224
|
+
- samples/sample-campaign.rb
|
225
|
+
- samples/sample-clickevent.rb
|
226
|
+
- samples/sample-contentarea.rb
|
227
|
+
- samples/sample-dataextension.rb
|
228
|
+
- samples/sample-directverb.rb
|
229
|
+
- samples/sample-email.rb
|
230
|
+
- samples/sample-email.senddefinition.rb
|
231
|
+
- samples/sample-folder.rb
|
232
|
+
- samples/sample-import.rb
|
233
|
+
- samples/sample-list.rb
|
234
|
+
- samples/sample-list.subscriber.rb
|
235
|
+
- samples/sample-openevent.rb
|
236
|
+
- samples/sample-profileattribute.rb
|
237
|
+
- samples/sample-sentevent.rb
|
238
|
+
- samples/sample-subscriber.rb
|
239
|
+
- samples/sample-triggeredsend.rb
|
240
|
+
- samples/sample-unsubevent.rb
|
241
|
+
- samples/sample_helper.rb.template
|
242
|
+
- spec/client_spec.rb
|
243
|
+
- spec/helper_funcs_spec.rb
|
244
|
+
- spec/http_request_spec.rb
|
245
|
+
- spec/objects_helper_spec.rb
|
246
|
+
- spec/objects_spec.rb
|
247
|
+
- spec/rest_spec.rb
|
248
|
+
- spec/soap_spec.rb
|
249
|
+
- spec/spec_helper.rb
|
250
|
+
- spec/targeting_spec.rb
|