summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2022-09-27 12:44:30 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-09-27 12:44:30 +0900
commit95d5b33ea0c99aae76ad148350cd353379a827c8 (patch)
treed0dcf03b1b69e65f8897f1f6aee012c8925b0782 /lib
parent06abfa5be60e589052eb3bdfdae6c132bea3d20b (diff)
syntax_suggest moved under the ruby organization from zombocom
Diffstat (limited to 'lib')
-rw-r--r--lib/syntax_suggest/capture_code_context.rb2
-rw-r--r--lib/syntax_suggest/pathname_from_message.rb2
-rw-r--r--lib/syntax_suggest/syntax_suggest.gemspec4
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/syntax_suggest/capture_code_context.rb b/lib/syntax_suggest/capture_code_context.rb
index c74a366a25..6439af4dde 100644
--- a/lib/syntax_suggest/capture_code_context.rb
+++ b/lib/syntax_suggest/capture_code_context.rb
@@ -137,7 +137,7 @@ module SyntaxSuggest
# puts "woof" # 3
# end # 4
#
- # However due to https://github.com/zombocom/syntax_suggest/issues/32
+ # However due to https://github.com/ruby/syntax_suggest/issues/32
# the problem line will be identified as:
#
# ❯ class Dog # 1
diff --git a/lib/syntax_suggest/pathname_from_message.rb b/lib/syntax_suggest/pathname_from_message.rb
index ea1a90856e..b6fe1617be 100644
--- a/lib/syntax_suggest/pathname_from_message.rb
+++ b/lib/syntax_suggest/pathname_from_message.rb
@@ -4,7 +4,7 @@ module SyntaxSuggest
# Converts a SyntaxError message to a path
#
# Handles the case where the filename has a colon in it
- # such as on a windows file system: https://github.com/zombocom/syntax_suggest/issues/111
+ # such as on a windows file system: https://github.com/ruby/syntax_suggest/issues/111
#
# Example:
#
diff --git a/lib/syntax_suggest/syntax_suggest.gemspec b/lib/syntax_suggest/syntax_suggest.gemspec
index acf9be7710..73b25c6a5f 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.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.