mirror of
https://github.com/onyx-and-iris/obsws-ruby.git
synced 2024-11-15 18:50:47 +00:00
3e661b23a3
Updates the requirements on [rake](https://github.com/ruby/rake) to permit the latest version. - [Release notes](https://github.com/ruby/rake/releases) - [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc) - [Commits](https://github.com/ruby/rake/compare/v11.3.0...v13.0.6) --- updated-dependencies: - dependency-name: rake dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
976 B
Ruby
26 lines
976 B
Ruby
# frozen_string_literal: true
|
|
|
|
require File.expand_path("lib/obsws/version", __dir__)
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "obsws"
|
|
spec.version = OBSWS::VERSION
|
|
spec.summary = "OBS Websocket v5 wrapper"
|
|
spec.description = "A Ruby wrapper around OBS Websocket v5"
|
|
spec.authors = ["onyx_online"]
|
|
spec.email = "code@onyxandiris.online"
|
|
spec.files = Dir["lib/**/*.rb"]
|
|
spec.extra_rdoc_files = Dir["README.md", "CHANGELOG.md", "LICENSE"]
|
|
spec.homepage = "https://rubygems.org/gems/obsws"
|
|
spec.license = "MIT"
|
|
spec.add_runtime_dependency "websocket-driver", "~> 0.7.5"
|
|
spec.add_runtime_dependency "waitutil", "~> 0.2.1"
|
|
spec.add_development_dependency "standard", "~> 1.30"
|
|
spec.add_development_dependency "minitest", "~> 5.16", ">= 5.16.3"
|
|
spec.add_development_dependency "rake", ">= 11.2.2", "~> 13.0"
|
|
spec.required_ruby_version = ">= 3.0"
|
|
spec.metadata = {
|
|
"source_code_uri" => "https://github.com/onyx-and-iris/obsws-ruby"
|
|
}
|
|
end
|