No release in over 3 years
A set of simple Rake tasks: build, install, release, test, clean, clobber.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 13
 Project Readme

simple-rake-tasks

Simple, straightforward Rake tasks for building and releasing Ruby gems.

Philosophy

This gem provides basic Rake tasks for gem development without unnecessary complexity or magic. It reads your .gemspec file and defines tasks for building, installing, and releasing your gem.

No configuration files. No generators. No dependencies beyond Rake itself.

Installation

gem install simple-rake-tasks

Usage

In your project's Rakefile:

require 'simple-rake-tasks'

That’s it. You now have these tasks available:

rake build     # Build your gem into the pkg directory
rake install   # Build and install your gem into system gems
rake release   # Build, tag, and push your gem to rubygems.org
rake test      # Run tests
rake clean     # Remove temporary products
rake clobber   # Remove generated files

Requirements

  • Ruby
  • Rake
  • A .gemspec file in your project root

License

MIT