No commit activity in last 3 years
No release in over 3 years
This rubygem does not have a description or summary.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

SUMMARY¶ ↑

This is plugin to add some useful tasks to rails.

# has .git folder
rake git:clear                      # Clear files in .gitignore
rake git:commit[comment]            # Git commit with your comment
rake git:pull                       # Git pull
rake git:push[comment]              # Git push with your comment

# has unicorn.rb
rake unicorn:restart                # Hot restart unicorn server
rake unicorn:start                  # Start unicorn server
rake unicorn:stop                   # Stop unicorn server

# has config/mongoid.yml
rake mongodb:start                  # Start Mongodb
rake mongodb:stop                   # Stop Mongodb
rake mongodb:dump                   # mongodump
rake mongodb:clear                  # Clear mongo folder
rake mongodb:restore                # mongorestore
rake mongodb:repair                 # Repair Mongodb

# has initializers/resque.rb
rake resque:clear                   # Clear Resque data
rake resque:debug                   # Start Resque for debug
rake resque:start                   # Start Resque daemon worker
rake resque:stop                    # Stop Resque worker
rake resque:web                     # Start Resque web interface

Getting Started¶ ↑

  1. adding gem to Gemfile

gem 'zfben_rails_rake'
  1. update bundle

bundle install
  1. try ‘rake -T`, and enjoy it :)

take -T