-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Renamed some files to make Hoe happy
- Incremented version number - Added Hoe declarations into rakefile - Added guard statements after Numeric extensions
- Loading branch information
Leigh Caplan
committed
Dec 11, 2008
1 parent
bf99ab1
commit 270e08a
Showing
5 changed files
with
25 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.gemspec | ||
*.gem | ||
/target |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
begin | ||
require 'rubygems' | ||
require 'rake/gempackagetask' | ||
require 'hoe' | ||
require './lib/runt.rb' | ||
rescue Exception | ||
nil | ||
end | ||
|
@@ -14,6 +16,7 @@ require 'rake/contrib/sshpublisher' | |
require 'rake/contrib/rubyforgepublisher' | ||
require 'fileutils' | ||
|
||
|
||
##################################################################### | ||
# Constants | ||
##################################################################### | ||
|
@@ -41,6 +44,12 @@ end | |
# build directory | ||
TARGET_DIR = "target" | ||
|
||
# Trying to auto-build with Hoe. | ||
Hoe.new('runt', PKG_VERSION) do |p| | ||
p.rubyforge_name = 'Runt' # if different than lowercase project name | ||
p.developer('Matthew Lipper', '[email protected]') | ||
end | ||
|
||
##################################################################### | ||
# Targets | ||
##################################################################### | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters