infusionsoft 1.0.9b → 1.0.9c
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/lib/infusionsoft/client.rb +2 -0
- data/lib/infusionsoft/version.rb +1 -1
- metadata +1 -1
data/lib/infusionsoft/client.rb
CHANGED
|
@@ -14,6 +14,7 @@ module Infusionsoft
|
|
|
14
14
|
require 'infusionsoft/client/file'
|
|
15
15
|
require 'infusionsoft/client/ticket' # Deprecated by Infusionsoft
|
|
16
16
|
require 'infusionsoft/client/search'
|
|
17
|
+
require 'infusionsoft/client/credit_card'
|
|
17
18
|
|
|
18
19
|
include Infusionsoft::Client::Contact
|
|
19
20
|
include Infusionsoft::Client::Email
|
|
@@ -23,5 +24,6 @@ module Infusionsoft
|
|
|
23
24
|
include Infusionsoft::Client::File
|
|
24
25
|
include Infusionsoft::Client::Ticket # Deprecated by Infusionsoft
|
|
25
26
|
include Infusionsoft::Client::Search
|
|
27
|
+
include Infusionsoft::Client::CreditCard
|
|
26
28
|
end
|
|
27
29
|
end
|
data/lib/infusionsoft/version.rb
CHANGED