-
Notifications
You must be signed in to change notification settings - Fork 15
/
splunk-client.gemspec
22 lines (20 loc) · 1.1 KB
/
splunk-client.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.authors = ["Christopher Brito"]
gem.email = ['[email protected]']
gem.description = %q{splunk-client is a simple Ruby library for interfacing with Splunk's REST API. It is API 5 compatable and provides an elegant native Ruby iterface for working with Splunk results and alerts.}
gem.summary = %q{Ruby Library for interfacing with Splunk's REST API}
gem.homepage = 'http://github.com/cbrito/splunk-client'
gem.date = Time.now.strftime("%Y-%m-%d")
gem.files = Dir.glob("{bin,lib,spec}/**/*") + %w(VERSION LICENSE README.md Rakefile Gemfile Gemfile.lock)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "splunk-client"
gem.require_paths = ["lib"]
gem.version = File.read("VERSION").strip
gem.add_dependency("nokogiri")
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "simplecov-rcov"
gem.add_development_dependency "json"
end