Sha256: af6dd00407ad309d83bd7e8687456fcb2e5aace2ec1868f66d3d61a51ca72d09

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'on_the_map/version'

Gem::Specification.new do |spec|
  spec.name          = "on_the_map"
  spec.version       = OnTheMap::VERSION
  spec.authors       = ["Kristian Mandrup"]
  spec.date          = "2013-03-13"
  spec.summary       = "Add map, address and geocoding functionality to your Mongoid models"
  spec.description   = "Makes it easy to add functionality to models related to geocoding, addressing and placing them as pins on a map"
  spec.email         = "kmandrup@gmail.com"
  spec.homepage      = "https://github.com/kristianmandrup/on_the_map"
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_dependency 'rails',         '>= 3.2'

  spec.add_dependency 'mongoid',       '>= 3.1'

  spec.add_dependency 'sugar-high',    '~> 0.7.3'
  spec.add_dependency 'hashie',        '>= 2.0'
  spec.add_dependency 'concerned',     '>= 0.1.5'

  spec.add_development_dependency 'rspec-rails', '>= 2.12'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
on_the_map-0.1.5 on_the_map.gemspec
on_the_map-0.1.4 on_the_map.gemspec