Skip to content

Commit

Permalink
adding some release type stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron J. Bedra committed Apr 7, 2008
1 parent 2cde2ee commit 3c05737
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
tmp
rcov_tmp
pkg
2 changes: 1 addition & 1 deletion Manifest.txt
Expand Up @@ -6,4 +6,4 @@ lib/obsidian.rb
lib/obsidian/rails/model_update_tracker.rb
test/obsidian_test.rb
test/test_helper.rb
test/obsidian/rails/model_update_tracker.rb
test/obsidian/rails/model_update_tracker_test.rb
13 changes: 13 additions & 0 deletions Rakefile
Expand Up @@ -2,10 +2,23 @@ require 'rubygems'
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'hoe'
require 'lib/obsidian'

desc 'Default: run unit tests.'
task :default => :test

Hoe.new('obsidian', Obsidian::VERSION) do |p|
p.rubyforge_name = "thinkrelevance"
p.description = "It's metastable"
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
p.name = 'obsidian'
p.summary = "It's metastable"
p.author = "Relevance"
p.email = "opensource@thinkrelevance.com"
p.url = "http://opensource.thinkrelevance.com"
end

desc 'Test obsidian.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
Expand Down

0 comments on commit 3c05737

Please sign in to comment.