-
Notifications
You must be signed in to change notification settings - Fork 133
/
influxdb.gemspec
26 lines (22 loc) · 1013 Bytes
/
influxdb.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
25
26
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'influxdb/version'
Gem::Specification.new do |spec|
spec.name = "influxdb"
spec.version = InfluxDB::VERSION
spec.authors = ["Todd Persen"]
spec.email = ["influxdb@googlegroups.com"]
spec.description = "This is the official Ruby library for InfluxDB."
spec.summary = "Ruby library for InfluxDB."
spec.homepage = "http://influxdb.org"
spec.license = "MIT"
spec.files = `git ls-files`.split($/) # rubocop:disable Style/SpecialGlobalVars
spec.test_files = spec.files.grep(%r{^(test|spec|features|smoke)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.2.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.6"
spec.add_development_dependency "rubocop", "~> 0.61.1"
spec.add_development_dependency "webmock", "~> 3.0"
end