Sha256: 790e9fc1efd2db845dc9713a6d6d52ce1a8e568edafe8d651a1b24896fdb19fd

Contents?: true

Size: 1.61 KB

Versions: 1

Compression:

Stored size: 1.61 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/rainbows.rb
  rake rainbows:restart                # Hot restart rainbows server
  rake rainbows:start                  # Start rainbows server
  rake rainbows:stop                   # Stop rainbows server

  # has config/puma.rb
  rake puma:restart                # Hot restart puma server
  rake puma:start                  # Start puma server
  rake puma:stop                   # Stop puma server

  # has config/mongoid.yml
  rake mongodb:dump                   # mongodump
  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 'h2ocube_rails_tasks'

2. update bundle

  bundle install

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

  take -T

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
h2ocube_rails_tasks-0.0.4 README.rdoc