forked from mongodb/mongoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mongoid.gemspec
30 lines (25 loc) · 1023 Bytes
/
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
# 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.license = "MIT"
s.required_ruby_version = ">= 1.9"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "mongoid"
s.add_dependency("activemodel", ["~> 4.0"])
s.add_dependency("tzinfo", [">= 0.3.37"])
s.add_dependency("mongo", ["= 2.1.0.rc0"])
s.add_dependency("origin", ["~> 2.1"])
s.files = Dir.glob("lib/**/*") + %w(CHANGELOG.md LICENSE README.md Rakefile)
s.test_files = Dir.glob("spec/**/*")
s.require_path = 'lib'
end