Sha256: f769e5329fc17d53ecf5425723e241f8d13fc6eb21a528fb2d792272d53f4331
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 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.6' s.add_runtime_dependency 'redis', '>= 2.1.1' s.add_runtime_dependency 'system_timer', '>= 1.0.0' s.add_runtime_dependency 'time_ext', '>= 0.2.8' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
redistat-0.0.4 | redistat.gemspec |