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
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 8
4
- :patch: 1
4
+ :patch: 2
@@ -29,6 +29,7 @@ module Campaigning
29
29
  end
30
30
 
31
31
  #This method turns on and off the API debug mode, which will display at the console all SOAP requests made to the API server.
32
+ #
32
33
  def self.setup_debug_mode(dev)
33
34
  Campaigning::SOAPDriver.instance.setup_debug_mode dev
34
35
  end
@@ -1,5 +1,5 @@
1
1
  module Campaigning
2
- module Helpers
2
+ module Helpers #:nodoc:
3
3
  #Method responsable to handle all response from the API server and raising an exception when
4
4
  #the API returns an error code (different from 0 (zero) ).
5
5
  def handle_request(response)
@@ -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 #It could be a module
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
 
@@ -233,7 +233,7 @@ module Campaigning
233
233
 
234
234
  protected
235
235
 
236
- def custom_field_options(custom_fields)
236
+ def custom_field_options(custom_fields) #:nodoc:
237
237
  custom_fields.join("||").to_s
238
238
  end
239
239
 
@@ -171,7 +171,7 @@ class Subscriber
171
171
 
172
172
  protected
173
173
 
174
- def custom_fields_array(custom_fields)
174
+ def custom_fields_array(custom_fields) #:nodoc:
175
175
  arr = []
176
176
  custom_fields.each do |key, value|
177
177
  arr << { :key => key, :value => value }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gnumarcelo-campaigning
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcelo Menezes