Projects
The define_project block specifies meta-data relating to the project itself, e.g. it's name, version, the authors, etc.
# Project Metadata
define_project "my-project" do |project|
project.title = "My Project"
project.summary = 'A brief one line summary of the project.'
project.description = <<-EOF
My Project description.
EOF
project.license = 'MIT License'
project.add_author 'Samuel Williams', email: 'samuel.williams@oriontransfer.co.nz'
# project.website = 'http://MyProject.com/'
project.version = '0.1.0'
end
project.title is used by project generators so it must follow Title Case formatting rules to be correctly processed.