mirror of
https://github.com/jimeh/redistat.git
synced 2026-02-19 13:26:39 +00:00
31 lines
1.2 KiB
Ruby
31 lines
1.2 KiB
Ruby
# -*- 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 'system_timer', '>= 1.0.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
|