class ThirdBase::Railtie

Public Instance Methods

config_key() click to toggle source
# File lib/third_base/railtie.rb, line 38
def config_key
  config.third_base.config_key
end
config_path() click to toggle source
# File lib/third_base/railtie.rb, line 34
def config_path
  config.third_base.path
end
fullpath(extra=nil) click to toggle source
# File lib/third_base/railtie.rb, line 46
def fullpath(extra=nil)
  path = Rails.root.join(config.third_base.path)
  (extra ? path.join(path, extra) : path).to_s
end
run_with_db_tasks?() click to toggle source
# File lib/third_base/railtie.rb, line 42
def run_with_db_tasks?
  config.third_base.run_with_db_tasks
end