module SeoApp

Config module

Config class

Links parsing parts of app

Attributes

configuration[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/seo_app/configuration.rb, line 7
def self.configure
  self.configuration ||= Configuration.new
  yield(configuration)
end
root_path() click to toggle source

SeoApp.root_path.join(‘..’)

# File lib/seo_app.rb, line 10
def self.root_path
  @root_path ||= Pathname.new(File.dirname(File.expand_path('../', __FILE__)))
end