Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Why only use the default actions?

Why only use the default actions?

2015/06/26 fastlane meetupのLT
http://connpass.com/event/16763/

gin0606

June 26, 2015
Tweet

Other Decks in Programming

Transcript

  1. class FooAction < Action def self.run params p params end

    def self.is_supported?(platform) true end end
  2. before_all do backup_info_plist plist_path: 'app/Info.plist' end lane :beta do update_info_plist(

    plist_path: 'app/Info.plist', app_identifier: 'me.gin0606.app.beta', ) end lane :inhouse do update_info_plist( plist_path: 'app/Info.plist', app_identifier: 'me.gin0606.app.inhouse', ) end after_all do restore_info_plist plist_path: 'app/Info.plist' end