Project

rakeutils

0.0
No commit activity in last 3 years
No release in over 3 years
Rake task classes for 3rd party apps
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.7
>= 0

Runtime

 Project Readme

RakeUtils

A Ruby gem providing helper tasks for calling external applications.

Installation

Add this line to your application's Gemfile:

gem 'rakeutils'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rakeutils

Usage

Within your rakefile, require the tasks you'd like to use:

require "rakeutils" # Require ALL RakeUtils tasks OR

# Require individual tasks as needed
require "rakeutils/filegentask"
require "rakeutils/innotask"
require "rakeutils/javacctask"
require "rakeutils/jjtreetask"
require "rakeutils/ocratask"
require "rakeutils/tex2rtf"
require "rakeutils/versioninc"
require "rakeutils/ziptask"

TODOs

This gem was created quite a while ago and I used java naming conventions when it was written.

  • TODO: Refactor all remaining identifiers to ruby naming conventions.

Bugs/Questions/Get Help

Create an issue at https://github.com/jmcaffee/rakeutils/issues.

Testing

From the root project dir, run:

$ rspec spec/

Contributing

  1. Fork it ( https://github.com/jmcaffee/rakeutils/fork )
  2. Clone it (git clone git@github.com:[my-github-username]/rakeutils.git)
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Create your tests
  5. Commit your changes (git commit -am 'Add some feature')
  6. Push to the branch (git push origin my-new-feature)
  7. Create a new Pull Request