forked from mongodb/mongoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mongoid.gemspec
29 lines (24 loc) · 985 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
# 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 = ["durran@gmail.com"]
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.0.beta"])
s.add_dependency("tzinfo", ["~> 0.3.22"])
s.add_dependency("moped", ["~> 1.4.2"])
s.add_dependency("origin", ["~> 1.0"])
s.files = Dir.glob("lib/**/*") + %w(CHANGELOG.md LICENSE README.md Rakefile)
s.require_path = 'lib'
end