money-tree.gemspec in money-tree-0.11.0 vs money-tree.gemspec in money-tree-0.11.1

- old
+ new

@@ -1,27 +1,30 @@ # coding: utf-8 -lib = File.expand_path('../lib', __FILE__) +lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) -require 'money-tree/version' +require "money-tree/version" Gem::Specification.new do |spec| - spec.name = "money-tree" - spec.version = MoneyTree::VERSION - spec.authors = ["Micah Winkelspecht", "Afri Schoedon"] - spec.email = ["winkelspecht@gmail.com", "gems@q9f.cc"] - spec.description = %q{A Ruby Gem implementation of Bitcoin HD Wallets} - spec.summary = %q{Bitcoin Hierarchical Deterministic Wallets in Ruby! (Bitcoin standard BIP0032)} - spec.homepage = "https://github.com/gemhq/money-tree" - spec.license = "MIT" + spec.name = "money-tree" + spec.version = MoneyTree::VERSION + spec.authors = ["Micah Winkelspecht", "Afri Schoedon"] + spec.email = ["winkelspecht@gmail.com", "gems@q9f.cc"] + spec.description = %q{A Ruby Gem implementation of Bitcoin HD Wallets} + spec.summary = %q{Bitcoin Hierarchical Deterministic Wallets in Ruby! (Bitcoin standard BIP0032)} + spec.homepage = "https://github.com/GemHQ/money-tree" + spec.license = "MIT" - spec.files = `git ls-files`.split($/) - spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } - spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) + spec.files = `git ls-files`.split($/) + spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } + spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] - spec.add_dependency 'openssl', '>= 2.2' + spec.metadata = { + "homepage_uri" => "https://github.com/GemHQ/money-tree", + "source_code_uri" => "https://github.com/GemHQ/money-tree", + "github_repo" => "https://github.com/GemHQ/money-tree", + "bug_tracker_uri" => "https://github.com/GemHQ/money-tree/issues", + }.freeze - spec.add_development_dependency "bundler", "~> 2.2" - spec.add_development_dependency "rake", "~> 13.0" - spec.add_development_dependency "rspec", "~> 3.10" - spec.add_development_dependency "pry", "~> 0.4" + spec.platform = Gem::Platform::RUBY + spec.required_ruby_version = ">= 2.6", "< 4.0" end