Skip to content

Commit 1926755

Browse files
committed
More renaming
1 parent 4c56e57 commit 1926755

File tree

15 files changed

+11
-11
lines changed

15 files changed

+11
-11
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
source "https://rubygems.org"
44
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
55

6-
# Specify your gem's dependencies in rails_ruby_lsp.gemspec.
6+
# Specify your gem's dependencies in ruby_lsp_rails.gemspec.
77
gemspec
88

99
gem "puma"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ To install, add the following line to your application's Gemfile:
1212

1313
```ruby
1414
group :development do
15-
gem "rails_ruby_lsp"
15+
gem "ruby-lsp-rails"
1616
end
1717
```
1818

@@ -38,11 +38,11 @@ This is why the Rails server needs to be running for features to work.
3838

3939
## Contributing
4040

41-
Bug reports and pull requests are welcome on GitHub at https://github.com/Shopify/rails_ruby_lsp. This project is
41+
Bug reports and pull requests are welcome on GitHub at https://github.com/Shopify/ruby-lsp-rails. This project is
4242
intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the
43-
[Contributor Covenant](https://github.com/Shopify/rails_ruby_lsp/blob/main/CODE_OF_CONDUCT.md) code of conduct.
43+
[Contributor Covenant](https://github.com/Shopify/ruby-lsp-rails/blob/main/CODE_OF_CONDUCT.md) code of conduct.
4444

4545
## License
4646

4747
The gem is available as open source under the terms of the
48-
[MIT License](https://github.com/Shopify/rails_ruby_lsp/blob/main/LICENSE.txt).
48+
[MIT License](https://github.com/Shopify/ruby-lsp-rails/blob/main/LICENSE.txt).

app/assets/config/rails_ruby_lsp_manifest.js

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//= link_directory ../stylesheets/ruby_lsp_rails .css

app/views/layouts/rails_ruby_lsp/application.html.erb renamed to app/views/layouts/ruby_lsp_rails/application.html.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Rails ruby lsp</title>
4+
<title>Ruby LSP Rails</title>
55
<%= csrf_meta_tags %>
66
<%= csp_meta_tag %>
77

8-
<%= stylesheet_link_tag "rails_ruby_lsp/application", media: "all" %>
8+
<%= stylesheet_link_tag "ruby_lsp_rails/application", media: "all" %>
99
</head>
1010
<body>
1111

bin/rails

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# installed from the root of your application.
66

77
ENGINE_ROOT = File.expand_path("..", __dir__)
8-
ENGINE_PATH = File.expand_path("../lib/rails_ruby_lsp/engine", __dir__)
8+
ENGINE_PATH = File.expand_path("../lib/ruby_lsp_rails/engine", __dir__)
99
APP_PATH = File.expand_path("../test/dummy/config/application", __dir__)
1010

1111
# Set up gems listed in the Gemfile.
File renamed without changes.

lib/ruby_lsp_rails/engine.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module Rails
99
class Engine < ::Rails::Engine
1010
isolate_namespace RubyLsp::Rails
1111

12-
initializer "rails_ruby_lsp.routes" do
12+
initializer "ruby_lsp_rails.routes" do
1313
config.after_initialize do |app|
1414
if ::Rails.env.development? || ::Rails.env.test?
1515
app.routes.prepend do
File renamed without changes.

test/dummy/config/application.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Require the gems listed in Gemfile, including any gems
99
# you've limited to :test, :development, or :production.
1010
Bundler.require(*Rails.groups)
11-
require "rails_ruby_lsp"
11+
require "ruby_lsp_rails"
1212

1313
module Dummy
1414
class Application < Rails::Application
File renamed without changes.

0 commit comments

Comments
 (0)