constant-contact-ruby 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/README.rdoc +4 -1
- data/VERSION.yml +1 -1
- data/constant-contact-ruby.gemspec +1 -2
- data/lib/constant_contact.rb +9 -0
- metadata +1 -2
- data/constant-contact-ruby.rb +0 -8
data/.gitignore
CHANGED
data/README.rdoc
CHANGED
@@ -8,8 +8,11 @@ HTTParty gem - http://rubygems.org/gems/httparty
|
|
8
8
|
|
9
9
|
== Usage
|
10
10
|
|
11
|
-
require '
|
11
|
+
require 'constant_contact'
|
12
12
|
include ConstantContact
|
13
|
+
|
14
|
+
### Setup Credentials ###
|
15
|
+
ConstantContact.setup( 'my_username', 'my_password' )
|
13
16
|
|
14
17
|
### Contacts ###
|
15
18
|
|
data/VERSION.yml
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{constant-contact-ruby}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Craig P Jolicoeur"]
|
@@ -26,7 +26,6 @@ Gem::Specification.new do |s|
|
|
26
26
|
"TODO",
|
27
27
|
"VERSION.yml",
|
28
28
|
"constant-contact-ruby.gemspec",
|
29
|
-
"constant-contact-ruby.rb",
|
30
29
|
"lib/constant_contact.rb",
|
31
30
|
"lib/constant_contact/activity.rb",
|
32
31
|
"lib/constant_contact/base_resource.rb",
|
data/lib/constant_contact.rb
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'httparty'
|
3
|
+
|
4
|
+
require 'constant_contact'
|
5
|
+
require 'constant_contact/base_resource'
|
6
|
+
require 'constant_contact/contact'
|
7
|
+
require 'constant_contact/contact_list'
|
8
|
+
require 'constant_contact/activity'
|
9
|
+
|
1
10
|
module ConstantContact
|
2
11
|
|
3
12
|
include HTTParty
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: constant-contact-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Craig P Jolicoeur
|
@@ -32,7 +32,6 @@ files:
|
|
32
32
|
- TODO
|
33
33
|
- VERSION.yml
|
34
34
|
- constant-contact-ruby.gemspec
|
35
|
-
- constant-contact-ruby.rb
|
36
35
|
- lib/constant_contact.rb
|
37
36
|
- lib/constant_contact/activity.rb
|
38
37
|
- lib/constant_contact/base_resource.rb
|
data/constant-contact-ruby.rb
DELETED