You should rewrite this and the other README.md files to document your kit.
This is a kit skeleton you can use as a template for building your own kit. For more information about Kit, visit the project homepage.
You can build your own kit by using the skeleton kit as a template. Just clone this with
$ git clone git://github.com/razor-x/skeleton-kit.git my-kit
and then install gem dependencies using
$ bundle
Next, you can create the database with
$ rake db:migrate
Each file and directory is individually documented with yard if you want to dive in, otherwise you can start with some more comprehensive documentation.
If you want to merge in future updates from this project and have your own origin, set up a separate branch to track this.
$ git remote rename origin skeleton-kit
$ git branch skeleton-kit
$ git branch -u skeleton-kit/master skeleton-kit
Then add an origin and push master
$ git remote add origin git@github.com:username/my-kit.git
$ git push -u origin master
Now, the skeleton-kit
branch will pull changes from this project,
which you can then merge into your other branches.
The skeleton-kit source is currently hosted at github. To clone the project run
$ git clone git://github.com/razor-x/skeleton-kit.git
skeleton-kit is licensed under the MIT license.
This software is provided "as is" and without any express or implied warranties, including, without limitation, the implied warranties of merchantibility and fitness for a particular purpose.