No commit activity in last 3 years
No release in over 3 years
A simple Testflight uploader for when you already have everything built and archived.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Gem Version

testflight_upload

Already have everything you need to send to Testflight already built and archived and just need to upload to Testflight in your rake tasks? Use this gem.

installing

gem install testflight_upload

OR in your Gemfile:

gem 'testflight_upload'

syntax

uploader = Testflight.new do |config|
  config.ipa_path = "HelloWorld.ipa"
  config.zipped_dsym_path = "HelloWorld.app.dSYM.zip"
  config.distribution_lists = [ENV["dist"]]
  config.replace = ENV["replace"]
  config.notify_testers = ENV["notify"]
  config.user_notification = true
  config.verbose = true
  config.api_token = "xxxxxxxx"
  config.team_token = "xxxxxxxx"
end
uploader.deploy()

See example for a more complete example of how to use this gem.