class PgObjects::Config

Attributes

after_path[RW]
before_path[RW]
extensions[RW]
silent[RW]

Public Class Methods

new() click to toggle source
# File lib/pg_objects/config.rb, line 27
def initialize
  @before_path = 'db/objects/before'
  @after_path = 'db/objects/after'
  @extensions = ['sql']
  @silent = false
end