0.0
No commit activity in last 3 years
No release in over 3 years
The power of Rake, behind Rack
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
>= 0
~> 3.1

Runtime

~> 1.5
~> 10.3
>= 0
 Project Readme

Rake on Rack

Rake on Rack provides a HTTP interface to execute a given Rakefile's tasks.

Installation

Add this line to your application's Gemfile:

gem 'rake_on_rack'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rake_on_rack

Usage

require 'rake_on_rack'

RakeOnRack.start path_to_rakefile, port

Just make a POST request to /task_name - the request body string is passed to the task as arguments.

Contributing

  1. Fork it ( https://github.com/darnould/rake_on_rack/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request