-
Notifications
You must be signed in to change notification settings - Fork 1
/
five9tools.gemspec
35 lines (30 loc) · 1.43 KB
/
five9tools.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
27
28
29
30
31
32
33
34
35
require "./lib/five9tools/version"
Gem::Specification.new do |spec|
spec.name = "five9tools"
spec.version = Five9Tools::VERSION
spec.authors = ["sherbondito"]
spec.email = ["zachary.sherbondy@gmail.com"]
spec.summary = "Ruby wrapper for the Five9 Administration APIs"
spec.description = "Bulk administer Five9 systems with this simple toolset."
spec.homepage = "https://github.com/sherbondito/"
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/sherbondito/audiotools"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.require_paths = ["lib"]
spec.files = Dir["lib/**/*.rb"]
spec.add_runtime_dependency "os", "~> 1.1.0"
spec.add_runtime_dependency "colorize", "~> 0.8.1"
spec.add_runtime_dependency "fileutils", "~> 1.4.1"
spec.add_runtime_dependency "nokogiri"
spec.add_runtime_dependency "savon", "~> 2.12.0"
spec.add_runtime_dependency "dotenv"
spec.add_runtime_dependency "amazing_print"
spec.add_runtime_dependency "htmlentities"
spec.add_runtime_dependency "zlib"
spec.add_runtime_dependency "stringio"
spec.add_runtime_dependency "activesupport"
spec.add_development_dependency "rspec", "~> 3.6"
end