Project

pamela

0.0
No commit activity in last 3 years
No release in over 3 years
See the README or https://github.com/febuiles/pamela for usage information.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
 Project Readme

Pamela

I find myself writing the same Rake tasks over and over. Pamela takes care of that for me.

Installation

$ gem install pamela

Usage

In your Rakefile:

require 'pamela'

Pamela.load :spec, :console

Then in your terminal:

$ rake spec
$ rake console

There are currently three tasks available: spec, test and console.

Tasks

spec

Adds your typical rake spec task. Includes all the files ending in _spec.rb in your spec/ directory.

test

Adds the rake test task. Includes all the files matchin in *test*.rb in your test/ directory.

console

Adds a console to your application that loads the environment in lib/. This is useful for debugging your applications without having to manually require the files everytime. Expects the file name of the main file (lib/something.rb) to match the project directory name (something/).

Ch-ch-ch-changes

This is a work in progress. Fork away and send pull requests. Report any problems in the issue tracker.

Federico Builes - federico.builes@gmail.com