-
Notifications
You must be signed in to change notification settings - Fork 63
/
mongoid_spacial.gemspec
21 lines (17 loc) · 1.06 KB
/
mongoid_spacial.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/mongoid_spacial/spacial/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Ryan Ong", "Arthur Neves"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{mongoid_spacial simplifies spacial calculations. Adds integration into mongoid so pagination and other function continue to work. It adds symbol extentions to simplify query creation.}
gem.summary = %q{A Mongoid Extention that simplifies and adds support for MongoDB Geo Spacial Calculations.}
gem.homepage = "https://github.com/ryanong/mongoid_spacial"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "mongoid_spacial"
gem.require_paths = ["lib"]
gem.version = Mongoid::Spacial::VERSION
gem.add_dependency("mongoid", ['>= 2.1.0', '< 3.0.0'])
gem.add_dependency('activesupport', ["~> 3.0"])
end