Skip to content

wxianfeng/rake_ui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RakeUI

DESCRIPTION:

RakeUI is a Rails 3.1 Engine that provides a simple web UI for your Rake tasks.

REQUIREMENTS:

  • Node.js

  • Socket.io

  • Rails 3.1

INSTALL:

In your Gemfile:

gem 'rake_ui', '0.6.0'
or
gem 'rake_ui', :git => "git://github.com/wxianfeng/rake_ui.git", :branch => 'wxianfeng'

In your routes.rb file:

Rails.application.routes.draw do
  mount RakeUi::Engine => "/rake_ui"
end

Config config/rake_ui.yml

host: '192.168.10.107'
log: '/data/projects/entos/log/rake.log'

Config config/tasks.yml

- 'rake about'  
- 'rake routes'

Start the node server:

rake start_node_server

Once your Rails app is started, visit /rake_ui to see your rake tasks. All stdout will be displayed in the browser under ‘terminal output’.

Preview

LICENSE:

(The MIT License)

Copyright © 2012:

About

Rails 3.1 engine that provides a web UI for Rake tasks

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 85.2%
  • JavaScript 14.8%