class Morpho::Engine

Public Class Methods

controllers_path() click to toggle source
# File lib/morpho/engine.rb, line 35
def self.controllers_path
  Pathname.new(
    Morpho::Engine.root.join(
      'app', 'controllers', 'morpho'
    )
  )
end
models_path() click to toggle source
# File lib/morpho/engine.rb, line 43
def self.models_path
  Pathname.new(
    Morpho::Engine.root.join(
      'app', 'models', 'morpho'
    )
  )
end