forked from mongomapper/mongomapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmongo_mapper.gemspec
More file actions
19 lines (17 loc) · 814 Bytes
/
mongo_mapper.gemspec
File metadata and controls
19 lines (17 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# encoding: UTF-8
require File.expand_path('../lib/mongo_mapper/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'mongo_mapper'
s.homepage = 'http://github.com/jnunemaker/mongomapper'
s.summary = 'A Ruby Object Mapper for Mongo'
s.require_path = 'lib'
s.authors = ['John Nunemaker']
s.executables = ['mmconsole']
s.version = MongoMapper::Version
s.platform = Gem::Platform::RUBY
s.files = Dir.glob("{bin,examples,lib,rails,test}/**/*") + %w[LICENSE UPGRADES README.rdoc]
s.add_dependency 'activemodel', '~> 3.0'
s.add_dependency 'activesupport', '~> 3.0'
s.add_dependency 'plucky', '~> 0.3.8'
end