module ResoTransport

Constants

EntitySet
EntityType
Enum
Member
ODATA_TIME_FORMAT
Property
Query
Resource
Schema
VERSION

Attributes

configuration[W]

Public Class Methods

configuration() click to toggle source
# File lib/reso_transport.rb, line 35
def self.configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/reso_transport.rb, line 39
def self.configure
  yield(configuration)
end
split_schema_and_class_name(text) click to toggle source
# File lib/reso_transport.rb, line 43
def self.split_schema_and_class_name(text)
  text.to_s.partition(/(\w+)$/).first(2).map { |s| s.sub(/\.$/, '') }
end