Skip to content

Commit 46fca73

Browse files
committed
update for new gem name
1 parent 4634679 commit 46fca73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/views/application_view.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def component_references(component, code_example = nil, use_component_files = fa
5959

6060
require "rubygems"
6161

62-
def component_files(component, gem_name = "rbui")
62+
def component_files(component, gem_name = "ruby_ui")
6363
# Find the gem specification
6464
gem_spec = Gem::Specification.find_by_name(gem_name)
6565
return [] unless gem_spec

tailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const execSync = require("child_process").execSync;
33

44
// Import rbui gem path
5-
const outputRBUI = execSync("bundle show rbui", { encoding: "utf-8" });
5+
const outputRBUI = execSync("bundle show ruby_ui", { encoding: "utf-8" });
66
const rbui_path = outputRBUI.trim() + "/**/*.rb";
77

88
const defaultTheme = require("tailwindcss/defaultTheme");

0 commit comments

Comments
 (0)