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] = "Amazing Application" # Project id (e.g. 'AmazingApp') # At least three characters long, no spaces, start with a capital character tokens[:PROJECT_ID] = "AmazingApp" # Bundle id (e.g. 'com.acme.amazingapp') # Reverse domain notation, lower case, no spaces tokens[:BUNDLE_ID] = "com.acme.amazingapp" # Organization name (e.g. 'ACME') # At least two characters long, may contain spaces tokens[:ORGANIZATION_NAME] = "ACME" # Class prefix (e.g. 'AMZ') # All caps, at least three, starting with an alphabetical character tokens[:CLASS_PREFIX] = "AMZ" tokens[:SECRET_TOGGLE] = true end