Skip to content

Commit 35bb784

Browse files
committed
update gemspec
1 parent 2aa1683 commit 35bb784

1 file changed

Lines changed: 9 additions & 12 deletions

File tree

repl_completion.gemspec

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ Gem::Specification.new do |spec|
88
spec.authors = ["tompng"]
99
spec.email = ["tomoyapenguin@gmail.com"]
1010

11-
spec.summary = "TODO: Write a short summary, because RubyGems requires one."
12-
spec.description = "TODO: Write a longer description or delete this line."
13-
spec.homepage = "TODO: Put your gem's website or public repo URL here."
11+
spec.summary = "Type based completion for REPL."
12+
spec.description = "Type based completion for REPL."
13+
# spec.homepage = "TODO: Put your gem's website or public repo URL here."
1414
spec.license = "MIT"
15-
spec.required_ruby_version = ">= 2.6.0"
15+
spec.required_ruby_version = ">= 3.0.0"
1616

1717
spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
1818

19-
spec.metadata["homepage_uri"] = spec.homepage
20-
spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
21-
spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
19+
# spec.metadata["homepage_uri"] = spec.homepage
20+
# spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
21+
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
2222

2323
# Specify which files should be added to the gem when it is released.
2424
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -31,9 +31,6 @@ Gem::Specification.new do |spec|
3131
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
3232
spec.require_paths = ["lib"]
3333

34-
# Uncomment to register a new dependency of your gem
35-
# spec.add_dependency "example-gem", "~> 1.0"
36-
37-
# For more information and examples about making a new gem, check out our
38-
# guide at: https://bundler.io/guides/creating_gem.html
34+
spec.add_dependency "prism", ">= 0.17.1"
35+
spec.add_dependency "rbs", ">= 2.7.0"
3936
end

0 commit comments

Comments
 (0)