-
Notifications
You must be signed in to change notification settings - Fork 6
/
fozzie.gemspec
34 lines (29 loc) · 1.22 KB
/
fozzie.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*- 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 = ["[email protected]"]
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 -- {test,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 'rb-inotify'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'sinatra'
s.add_development_dependency 'rack-test'
s.add_development_dependency 'actionpack'
end