inkcpp_rb.gemspec in inkcpp_rb-0.1.2 vs inkcpp_rb.gemspec in inkcpp_rb-0.1.3

- old
+ new

@@ -10,19 +10,18 @@ spec.summary = "inkcpp bindings in Ruby" spec.description = "inkcpp bindings in Ruby" spec.homepage = "https://git.sr.ht/~netshade/inkcpp_rb" spec.required_ruby_version = ">= 2.6.0" + spec.requirements << "cmake" spec.metadata["allowed_push_host"] = "https://rubygems.org/" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://git.sr.ht/~netshade/inkcpp_rb" spec.metadata["changelog_uri"] = "https://git.sr.ht/~netshade/inkcpp_rb/tree/main/item/CHANGELOG.md" - # Specify which files should be added to the gem when it is released. - # The `git ls-files -z` loads the files in the RubyGem that have been added into git. submodules = %w{inkcpp} submodule_files = submodules.flat_map do |module_name| base_submodule_path = File.join("ext", "inkcpp_rb", module_name) submodule_path = File.join(File.expand_path(__dir__), base_submodule_path) Dir.chdir(submodule_path) do @@ -39,17 +38,12 @@ spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.extensions = ["ext/inkcpp_rb/extconf.rb"] - # Uncomment to register a new dependency of your gem - # spec.add_dependency "example-gem", "~> 1.0" spec.add_dependency "rice", "~> 4.3.3" spec.add_development_dependency "rake-compiler", "~> 1.2.8" spec.add_development_dependency "sorbet", "~> 0.5.0" spec.add_development_dependency "sorbet-runtime", "~> 0.5.0" spec.add_development_dependency "tapioca", "~> 0.16.0" spec.add_development_dependency "debug", "~> 1.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