forked from realestate-com-au/newrelic-sequel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtalentbox-newrelic-sequel.gemspec
More file actions
30 lines (26 loc) · 1.07 KB
/
talentbox-newrelic-sequel.gemspec
File metadata and controls
30 lines (26 loc) · 1.07 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "newrelic_sequel/version"
Gem::Specification.new do |s|
s.name = "talentbox-newrelic-sequel"
s.version = NewRelicSequel::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["REA Group", "Metrilio S.A."]
s.email = [
"yong.fu@rea-group.com",
"wei.guangcheng@rea-group.com",
"jonathan.tron@metrilio.com"
]
s.homepage = "http://github.com/TalentBox/newrelic-sequel"
s.summary = "Sequel instrumentation for Newrelic."
s.description = "Sequel instrumentation for Newrelic with sequel-rails and PostgreSQL CTE support"
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.extra_rdoc_files = ["README.markdown"]
s.rdoc_options = ["--charset=UTF-8"]
s.add_runtime_dependency "sequel", "> 3.22"
s.add_runtime_dependency "newrelic_rpm", "~> 3.0"
s.add_development_dependency "rake"
end