Sha256: 3d71e856a286e60521c3ed65c55bc8a3eaccda574f044b3f80c44d1ca40ced2e

Contents?: true

Size: 983 Bytes

Versions: 9

Compression:

Stored size: 983 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name = "couch_potato"
  s.summary = %Q{Ruby persistence layer for CouchDB}
  s.email = "alex@upstre.am"
  s.homepage = "http://github.com/langalex/couch_potato"
  s.description = "Ruby persistence layer for CouchDB"
  s.authors = ["Alexander Lang"]
  s.version     = CouchPotato::VERSION
  s.platform    = Gem::Platform::RUBY

  s.add_dependency 'json', '~> 1.6'
  s.add_dependency 'couchrest', '~>1.2.0'
  s.add_dependency 'activemodel'

  s.add_development_dependency 'rspec', '~>2.11.0'
  s.add_development_dependency 'timecop'
  s.add_development_dependency 'tzinfo'
  s.add_development_dependency 'rake'

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
couch_potato-1.4.0 couch_potato.gemspec
couch_potato-1.3.0 couch_potato.gemspec
couch_potato-1.2.0 couch_potato.gemspec
couch_potato-1.1.4 couch_potato.gemspec
couch_potato-1.1.2 couch_potato.gemspec
couch_potato-1.1.1 couch_potato.gemspec
couch_potato-1.1.0 couch_potato.gemspec
couch_potato-1.0.1 couch_potato.gemspec
couch_potato-1.0.0 couch_potato.gemspec