-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathlogdna.gemspec
More file actions
executable file
·24 lines (22 loc) · 1.01 KB
/
logdna.gemspec
File metadata and controls
executable file
·24 lines (22 loc) · 1.01 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
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
version = File.open("lib/logdna/version.rb").read.scan(/"([^"]*)"/).first.first
Gem::Specification.new do |spec|
spec.name = "logdna"
spec.version = version
spec.authors = "Gun Woo Choi, Derek Zhou, Vilya Levitskiy, Muaz Siddiqui"
spec.email = "apps+rubygems@logdna.com"
spec.summary = "LogDNA Ruby logger"
spec.homepage = "https://github.com/logdna/ruby"
spec.license = "MIT"
spec.files = Dir.glob("{lib}/**/*.rb") + %w[LICENSE README.md]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
spec.add_runtime_dependency "json", "~> 2.0"
spec.add_runtime_dependency "require_all", "~> 1.4"
spec.add_development_dependency "rubocop", "~> 0.78"
end