forked from patientslikeme/campaign_monitor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcampaign_monitor.gemspec
49 lines (42 loc) · 1.51 KB
/
campaign_monitor.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'campaign_monitor'
s.version = "1.3.0"
s.summary = 'Provides access to the Campaign Monitor API.'
s.description = <<-EOF
A simple wrapper class that provides basic access to the Campaign Monitor API.
EOF
s.author = 'Jeremy Weiskotten'
s.email = '[email protected]'
s.homepage = 'http://github.com/patientslikeme/campaign_monitor/'
s.has_rdoc = true
s.requirements << 'none'
s.require_path = 'lib'
s.add_dependency 'xml-simple', ['>= 1.0.11']
s.files = [
'campaign_monitor.gemspec',
'init.rb',
'install.rb',
'MIT-LICENSE',
'Rakefile',
'README.rdoc',
'lib/campaign_monitor.rb',
'lib/campaign_monitor/base.rb',
'lib/campaign_monitor/campaign.rb',
'lib/campaign_monitor/client.rb',
'lib/campaign_monitor/helpers.rb',
'lib/campaign_monitor/list.rb',
'lib/campaign_monitor/result.rb',
'lib/campaign_monitor/subscriber.rb',
'support/class_enhancements.rb',
'support/faster-xml-simple/lib/faster_xml_simple.rb',
'support/faster-xml-simple/test/regression_test.rb',
'support/faster-xml-simple/test/test_helper.rb',
'support/faster-xml-simple/test/xml_simple_comparison_test.rb',
'test/campaign_monitor_test.rb',
'test/client_test.rb',
'test/list_test.rb',
'test/test_helper.rb'
]
s.test_file = 'test/campaign_monitor_test.rb'
end