infusionsoft 1.1.5 → 1.1.6

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.
Files changed (3) hide show
  1. data/README.md +4 -2
  2. data/lib/infusionsoft/version.rb +1 -1
  3. metadata +2 -2
data/README.md CHANGED
@@ -1,8 +1,9 @@
1
1
  # The Infusionsoft Ruby Gem
2
2
  A Ruby wrapper for the Infusionsoft API
3
3
 
4
- **This is a complete rewrite and has been implemented as a RubyGem**
5
- All previous versions will need to update their calls to follow the new schema
4
+ **update notes**
5
+
6
+ * v1.1.5 - Added a custom logger option. This will allow you to track all api calls/results in a separate log file. Defaults to $stdout if none is specified. To add logger specify `api_logger` in your [config block](#setup--configuration).
6
7
 
7
8
  ## <a name="installation">Installation</a>
8
9
  gem install infusionsoft
@@ -20,6 +21,7 @@ All previous versions will need to update their calls to follow the new schema
20
21
  Infusionsoft.configure do |config|
21
22
  config.api_url = 'YOUR_INFUSIONSOFT_URL' # example infused.infusionsoft.com
22
23
  config.api_key = 'YOUR_INFUSIONSOFT_API_KEY'
24
+ config.api_logger = Logger.new("#{Rails.root}/log/infusionsoft_api.log") # optional logger file
23
25
  end
24
26
 
25
27
  ## <a name="examples">Usage Examples</a>
@@ -1,4 +1,4 @@
1
1
  module Infusionsoft
2
2
  # The version of the gem
3
- VERSION = '1.1.5'.freeze unless defined?(::Infusionsoft::VERSION)
3
+ VERSION = '1.1.6'.freeze unless defined?(::Infusionsoft::VERSION)
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: infusionsoft
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.5
4
+ version: 1.1.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-06-18 00:00:00.000000000 Z
12
+ date: 2013-06-21 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: A Ruby wrapper written for the Infusionsoft API
15
15
  email: