diff options
| -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 77fd703..b3f170a 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 @dev_profile_path = "profiles/development.mobileprovision" if !($gtk.read_file @dev_profile_path) @@ -192,21 +182,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 @@ -217,12 +192,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." |
