Subl Init
It simplifies the process of new Sublime Text projects creation
Installation
Install sublinit on your machine as any other Ruby Gem
$ gem install sublinit
Demo
Usage
Ruby
Executing $ sublinit ruby --new --name newproject --gemset npr
will
- Create
newproject
directory - Initialize git repository inside
- Create
npr
gemset - Create
.versions.conf
RVM configuration inside - Create
newproject.sublime-project
with Gems folder reference inside - Open newly created project in Sublime Text
If you won't pass --new
option, SublInit won't create any folders and will run inside of the current one
Other options
-
--no-open
do not open the project in Sublime Text -
--origin
your project's default remote, e.ggit@github.com:eiskrenkov/sublinit.git
Plain
Executing $ sublinit plain --new --name newproject
will
- Create
newproject
directory - Create
newproject.sublime-project
- Open newly created project in Sublime Text
If you won't pass --new
option, SublInit won't create any folders and will run inside of the current one
Other options
-
--no-open
do not open the project in Sublime Text