-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathoboe.gemspec
25 lines (19 loc) · 857 Bytes
/
oboe.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
$:.push File.expand_path("../lib", __FILE__)
require "oboe/version"
Gem::Specification.new do |s|
s.name = %q{oboe}
s.version = Oboe::Version::STRING
s.date = Time.now.strftime('%Y-%m-%d')
s.authors = ["Peter Giacomo Lombardo", "Spiros Eliopoulos"]
s.email = %q{traceviewsupport@appneta.com}
s.homepage = %q{http://www.appneta.com/application-performance-management}
s.summary = %q{AppNeta TraceView performance instrumentation gem for Ruby}
s.description = %q{The oboe gem provides TraceView instrumentation for Ruby and Ruby frameworks.}
s.extra_rdoc_files = ["LICENSE"]
s.files = `git ls-files`.split("\n")
s.test_files = Dir.glob("{test}/**/*.rb")
s.extensions = ['ext/oboe_metal/extconf.rb']
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest'
s.add_development_dependency 'bson'
end