Skip to content

Commit

Permalink
Merge pull request #9 from jscharf/update-gemspec
Browse files Browse the repository at this point in the history
Update gemspec and lock file
  • Loading branch information
jscharf authored Jan 14, 2024
2 parents b352d1e + d81d941 commit f7adedf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
ruby-lsp-rubyfmt (0.1.0)
ruby-lsp (>= 0.12.0, < 0.13.0)
ruby-lsp (>= 0.12.0)
sorbet-runtime (>= 0.5.5685)

GEM
Expand Down
14 changes: 7 additions & 7 deletions ruby-lsp-rubyfmt.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ Gem::Specification.new do |spec|
spec.name = "ruby-lsp-rubyfmt"
spec.version = Ruby::Lsp::Rubyfmt::VERSION
spec.authors = ["Joshua Scharf"]
spec.email = ["joshua[email protected]"]
spec.email = ["joshua@scharf.dev"]

spec.summary = "My short summery"
spec.description = "My description"
spec.summary = "Ruby LSP rubyfmt"
spec.description = "An addon for the Ruby LSP that enables formatting with rubyfmt"
spec.homepage = "http://mygemserver.com"
spec.license = "MIT"

# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata["allowed_push_host"] = "http://fullscript.com"
spec.metadata["allowed_push_host"] = "https://rubygems.org"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "http://fullscript.com"
spec.metadata["changelog_uri"] = "http://fullscript.com"
spec.metadata["source_code_uri"] = "https://github.com/jscharf/ruby-lsp-rubyfmt"
spec.metadata["changelog_uri"] = "https://github.com/jscharf/ruby-lsp-rubyfmt"
else
raise(
"RubyGems 2.0 or newer is required to protect against " \
Expand All @@ -40,6 +40,6 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency("ruby-lsp", ">= 0.12.0", "< 0.13.0")
spec.add_dependency("ruby-lsp", ">= 0.12.0")
spec.add_dependency("sorbet-runtime", ">= 0.5.5685")
end

0 comments on commit f7adedf

Please sign in to comment.