Skip to content

Commit

Permalink
Add Synx and the fastlane plugin for it, along with a Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
robbiet480 committed Jan 7, 2017
1 parent 2a52185 commit f7ffd97
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Gemfile
@@ -0,0 +1,9 @@
source "https://rubygems.org"

gem 'cocoapods'
gem 'cocoapods-acknowledgements'
gem 'fastlane'
gem 'synx'

plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval(File.read(plugins_path), binding) if File.exist?(plugins_path)
1 change: 1 addition & 0 deletions fastlane/Fastfile
Expand Up @@ -22,6 +22,7 @@ platform :ios do
ENV["MATCH_PASSWORD"] = ENV["HOMEASSISTANT_CERTIFICATE_KEY"]
ENV["PILOT_APPLE_ID"] = ENV["HOMEASSISTANT_APPLE_ID"]
ENV["SIGH_USERNAME"] = ENV["HOMEASSISTANT_APPLE_ID"]
synx
end

desc "Fetches the provisioning profiles so you can build locally and deploy to your device"
Expand Down
5 changes: 5 additions & 0 deletions fastlane/Pluginfile
@@ -0,0 +1,5 @@
# Autogenerated by fastlane
#
# Ensure this file is checked in to source control!

gem 'fastlane-plugin-synx'

0 comments on commit f7ffd97

Please sign in to comment.