0.0
No commit activity in last 3 years
No release in over 3 years
Semi-static site engine.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

== Engine of War

Static(ish) site engine extracted from "thunderboltlabs.com":http://thunderboltlabs.com and "tammersaleh.com":http://tammersaleh.com.

=== Installation

# Gemfile
gem 'engine_of_war'
# config.ru 
Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8

require 'engine_of_war'

YAML::ENGINE.yamler = 'syck' # Heroku doesn't support 'psych'

EngineOfWar::App.root                 = File.dirname(__FILE__)
EngineOfWar::App.github_info          = "thunderboltlabs/thunderboltlabs"
EngineOfWar::App.site_title           = "Thunderbolt Labs"
EngineOfWar::App.google_analytics_key = "UA-xxxxxxxx-1"
EngineOfWar::App.gauges_key           = "xxxxxxxxxxxxxxxxxxxxxxxx"
EngineOfWar::App.newrelic_key         = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

run EngineOfWar::App

=== Layout