Sha256: 183c3a76f0dc34a86b28eb9a6a733d9f42a12adf4c8f74c13bca889766c97fc3

Contents?: true

Size: 1.07 KB

Versions: 4

Compression:

Stored size: 1.07 KB

Contents

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

Gem::Specification.new do |gem|
  gem.name          = "modis"
  gem.version       = Modis::VERSION
  gem.authors       = ["Ian Leitch"]
  gem.email         = ["port001@gmail.com"]
  gem.description   = "ActiveModel + Redis"
  gem.summary       = "ActiveModel + Redis"
  gem.homepage      = ""

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

  gem.add_runtime_dependency 'activemodel', '>= 3.0'
  gem.add_runtime_dependency 'activesupport', '>= 3.0'
  gem.add_runtime_dependency 'redis', '>= 3.0'
  gem.add_runtime_dependency 'hiredis', '>= 0.5'
  gem.add_runtime_dependency 'connection_pool', '>= 2'

  if defined? JRUBY_VERSION
    gem.platform = 'java'
    gem.add_runtime_dependency 'msgpack-jruby'
  else
    gem.add_runtime_dependency 'msgpack', '>= 0.5'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
modis-1.4.2 modis.gemspec
modis-1.4.1-java modis.gemspec
modis-1.4.1 modis.gemspec
modis-1.4.0 modis.gemspec