Sha256: 329cf343807dfd9f47e655a6bec316c8ad1e21a7ca84ecb0ebbc0e191e55e45a

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "fozzie"
  s.version     = Fozzie::VERSION
  s.authors     = ["Marc Watts"]
  s.email       = ["marc.watts@lonelyplanet.co.uk"]
  s.summary     = %q{Ruby gem from Lonely Planet Online to register statistics. Currently supports Statsd.}
  s.description = %q{
    Gem to make statistics sending from Ruby applications simple and efficient as possible.
    Currently supports Statsd, and is inspired by the original ruby-statsd gem by Etsy.
  }

  s.rubyforge_project = "fozzie"

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

  s.add_dependency 'sys-uname'
  s.add_dependency 'facets'

  s.add_development_dependency 'rake'
  s.add_development_dependency 'rspec'
  s.add_development_dependency 'guard'
  s.add_development_dependency 'guard-rspec'
  s.add_development_dependency 'rb-fsevent'
  s.add_development_dependency 'sinatra'
  s.add_development_dependency 'rack-test'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fozzie-1.0.1 fozzie.gemspec
fozzie-1.0.0 fozzie.gemspec