module ZapierRuby

Constants

VERSION

Attributes

config[RW]

Public Class Methods

configure() { |config| ... } click to toggle source
# File lib/zapier_ruby.rb, line 20
def self.configure
  self.config ||= ZapierRuby::Config.new
  yield(config) if block_given?
end
configure_with(path_to_yaml_file) click to toggle source
# File lib/zapier_ruby.rb, line 25
def self.configure_with(path_to_yaml_file)
  self.config ||= ZapierRuby::Config.new
  config.configure_with(path_to_yaml_file)
end