Sha256: 32967f17e55d786fb16c035c17c2171227cf44bd1fea6e2ab444b666d14867cd
Contents?: true
Size: 410 Bytes
Versions: 34
Compression:
Stored size: 410 Bytes
Contents
$LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib' require 'mustache' class Passenger < Mustache self.path = File.dirname(__FILE__) self.template_extension = 'conf' def server "example.com" end def deploy_to "/var/www/example.com" end def stage "production" end def timestamp Time.now.strftime('%Y%m%d%H%M%S') end end if $0 == __FILE__ puts Passenger.to_text end
Version data entries
34 entries across 34 versions & 4 rubygems