Skip to content

Commit

Permalink
Move gem name loader to proper namespaced location.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrafanie committed Apr 28, 2023
1 parent bb61b83 commit e35bfbb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/appliance_console
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'bundler'
Bundler.setup

require 'manageiq-appliance_console'
require 'manageiq/appliance_console'

require 'fileutils'
# defines globally /via kernal: agree(), ask(), choose() and say()
Expand Down
2 changes: 1 addition & 1 deletion bin/appliance_console_cli
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require 'bundler'
Bundler.setup

require 'manageiq-appliance_console'
require 'manageiq/appliance_console'
ManageIQ::ApplianceConsole::Cli.parse(ARGV)
File renamed without changes.
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
SimpleCov.start
end

require "manageiq-appliance_console"
require "manageiq/appliance_console"
ManageIQ::ApplianceConsole.logger = Logger.new("/dev/null")

require "manageiq/password/rspec_matchers"
Expand Down
2 changes: 1 addition & 1 deletion spec/support/ui.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# It would be nice if we didn't need to fetch the world to get
# ManageIQ::ApplianceConsole::RAILS_ROOT
require 'manageiq-appliance_console'
require 'manageiq/appliance_console'
require "manageiq/appliance_console/i18n"

shared_context 'with a terminal ui', :with_ui do
Expand Down

0 comments on commit e35bfbb

Please sign in to comment.