Skip to content

Instantly share code, notes, and snippets.

@mikeobrien
Created August 2, 2010 12:48
Show Gist options
  • Save mikeobrien/504594 to your computer and use it in GitHub Desktop.
Save mikeobrien/504594 to your computer and use it in GitHub Desktop.
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