-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrb_mumble_protocol.gemspec
38 lines (29 loc) · 1.38 KB
/
rb_mumble_protocol.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
36
37
38
# frozen_string_literal: true
require_relative "lib/rb_mumble_protocol/version"
Gem::Specification.new do |spec|
spec.name = "rb_mumble_protocol"
spec.version = RbMumbleProtocol::VERSION
spec.authors = ["Mikhail Odebe"]
spec.email = ["derpiranha@gmail.com"]
spec.summary = "Gem that providing classes for implementing Mumble-related projects."
spec.description = "Gem that providing classes for implementing Mumble-related projects."
spec.homepage = "https://github.com/Odebe/rb_mumble_protocol"
spec.required_ruby_version = ">= 2.6.0"
spec.required_rubygems_version = ">= 3.3.11"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = spec.homepage
spec.files =
Dir["lib/**/*.rb"]
.concat(Dir["ext/rb_mumble_protocol/src/**/*.rs"]) <<
"ext/rb_mumble_protocol/Cargo.toml" << "Cargo.toml" << "Cargo.lock"
spec.require_paths = ["lib"]
spec.extensions = ["ext/rb_mumble_protocol/Cargo.toml"]
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rubocop", "~> 1.21"
spec.add_development_dependency "byebug"
# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
end