summaryrefslogtreecommitdiff
path: root/lib/syntax_suggest/syntax_suggest.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'lib/syntax_suggest/syntax_suggest.gemspec')
-rw-r--r--lib/syntax_suggest/syntax_suggest.gemspec8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/syntax_suggest/syntax_suggest.gemspec b/lib/syntax_suggest/syntax_suggest.gemspec
index acf9be7710..44e458aaad 100644
--- a/lib/syntax_suggest/syntax_suggest.gemspec
+++ b/lib/syntax_suggest/syntax_suggest.gemspec
@@ -14,12 +14,12 @@ Gem::Specification.new do |spec|
spec.summary = "Find syntax errors in your source in a snap"
spec.description = 'When you get an "unexpected end" in your syntax this gem helps you find it'
- spec.homepage = "https://github.com/zombocom/syntax_suggest.git"
+ spec.homepage = "https://github.com/ruby/syntax_suggest.git"
spec.license = "MIT"
- spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
+ spec.required_ruby_version = Gem::Requirement.new(">= 3.3.0")
spec.metadata["homepage_uri"] = spec.homepage
- spec.metadata["source_code_uri"] = "https://github.com/zombocom/syntax_suggest.git"
+ spec.metadata["source_code_uri"] = "https://github.com/ruby/syntax_suggest.git"
# 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.
@@ -27,6 +27,6 @@ Gem::Specification.new do |spec|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|assets)/}) }
end
spec.bindir = "exe"
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.executables = ["syntax_suggest"]
spec.require_paths = ["lib"]
end