Skip to content

Instantly share code, notes, and snippets.

@paulmars
Created April 10, 2012 21:30
Show Gist options
  • Select an option

  • Save paulmars/2354722 to your computer and use it in GitHub Desktop.

Select an option

Save paulmars/2354722 to your computer and use it in GitHub Desktop.
Betabuilder on testflight
source 'https://rubygems.org'
gem "betabuilder"
require 'rubygems'
require 'betabuilder'
BetaBuilder::Tasks.new do |config|
config.target = "store"
config.configuration = "Release"
config.build_dir = :derived
config.workspace_path = "store.xcworkspace"
config.scheme = "store"
config.app_name = "store"
config.deploy_using(:testflight) do |tf|
tf.api_token = ""
tf.team_token = ""
tf.generate_release_notes do
`date`
end
tf.distribution_lists = %w{Internal}
end
end
task :default => ["beta:deploy"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment