Skip to content

Commit b4d93b9

Browse files
committed
More renames
1 parent 1926755 commit b4d93b9

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Rails Ruby Lsp
1+
# Ruby LSP Rails
22

3-
The Rails Ruby Lsp is a [Ruby LSP](https://github.com/Shopify/ruby-lsp) extension for extra Rails editor features, such as:
3+
Ruby LSP Rails is a [Ruby LSP](https://github.com/Shopify/ruby-lsp) extension for extra Rails editor features, such as:
44

55
- Displaying an ActiveRecord model's database columns and types when hovering over it
66
- (More to come!)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# typed: strict
22
# frozen_string_literal: true
33

4-
module RailsRubyLsp
4+
module RubyLspRails
55
class ApplicationJob < ActiveJob::Base
66
end
77
end

app/mailers/ruby_lsp_rails/application_mailer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# typed: strict
22
# frozen_string_literal: true
33

4-
module RailsRubyLsp
4+
module RubyLspRails
55
class ApplicationMailer < ActionMailer::Base
66
default from: "[email protected]"
77
layout "mailer"

lib/ruby_lsp/ruby_lsp_rails/extension.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def activate
1919

2020
sig { override.returns(String) }
2121
def name
22-
"Rails Ruby LSP"
22+
"Ruby LSP Rails"
2323
end
2424
end
2525
end

test/lib/extension_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module Rails
88
class ExtensionTest < ActiveSupport::TestCase
99
test "name returns extension name" do
1010
extension = Extension.new
11-
assert_equal("Rails Ruby LSP", extension.name)
11+
assert_equal("Ruby LSP Rails", extension.name)
1212
end
1313

1414
test "activate checks if Rails server is running" do

0 commit comments

Comments
 (0)