forked from johnewart/ruby-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-metrics.gemspec
More file actions
32 lines (27 loc) · 1.14 KB
/
ruby-metrics.gemspec
File metadata and controls
32 lines (27 loc) · 1.14 KB
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ruby-metrics/version"
Gem::Specification.new do |s|
s.name = "ruby-metrics"
s.version = Metrics::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["John Ewart"]
s.email = ["john@johnewart.net"]
s.homepage = "https://github.com/johnewart/ruby-metrics"
s.summary = %q{Metrics for Ruby}
s.description = %q{A Ruby implementation of metrics inspired by @coda's JVM metrics for those of us in Ruby land}
s.rubyforge_project = "ruby-metrics"
s.add_dependency "json"
s.add_dependency "ruby-units"
s.add_development_dependency "rspec"
s.add_development_dependency "simplecov", [">= 0.3.8"] #, :require => false
if RUBY_PLATFORM =~ /darwin/
s.add_development_dependency "autotest-fsevent"
s.add_development_dependency "autotest-growl"
s.add_development_dependency "ZenTest"
end
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"]
end