-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Snehit Gajjar
committed
Feb 8, 2019
1 parent
d4e0e49
commit 8ab952d
Showing
9 changed files
with
20 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
lib = File.expand_path('lib', __dir__) | ||
# coding: utf-8 | ||
|
||
lib = File.expand_path('../lib', __FILE__) | ||
|
||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
|
||
|
@@ -9,19 +11,19 @@ Gem::Specification.new do |spec| | |
spec.add_dependency 'json', '~> 2.0' | ||
spec.add_development_dependency 'bundler', '~> 1.0' | ||
|
||
spec.name = 'ets_zabbixapi' | ||
spec.name = 'zabbixapi' | ||
spec.version = ZabbixApi::VERSION | ||
spec.authors = ['Scott Mackensen'] | ||
spec.email = ['scott.mackensen@cerner.com'] | ||
spec.authors = ['Vasiliev D.V.', 'Ivan Evtuhovich'] | ||
spec.email = ['[email protected]', 'evtuhovich@gmail.com'] | ||
|
||
spec.summary = 'Internal Fork of the Zabbixapi Gem located here:https://github.com/express42/zabbixapi' | ||
spec.description = 'Simple and lightweight ruby module for working with the Zabbix API' | ||
spec.homepage = 'https://github.cerner.com/ETS/ets_zabbixapi' | ||
spec.summary = 'Simple and lightweight ruby module for working with the Zabbix API' | ||
spec.description = 'Allows you to work with zabbix api from ruby.' | ||
spec.homepage = 'https://github.com/express42/zabbixapi' | ||
spec.licenses = 'MIT' | ||
|
||
spec.rubyforge_project = 'zabbixapi' | ||
|
||
spec.files = ['.yardopts', 'CHANGELOG.md', 'LICENSE.md', 'README.md', 'zabbixapi.gemspec'] + Dir['lib/**/*.rb'] | ||
spec.require_paths = 'lib' | ||
spec.required_ruby_version = '>= 2.2.0' | ||
spec.required_ruby_version = '>= 2.0.0' | ||
end |