Skip to content

Commit

Permalink
Merge pull request #34 from mwhuss/master
Browse files Browse the repository at this point in the history
TestFlight now enforces HTTPS for their upload API
  • Loading branch information
lukeredpath committed Jan 1, 2012
2 parents 38b0c95 + 10f1bd0 commit b79542e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/beta_builder/deployment_strategies/testflight.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
module BetaBuilder
module DeploymentStrategies
class TestFlight < Strategy
ENDPOINT = "http://testflightapp.com/api/builds.json"
ENDPOINT = "https://testflightapp.com/api/builds.json"

def extended_configuration_for_strategy
proc do
Expand All @@ -24,7 +24,8 @@ def deploy
:file => File.new(@configuration.ipa_path, 'rb'),
:notes => release_notes,
:distribution_lists => (@configuration.distribution_lists || []).join(","),
:notify => @configuration.notify || false
:notify => @configuration.notify || false,
:replace => @configuration.replace || false
}
puts "Uploading build to TestFlight..."
if @configuration.verbose
Expand Down

0 comments on commit b79542e

Please sign in to comment.