Project

shoe

0.01
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Configuration-free Rake tasks that read your gemspec. These tasks re-use built-in Rubygems functionality so you can be confident you're shipping what you think you are.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0.0
~> 0.6.4
~> 0.5

Runtime

~> 0.8.7
 Project Readme

Shoe¶ ↑

Configuration-free Rake tasks that read your gemspec and re-use built-in Rubygems functionality.

Shoe works great on both Ruby 1.8 and 1.9.

Install¶ ↑

$ gem install shoe

Use¶ ↑

require 'shoe'
Shoe.install_tasks

Configure¶ ↑

Keep your configuration DRY: use your gemspec! (And friends.)

Shoe::Tasks::Clean

.gitignore

Shoe::Tasks::Compile

#extensions

Shoe::Tasks::Cucumber

cucumber.yml

Shoe::Tasks::Rdoc

#rdoc_options, #extra_rdoc_files

Shoe::Tasks::Ronn

#date, #author

Shoe::Tasks::Test

#test_files

Cherry Pick¶ ↑

If you don’t want to use all the tasks, just instantiate the ones you want:

require 'shoe'

Shoe::Tasks::Cucumber.new('my_project.gemspec')
Shoe::Tasks::Rdoc.new('my_project.gemspec')

Contribute¶ ↑

Feel free to send issues / pull requests / messages through GitHub.