lib/souls/cli/generate/connection_rbs.rb in souls-1.17.3 vs lib/souls/cli/generate/connection_rbs.rb in souls-1.18.0

- old
+ new

@@ -1,11 +1,11 @@ -module Souls +module SOULs class Generate < Thor desc "connection_rbs [CLASS_NAME]", "Generate GraphQL Connection RBS from schema.rb" def connection_rbs(class_name) file_path = "" - Dir.chdir(Souls.get_mother_path.to_s) do + Dir.chdir(SOULs.get_mother_path.to_s) do file_dir = "./sig/api/app/graphql/types/connections/" FileUtils.mkdir_p(file_dir) unless Dir.exist?(file_dir) singularized_class_name = class_name.underscore.singularize file_path = "#{file_dir}#{singularized_class_name}_connection.rbs" File.open(file_path, "w") do |f| @@ -15,10 +15,10 @@ def self.edge_type: (*untyped) -> untyped end end TEXT end - Souls::Painter.create_file(file_path.to_s) + SOULs::Painter.create_file(file_path.to_s) end file_path end end end