Project

coronate

0.0
No commit activity in last 3 years
No release in over 3 years
Corona project builder tools
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 1.8.7
~> 3.12
~> 2.8.0

Runtime

>= 0
 Project Readme

Corona project builder tools.

Installation

$ gem install coronate 

Help

$ coronate 
Commands:
  coronate app [NAME]      # generate a corona app project
  coronate ebook [NAME]    # generate a corona ebook project
  coronate game [NAME]     # generate a corona game project
  coronate help [COMMAND]  # Describe available commands or one specific command
  coronate project [NAME]  # generate a corona project
  coronate scene [NAME]    # generate an scene

Options:
  -w, [--width=N]   # width
                    # Default: 320
  -h, [--height=N]  # height
                    # Default: 480
  -l, [--layout]    # layout
                    # Default: true

Generate a corona blank project

$ cb project helloworld   # default width=320 height=480 orientation=landscape
$ cb project helloworld -w 320 -h 568 --no-landscape # width=320 height=568 orientation=portrait         	  

Generate a corona game project

$ cb game hellogame   # default width=320 height=480 orientation=landscape
$ cb game hellogame -w 320 -h 568 --no-landscape # width=320 height=568 orientation=portrait 

Generate a corona ebook project

$ cb ebook helloebook   # default width=320 height=480 orientation=landscape
$ cb ebook helloebook -w 320 -h 568 --no-landscape # width=320 height=568 orientation=portrait 

Generate a corona app project

$ cb app helloapp   # default width=320 height=480 orientation=landscape
$ cb app helloapp -w 320 -h 568 --no-landscape # width=320 height=568 orientation=portrait         

Generate a scene file

$ coronate scene page1