Sha256: 26da40ad759f530586f52df02ed11da92e8badbc4209d567657167e430e936c7
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
# frozen_string_literal: true $LOAD_PATH.unshift(::File.join(::File.dirname(__FILE__), "lib")) require "telnyx/version" Gem::Specification.new do |s| s.name = "telnyx" s.version = Telnyx::VERSION s.required_ruby_version = ">= 2.1.0" s.summary = "Ruby bindings for the Telnyx API" s.description = "Telnyx enables anyone to deliver enterprise-grade real-time communications over the internet. See https://telnyx.com for details." s.author = "Telnyx" s.email = "support@telnyx.com" s.homepage = "https://developers.telnyx.com" s.license = "MIT" s.metadata = { "documentation_uri" => "https://developers.telnyx.com/docs/api/v2/overview", "github_repo" => "ssh://github.com/team-telnyx/telnyx-ruby", "homepage_uri" => "https://telnyx.com", "source_code_uri" => "https://github.com/team-telnyx/telnyx-ruby", } s.add_dependency("faraday", "~> 0.13", "!= 0.16.0", "!= 0.16.1", "!= 0.16.2", "!= 0.17.1") s.add_dependency("net-http-persistent", "~> 3.0") s.add_dependency("ed25519", "~> 1") s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- test/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map { |f| ::File.basename(f) } s.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
telnyx-2.4.0 | telnyx.gemspec |