Sha256: 5770db5714f649f22e7d8ef3ab1bb46e96359636dbfdc451da1d70875948a122
Contents?: true
Size: 704 Bytes
Versions: 1
Compression:
Stored size: 704 Bytes
Contents
module Fx # F(x)'s configuration object. class Configuration # The F(x) database adapter instance to use when executing SQL. # # Defaults to an instance of {Fx::Adapters::Postgres} # @return Fx adapter attr_accessor :database # Prioritizes the order in the schema.rb of functions before other # statements in order to make directly schema load work when using functions # in statements below, i.e.: default column values. # # Defaults to false # @return Boolean attr_accessor :dump_functions_at_beginning_of_schema def initialize @database = Fx::Adapters::Postgres.new @dump_functions_at_beginning_of_schema = false end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fx-0.9.0 | lib/fx/configuration.rb |