lizarb.gemspec in lizarb-1.0.4 vs lizarb.gemspec in lizarb-1.0.5

- old
+ new

@@ -13,31 +13,37 @@ spec.homepage = "http://lizarb.org" spec.license = "MIT" spec.required_ruby_version = ">= 3.1.0" spec.metadata = { - "homepage_uri" => "https://github.com/rubyonrails-brasil/lizarb", - "changelog_uri" => "https://github.com/rubyonrails-brasil/lizarb/blob/main/CHANGELOG.md", - "source_code_uri" => "https://github.com/rubyonrails-brasil/lizarb", - "bug_tracker_uri" => "https://github.com/rubyonrails-brasil/lizarb/issues" + "homepage_uri" => "https://github.com/lizarb/lizarb", + "changelog_uri" => "https://github.com/lizarb/lizarb/blob/main/CHANGELOG.md", + "source_code_uri" => "https://github.com/lizarb/lizarb", + "bug_tracker_uri" => "https://github.com/lizarb/lizarb/issues" } # 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. spec.files = Dir.chdir(__dir__) do `git ls-files -z`.split("\x0").reject do |f| (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) end end spec.bindir = "exe" - spec.executables = ["lrb", "liza", "lizarb"] + spec.executables = ["liza", "lizarb"] spec.require_paths = ["lib"] - # dependencies + # dependencies (Lizarb) - spec.add_dependency "colorize", "~> 0.8" spec.add_dependency "dotenv", "~> 2.8" spec.add_dependency "zeitwerk", "~> 2.6" + + # dependencies (DevSystem) + + spec.add_dependency "colorize", "~> 0.8" + spec.add_dependency "pry", "~> 0.14.2" + spec.add_dependency "diff-lcs", "~> 1.5" + spec.add_dependency "tty-prompt", "~> 0.23.1" # development dependencies spec.add_development_dependency "rake", "~> 13.0" end