gnumarcelo-campaigning 0.8.1 → 0.8.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.
data/README.rdoc
CHANGED
@@ -23,8 +23,8 @@ This gem requires the following gems:
|
|
23
23
|
|
24
24
|
|
25
25
|
=== Configuring your API key
|
26
|
-
require 'campaigning'
|
27
|
-
CAMPAIGN_MONITOR_API_KEY = '_put_here_your_api_key_'
|
26
|
+
require 'campaigning'
|
27
|
+
CAMPAIGN_MONITOR_API_KEY = '_put_here_your_api_key_'
|
28
28
|
|
29
29
|
|
30
30
|
== Usage
|
@@ -54,6 +54,12 @@ Sample use of the Client class:
|
|
54
54
|
For further examples please check at the *sample* directory.
|
55
55
|
|
56
56
|
|
57
|
+
== What if I found a BUG?
|
58
|
+
|
59
|
+
If you found a bug in the Campaigning wrapper, it's easy to report it on the like below:
|
60
|
+
http://github.com/gnumarcelo/campaigning/issues
|
61
|
+
|
62
|
+
|
57
63
|
== Copyright
|
58
64
|
|
59
65
|
Copyright (c) 2009 Marcelo Menezes. See LICENSE for details.
|
data/VERSION.yml
CHANGED
@@ -3,7 +3,8 @@ require 'singleton'
|
|
3
3
|
|
4
4
|
module Campaigning
|
5
5
|
#A SOAPDriver is a singleton object responsable to supply a way to interact with the SOAP::RPC::Driver object.
|
6
|
-
class SOAPDriver
|
6
|
+
class SOAPDriver #:nodoc:
|
7
|
+
#It could be a module
|
7
8
|
include Singleton
|
8
9
|
DefaultEndpointUrl = "http://api.createsend.com/api/api.asmx"
|
9
10
|
|