Module: Soryo

Defined in:
lib/soryo.rb,
lib/classes/config.rb,
lib/classes/plugin.rb,
lib/testers/tester.rb,
lib/testers/preview.rb,
lib/classes/template.rb,
lib/commands/command.rb,
lib/plugins/premailer.rb,
lib/classes/fileinstance.rb,
lib/commands/sendcommand.rb,
lib/commands/testcommand.rb,
lib/commands/buildcommand.rb

Defined Under Namespace

Classes: BrowserTester, BuildCommand, Command, Config, FileInstance, Plugin, PremailerPlugin, SendCommand, Template, TestCommand, Tester

Constant Summary collapse

DEFAULTS =
{
    # Output
    'output_location' => Dir.pwd,
    'output_name' => nil,

    # Testing
    'test_type' => 'preview',
    'test_apikey' => nil,
    'test_username' => nil,
    'test_password' => nil,

    # Sending
    'mail_send' => 'local',
    'mail_smtpserver' => nil,
    'mail_username' => nil,
    'mail_password' => nil,
    'mail_fromaddress' => nil,
    'mail_subject' => nil
}