forked from mongodb/mongoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mongoid.gemspec
31 lines (25 loc) · 1.05 KB
/
mongoid.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# encoding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require "mongoid/version"
Gem::Specification.new do |s|
s.name = "mongoid"
s.version = Mongoid::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Durran Jordan"]
s.email = ["[email protected]"]
s.homepage = "http://mongoid.org"
s.summary = "Elegant Persistance in Ruby for MongoDB."
s.description = "Mongoid is an ODM (Object Document Mapper) Framework for MongoDB, written in Ruby."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "mongoid"
s.add_dependency("activemodel", ["~> 3.0"])
s.add_dependency("tzinfo", ["~> 0.3.22"])
s.add_dependency("mongo", ["~> 1.3"])
s.add_development_dependency("bson_ext", ["~> 1.3"])
s.add_development_dependency("mocha", ["= 0.9.8"])
s.add_development_dependency("rspec", ["~> 2.4"])
s.add_development_dependency("watchr", ["= 0.6"])
s.files = Dir.glob("lib/**/*") + %w(LICENSE README.rdoc Rakefile)
s.require_path = 'lib'
end