-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathnewrelic-hanami.gemspec
More file actions
23 lines (18 loc) · 854 Bytes
/
newrelic-hanami.gemspec
File metadata and controls
23 lines (18 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'newrelic-hanami/version'
Gem::Specification.new do |spec|
spec.name = 'newrelic-hanami'
spec.version = NewRelic::Hanami::VERSION
spec.authors = ['Yuri Artemev']
spec.email = ['i@artemeff.com']
spec.summary = %q{Gem for connecting NewRelic and Hanami}
spec.homepage = 'https://github.com/artemeff/newrelic-hanami'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ['lib']
spec.add_runtime_dependency 'newrelic_rpm'
spec.add_runtime_dependency 'hanami-controller', '> 0.4.0', "< 2"
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec'
end