yyyc514 / campaign_monitor forked from patientslikeme/campaign_monitor

Ruby gem for accessing the Campaign Monitor API with support for new API keys, hex IDs, and custom subscriber fields.

This URL has Read+Write access

campaign_monitor / campaign_monitor.gemspec
100644 53 lines (46 sloc) 1.671 kb
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
50
51
52
53
Gem::Specification.new do |s|
  s.platform = Gem::Platform::RUBY
  s.name = 'campaign_monitor'
  s.version = "1.3.2.3"
  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 = 'jweiskotten@patientslikeme.com'
  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.add_dependency 'soap4r', ['>= 1.5.8']
 
  s.files = [
      'campaign_monitor.gemspec',
      'init.rb',
      'install.rb',
      'MIT-LICENSE',
      'Rakefile',
      'README.rdoc',
      'TODO',
      
      'lib/campaign_monitor.rb',
      'lib/campaign_monitor/base.rb',
      'lib/campaign_monitor/misc.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/campaign_test.rb',
      'test/client_test.rb',
      'test/list_test.rb',
      'test/test_helper.rb'
    ]
 
  s.test_file = 'test/campaign_monitor_test.rb'
end