Module: Jeckyl
- Defined in:
- lib/jeckyl.rb,
lib/jeckyl/errors.rb,
lib/jeckyl/helpers.rb,
lib/jeckyl/version.rb
Overview
Created by Jevoom
01-Oct-2014
General tidy up of gem (README, rspec tests etc) to bring things up to date.
Defined Under Namespace
Modules: Helpers Classes: Config, ConfigError, ConfigFileMissing, ConfigSyntaxError, JeckylError, ReportFileError, UnknownParameter
Constant Summary collapse
- ConfigRoot =
Deprecated.
Use config_dir instead
default location for all config files
'/etc/jerbil'
- Options =
Deprecated.
Please use Jeckyl::Config
define an alias for backwards compatitbility
Config
- Version =
version set to 0.4.0
'0.4.0'
- Version_Date =
date set to 01-Oct-2014
'01-Oct-2014'
- Ident =
ident string set to: jeckyl-0.4.0 01-Oct-2014
'jeckyl-0.4.0 01-Oct-2014'
Class Method Summary collapse
-
.config_dir ⇒ Object
the default system location for jeckyl config file.
Class Method Details
.config_dir ⇒ Object
the default system location for jeckyl config file
This location can be set with the environment variable JECKYL_CONFIG_DIR
31 32 33 |
# File 'lib/jeckyl.rb', line 31 def Jeckyl.config_dir ENV['JECKYL_CONFIG_DIR'] || '/etc/jerbil' end |