Sha256: 1c40634a46eb7ba80a96fad6f2e1cbd86f9238f8b6ee320fadb6c7664214b798

Contents?: true

Size: 1.31 KB

Versions: 4

Compression:

Stored size: 1.31 KB

Contents

== 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:dump                   # mongodump
  rake mongodb:clear                  # Clear mongo folder
  rake mongodb:restore                # mongorestore
  rake mongodb:start                  # Start Mongodb
  rake mongodb:stop                   # Stop 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'

2. update bundle

  bundle install

3. try `rake -T`, and enjoy it :)

  take -T

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
zfben_rails_rake-0.0.21 README.rdoc
zfben_rails_rake-0.0.20 README.rdoc
zfben_rails_rake-0.0.19 README.rdoc
zfben_rails_rake-0.0.18 README.rdoc