1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

syntax_suggest moved under the ruby organization from zombocom

This commit is contained in:
Hiroshi SHIBATA 2022-09-27 12:44:30 +09:00
parent 06abfa5be6
commit 95d5b33ea0
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
3 changed files with 4 additions and 4 deletions

View file

@ -137,7 +137,7 @@ module SyntaxSuggest
# puts "woof" # 3 # puts "woof" # 3
# end # 4 # 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: # the problem line will be identified as:
# #
# class Dog # 1 # class Dog # 1

View file

@ -4,7 +4,7 @@ module SyntaxSuggest
# Converts a SyntaxError message to a path # Converts a SyntaxError message to a path
# #
# Handles the case where the filename has a colon in it # 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: # Example:
# #

View file

@ -14,12 +14,12 @@ Gem::Specification.new do |spec|
spec.summary = "Find syntax errors in your source in a snap" 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.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.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0") spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.metadata["homepage_uri"] = spec.homepage 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. # 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. # The `git ls-files -z` loads the files in the RubyGem that have been added into git.