Sha256: fbb084f36ed2420156d9c53fd530d14b0ec2541824be5d0f0b0d80653c62e14c
Contents?: true
Size: 900 Bytes
Versions: 7
Compression:
Stored size: 900 Bytes
Contents
create 'template-repository/Example' do |tokens| # Project title (e.g. 'Amazing Application') # At least three characters long, start with a capital character, may contain spaces tokens[:PROJECT_TITLE] = "" # Project id (e.g. 'AmazingApp') # At least three characters long, no spaces, start with a capital character tokens[:PROJECT_ID] = "" # Bundle id (e.g. 'com.acme.amazingapp') # Reverse domain notation, lower case, no spaces tokens[:BUNDLE_ID] = "" # Organization name (e.g. 'ACME') # At least two characters long, may contain spaces tokens[:ORGANIZATION_NAME] = "" # Class prefix (e.g. 'AMZ') # All caps, at least three, starting with an alphabetical character tokens[:CLASS_PREFIX] = "" # Secret toggle (to enable/disable that amazing feature) # Boolean value, either 'true' or 'false' (but without the apostrophes) tokens[:SECRET_TOGGLE] = true end
Version data entries
7 entries across 7 versions & 1 rubygems