Sha256: a45b3668f66c538dc1b3b51be7edaea916e5e1269c7549a726eb57eb4f330dd8

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

# encoding: utf-8

# This hook will be executed in context of current generator object before templater start to generate new files.
# You can update context hash and register hooks. Don't forget to use merge! instead of merge, because you are
# manipulating with one object, rather than returning new one.

# rango create app blog --models=post,tag --controllers=posts,tags --router=usher|rack-router|rack-mount --template-engine=erubis --no-code-cleaner --no-git-deployer

require "base64"

hook do |generator, context|
  models = [context[:models]].compact.flatten # the flatten thing: if you have --models=post, it would be just a string
  controllers = [context[:controllers]].compact.flatten
  context.merge!(models: models, controllers: controllers)
  context[:orm] = "datamapper" unless context[:orm]
  context[:router] = "usher" unless context[:router]
  context[:template_engine] = "haml" unless context[:template_engine]
  context[:git_deployer] = true unless context.has_key?(:git_deployer)
  context[:code_cleaner] = true unless context.has_key?(:git_deployer)
  context[:email_hash] = Base64.encode64(context[:email])
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rango-0.2.1 stubs/stack/setup.rb
rango-0.2.1.pre stubs/stack/setup.rb