Sha256: 7894a43b6e6e3b04ed635ace21081d02c44195b297fe37af8a83d56a5478687e

Contents?: true

Size: 1.1 KB

Versions: 2

Compression:

Stored size: 1.1 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "redistat"
  s.version     = Redistat::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Jim Myhrberg"]
  s.email       = ["contact@jimeh.me"]
  s.homepage    = "http://github.com/jimeh/redistat"
  s.summary     = %q{A Redis-backed statistics storage and querying library written in Ruby.}
  s.description = %q{A Redis-backed statistics storage and querying library written in Ruby.}

  s.rubyforge_project = "redistat"

  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"]
  
  s.add_runtime_dependency 'activesupport', '>= 2.3.0'
  s.add_runtime_dependency 'json', '>= 1.4.0'
  s.add_runtime_dependency 'redis', '>= 2.1.0'
  s.add_runtime_dependency 'time_ext', '>= 0.2.8'
  
  s.add_development_dependency 'rspec', '>= 2.1.0'
  s.add_development_dependency 'yard', '>= 0.6.3'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
redistat-0.0.8 redistat.gemspec
redistat-0.0.7 redistat.gemspec