Skip to content
This repository has been archived by the owner on Sep 7, 2021. It is now read-only.

Commit

Permalink
gemspec v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Aug 29, 2010
1 parent 6b8ea79 commit e3d0f63
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions mingo.gemspec
@@ -0,0 +1,23 @@
# encoding: utf-8

Gem::Specification.new do |gem|
gem.name = 'mingo'
gem.version = '0.1.0'
gem.date = Time.now.strftime('%Y-%m-%d')

gem.add_dependency 'mongo', '>= 1.0'
gem.add_dependency 'hashie', '>= 0.3.1'
gem.add_development_dependency 'rspec', '~> 2.0.0.beta.20'

gem.summary = "Minimal Mongo"
gem.description = "Mingo is a minimal document-object mapper for MongoDB."

gem.authors = ['Mislav Marohnić']
gem.email = 'mislav.marohnic@gmail.com'
gem.homepage = 'http://github.com/mislav/mingo'

gem.rubyforge_project = nil
gem.has_rdoc = false

gem.files = Dir['Rakefile', '{bin,lib,test,spec}/**/*', 'README*', 'LICENSE*'] & `git ls-files -z`.split("\0")
end

0 comments on commit e3d0f63

Please sign in to comment.