infusionsoft 1.0.3 → 1.0.4
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.md +10 -4
- data/lib/infusionsoft/version.rb +1 -1
- metadata +4 -4
data/README.md
CHANGED
@@ -8,13 +8,15 @@ All previous versions will need to update their calls to follow the new schema
|
|
8
8
|
gem install infusionsoft
|
9
9
|
|
10
10
|
## <a name="documentation">Documentation</a>
|
11
|
-
[http://rubydoc.info/gems/infusionsoft/
|
11
|
+
[http://rubydoc.info/gems/infusionsoft/frames](http://rubydoc.info/gems/infusionsoft/frames)
|
12
12
|
|
13
13
|
## <a name="setup">Setup & Configuration</a>
|
14
|
-
|
14
|
+
1. **Rails 2.3** - add `config.gem 'infusionsoft'` **Rails 3** - add `'infusionsoft'` to your `Gemfile`
|
15
|
+
2. Then create an initializer in `config\initializers` called infusionsoft.rb and the following
|
15
16
|
|
16
|
-
|
17
|
+
<b></b>
|
17
18
|
|
19
|
+
# Added to your config\initializers file
|
18
20
|
Infusionsoft.configure do |config|
|
19
21
|
config.api_url = 'YOUR_INFUSIONSOFT_URL' # example infused.infusionsoft.com
|
20
22
|
config.api_key = 'YOUR_INFUSIONSOFT_API_KEY'
|
@@ -25,7 +27,7 @@ Then create an initilizer in `config\initilizers` called infusionsoft.rb and the
|
|
25
27
|
# Get a users first and last name using the DataService
|
26
28
|
Infusionsoft.data_load('Contact', contact_id, [:FirstName, :LastName])
|
27
29
|
|
28
|
-
# Update a contact with specific field values
|
30
|
+
# Update a contact with specific field values
|
29
31
|
Infusionsoft.contact_upudate(contact_id, { :FirstName => 'first_name', :Email => 'test@test.com' })
|
30
32
|
|
31
33
|
# Add a new Contact
|
@@ -99,6 +101,10 @@ implementation, you will be personally responsible for providing patches in a
|
|
99
101
|
timely fashion. If critical issues for a particular implementation exist at the
|
100
102
|
time of a major release, support for that Ruby version may be dropped.
|
101
103
|
|
104
|
+
## <a name="todos">Todos</a>
|
105
|
+
* Need to fully implement testing
|
106
|
+
* Need to add a history log for additional contributers
|
107
|
+
|
102
108
|
## <a name="copyright">Copyright</a>
|
103
109
|
Copyright (c) 2011 Nathan Leavitt & Infused Systems
|
104
110
|
See [LICENSE](https://github.com/nateleavitt/infusionsoft/blob/master/LICENSE.md) for details.
|
data/lib/infusionsoft/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: infusionsoft
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 31
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 4
|
10
|
+
version: 1.0.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Nathan Leavitt
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-10-11 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies: []
|
21
21
|
|