No commit activity in last 3 years
No release in over 3 years
Auto generate rails project based on mongo, backboneJS, bootstrap css.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.3
>= 0
~> 2.6

Runtime

>= 0
 Project Readme

##Auto generate professional rails project based on mongo, backboneJs, bootstrap css.

Let you become a professional rails programmer only one minute !

Installation

Add this line to your application's Gemfile:

gem 'rails_mongo_backbone_bootstrap_tmpl'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rails_mongo_backbone_bootstrap_tmpl

Usage

Usage:
	rmbb_generator new

Options:
	-p, [--app-path=APP_PATH]  # where you want your rails application placed to
	-d, [--db-name=DB_NAME]    # set database name
	-r, [--rvmrc=RVMRC]        # create .rvmrc file with rvmrc string value

Auto create new rails app based on mongo , devise, backboneJs, bootstrap

Start with any below sample:  
1. To create new rails app and place it to current user home path.  
	 rmbb_generator new YOUR_APP_NAME -p "~/"  

2. To create new rails app and using a special db name.   
	 rmbb_generator new YOUR_APP_NAME -p "~/" -d "YOUR_DB_NAME"  

3. To create new rails app and using a special rmv gemset.  
	 rmbb_generator new YOUR_APP_NAME -p "~/" -d "YOUR_DB_NAME" -r "rvm use YOUR_RUBY_VERSION_xxx@GEM_SET_NAME"  

Last: 
1. cd to new app path.   
(Before do this, I suggest you to create a independent gemset(http://rvm.io/gemsets) use rvm(https://rvm.io/) for this new app, then add a .rvmrc file to this app directory.) 
2. run 'bundle install' and install all gems. (You can go to a cup of coffee)  
3. run 'rails s' to start your professional rails journey. 

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request