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

Version Path
mustache-0.10.0 test/fixtures/passenger.rb
mustache-0.9.2 test/fixtures/passenger.rb
mustache-0.9.1 test/fixtures/passenger.rb
mustache-0.9.0 test/fixtures/passenger.rb
mustache-0.7.0 test/fixtures/passenger.rb
mustache-0.5.1 examples/passenger.rb
mustache-0.5.0 examples/passenger.rb
mustache-0.4.2 examples/passenger.rb
mustache-0.4.1 examples/passenger.rb
mustache-0.4.0 examples/passenger.rb
mustache-0.3.2 examples/passenger.rb
mustache-0.3.1 examples/passenger.rb
mustache-0.3.0 examples/passenger.rb
mustache-0.2.2 examples/passenger.rb