Module: PgAssistant

Defined in:
lib/pg_assistant.rb,
lib/pg_assistant/version.rb,
lib/pg_assistant/definitions.rb,
lib/pg_assistant/definitions/base.rb,
lib/pg_assistant/definitions/function.rb,
lib/generators/pg_assistant/generators.rb,
lib/generators/pg_assistant/function/function_generator.rb

Defined Under Namespace

Modules: Definitions, Generators

Constant Summary collapse

VERSION =
"0.1.0"

Class Method Summary collapse

Class Method Details

.configure {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:

  • _self (PgAssistant)

    the object that the method was called on



6
7
8
# File 'lib/pg_assistant.rb', line 6

def configure(&block)
  yield(self)
end

.functions_directory_path=(path) ⇒ Object



10
11
12
# File 'lib/pg_assistant.rb', line 10

def functions_directory_path=(path)
  Definitions::Function.directory_path = path
end