Created
August 11, 2010 21:41
-
-
Save mikeobrien/519827 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 = "A MongoDB driver for .Net" | |
spec.name = "norm" | |
spec.version = "0.9.8" | |
spec.requirements << "none" | |
spec.files = Dir["lib/**/*"] + Dir["docs/**/*"] | |
spec.add_runtime_dependency("xunitnet", "> 1.5.0") | |
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