diff options
| author | danhealy <[email protected]> | 2020-11-15 15:03:45 -0800 |
|---|---|---|
| committer | danhealy <[email protected]> | 2020-11-15 15:03:45 -0800 |
| commit | e1e4a018e704102f4223da1955a430545d603ecb (patch) | |
| tree | d8b38a0809984502fd8411516112c74f3f68ab40 /dragon | |
| parent | 128fa1d90cea6289605a49daf56a0cbb72e2dd28 (diff) | |
| download | dragonruby-game-toolkit-contrib-e1e4a018e704102f4223da1955a430545d603ecb.tar.gz dragonruby-game-toolkit-contrib-e1e4a018e704102f4223da1955a430545d603ecb.zip | |
iOS wizard: remove unused methods
Diffstat (limited to 'dragon')
| -rw-r--r-- | dragon/ios_wizard.rb | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/dragon/ios_wizard.rb b/dragon/ios_wizard.rb index e38faf1..c10965d 100644 --- a/dragon/ios_wizard.rb +++ b/dragon/ios_wizard.rb @@ -85,11 +85,6 @@ class IOSWizard return nil end - def always_fail - return false if $gtk.ivar :rcb_release_mode - return true - end - def check_for_xcode if !cli_app_exist?(xcodebuild_cli_app) raise WizardException.new( @@ -134,11 +129,6 @@ class IOSWizard end end - def restart - init_wizard_status - start - end - def check_for_dev_profile if !($gtk.read_file 'profiles/development.mobileprovision') $gtk.system "mkdir -p #{relative_path}/profiles" @@ -191,21 +181,6 @@ class IOSWizard log_info "App Identifier is set to : #{@app_id}" end - def set_app_name name - @app_name = name - start - end - - def set_dev_profile path - if !$gtk.read_file path - log_error "I couldn't find a development profile at #{path}." - ask_for_dev_profile - else - @dev_profile_path = path - start - end - end - def blow_away_temp sh "rm -rf #{tmp_directory}" end @@ -216,12 +191,6 @@ class IOSWizard sh "cp -R #{relative_path}/dragonruby-ios.app \"#{tmp_directory}/#{@app_name}.app\"" end - def set_app_id id - log_info = "App Id set to: #{id}" - @app_id = id - start - end - def check_for_device log_info "Looking for device." |
