Sha256: ba335addd04751e21057a43de4a01ea578950418e49914fcf52844583b368db7

Contents?: true

Size: 1020 Bytes

Versions: 2

Compression:

Stored size: 1020 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.expand_path("../lib/mongomodel/version", __FILE__)

Gem::Specification.new do |s|
  s.name        = "mongomodel"
  s.version     = MongoModel::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Sam Pohlenz"]
  s.email       = ["sam@sampohlenz.com"]
  s.homepage    = "http://www.mongomodel.org"
  s.summary     = "MongoDB ORM for Ruby/Rails"
  s.description = "MongoModel is a MongoDB ORM for Ruby/Rails similar to ActiveRecord and DataMapper."

  s.required_rubygems_version = ">= 1.3.6"
  s.rubyforge_project         = "mongomodel"
  
  s.add_dependency "activesupport", "~> 3.1"
  s.add_dependency "activemodel",   "~> 3.1"
  s.add_dependency "mongo",         "~> 1.5"
  s.add_dependency "will_paginate", "~> 2.3.15"

  s.add_development_dependency "bundler",     ">= 1.0.0"
  s.add_development_dependency "rspec",       "~> 2.8"
  s.add_development_dependency "guard-rspec", "~> 0.5.0"

  s.files        = `git ls-files`.split("\n")
  s.require_path = 'lib'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mongomodel-0.4.5 mongomodel.gemspec
mongomodel-0.4.4 mongomodel.gemspec