Lobstr
deployments so easy, even a zoidberg can do it.
Project Status
Installation
Add this line to your application's Gemfile:
gem 'lobstr'
And then execute:
$ bundle
Or install it yourself as:
$ gem install lobstr
Usage
$ lob deploy branch@environment
Since deploy
is the default task, Lobstr supports additional syntax to
save your typing fingers:
# without branch or @ (requires task name though), currently defaults to "master"
$ lob deploy production
# without task name, but full branch and environment
$ lob branch@environment
# without task name or environment, currently defaults to "production"
$ lob branch@
# without task name or branch, currently defaults to "master"
$ lob @producuction
# without any input, currently defaults to "master@production"
$ lob
Configuration
Coming soon
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request