Created
August 2, 2010 12:48
-
-
Save mikeobrien/504594 to your computer and use it in GitHub Desktop.
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
require 'rubygems' | |
require 'rake/gempackagetask' | |
task :default => [:package] | |
spec = Gem::Specification.new do |spec| | |
spec.platform = Gem::Platform::RUBY | |
spec.summary = "NoRM - A MongoDB driver for .Net" | |
spec.name = "norm" | |
spec.version = "0.9.7" | |
spec.requirements << "none" | |
spec.files = Dir["lib/**/*"] + Dir["docs/**/*"] | |
spec.authors = ["Andrew Theken"] | |
spec.homepage = "http://github.com/atheken/NoRM" | |
spec.description = "NoRM is a MongoDB driver for .Net designed to provide access to strongly/statically-typed documents and collections." | |
end | |
Rake::GemPackageTask.new(spec) do |package| | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment