-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfreeclimb.gemspec
33 lines (28 loc) · 2.11 KB
/
freeclimb.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
# #FreeClimb API
#
# FreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request.
#
# The version of the OpenAPI document: 1.0.0
# Contact: [email protected]
# Generated by: https://openapi-generator.tech
# OpenAPI Generator version: 7.9.0
#
$:.push File.expand_path("../lib", __FILE__)
require "freeclimb/version"
Gem::Specification.new do |s|
s.name = "freeclimb"
s.version = Freeclimb::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["OpenAPI-Generator"]
s.email = ["[email protected]"]
s.homepage = "https://freeclimb.com"
s.summary = "FreeClimb API Ruby Gem"
s.description = "FreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request."
s.license = "Unlicense"
s.required_ruby_version = ">= 2.4"
s.add_runtime_dependency "typhoeus", "~> 1.0", ">= 1.0.1"
s.add_development_dependency "rspec", "~> 3.6", ">= 3.6.0"
s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
s.executables = []
s.require_paths = ["lib"]
end