forked from mongomapper/mongomapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongo_mapper.gemspec
executable file
·22 lines (20 loc) · 1000 Bytes
/
mongo_mapper.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# encoding: UTF-8
require File.expand_path('../lib/mongo_mapper/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'mongo_mapper'
s.homepage = 'http://mongomapper.com'
s.summary = 'A Ruby Object Mapper for Mongo'
s.description = 'MongoMapper is a Object-Document Mapper for Ruby and Rails'
s.require_path = 'lib'
s.license = 'MIT'
s.authors = ['John Nunemaker', 'Chris Heald', 'Scott Taylor']
s.executables = ['mmconsole']
s.version = MongoMapper::Version
s.platform = Gem::Platform::RUBY
s.files = Dir.glob("{bin,examples,lib,spec}/**/*") + %w[LICENSE UPGRADES README.rdoc]
s.add_dependency 'activemodel', ">= 3.0.0"
s.add_dependency 'activesupport', '>= 3.0'
s.add_dependency 'plucky', '~> 0.7.0'
s.add_dependency 'mongo', '~> 2.0'
end