Skip to content

Refactor gemspec #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 12 additions & 13 deletions mutex_m.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,20 @@ rescue LoadError
end

Gem::Specification.new do |spec|
spec.name = "mutex_m"
spec.version = Mutex_m::VERSION
spec.authors = ["Keiju ISHITSUKA"]
spec.email = ["[email protected]"]
spec.name = "mutex_m"
spec.version = Mutex_m::VERSION
spec.authors = ["Keiju ISHITSUKA"]
spec.email = ["[email protected]"]

spec.summary = %q{Mixin to extend objects to be handled like a Mutex.}
spec.description = %q{Mixin to extend objects to be handled like a Mutex.}
spec.homepage = "https://github.com/ruby/mutex_m"
spec.licenses = ["Ruby", "BSD-2-Clause"]
spec.summary = "Mixin to extend objects to be handled like a Mutex."
spec.description = spec.summary
spec.homepage = "https://github.com/ruby/mutex_m"
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
spec.licenses = %w[Ruby BSD-2-Clause]

spec.files = ["Gemfile", "LICENSE.txt", "README.md", "Rakefile", "lib/mutex_m.rb", "mutex_m.gemspec"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.5'
spec.files = %w[LICENSE.txt README.md lib/mutex_m.rb]
spec.required_ruby_version = ">= 2.5"

spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
Expand Down