summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmir Rajan <[email protected]>2020-11-17 10:32:14 -0800
committerGitHub <[email protected]>2020-11-17 10:32:14 -0800
commit7040f8ccd4c2d83d3167b665b43b55ba05f421aa (patch)
treebd6430ef4a9745f28e77e392c70791698df5485d
parent1a7bd4d63fb2e2d38814c7c1105e1d0c428c99e4 (diff)
parente1e4a018e704102f4223da1955a430545d603ecb (diff)
downloaddragonruby-game-toolkit-contrib-7040f8ccd4c2d83d3167b665b43b55ba05f421aa.tar.gz
dragonruby-game-toolkit-contrib-7040f8ccd4c2d83d3167b665b43b55ba05f421aa.zip
Merge pull request #36 from danhealy/dh/ios-wizard-remove-unused
iOS wizard: remove unused methods
-rw-r--r--dragon/ios_wizard.rb31
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."