From 5cbe72328c664d6e53a452be673964427f553302 Mon Sep 17 00:00:00 2001 From: Ethan Pippin Date: Sat, 19 Mar 2022 00:21:43 -0600 Subject: [PATCH] remove fastlane/gem --- Gemfile | 7 ------- fastlane/Appfile | 8 -------- fastlane/Fastfile | 18 ------------------ fastlane/Pluginfile | 3 --- fastlane/README.md | 34 ---------------------------------- 5 files changed, 70 deletions(-) delete mode 100644 Gemfile delete mode 100644 fastlane/Appfile delete mode 100644 fastlane/Fastfile delete mode 100644 fastlane/Pluginfile delete mode 100644 fastlane/README.md diff --git a/Gemfile b/Gemfile deleted file mode 100644 index 295faaa5..00000000 --- a/Gemfile +++ /dev/null @@ -1,7 +0,0 @@ -source "https://rubygems.org" - -gem "fastlane" -gem "rest-client" - -plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') -eval_gemfile(plugins_path) if File.exist?(plugins_path) diff --git a/fastlane/Appfile b/fastlane/Appfile deleted file mode 100644 index baeb4db7..00000000 --- a/fastlane/Appfile +++ /dev/null @@ -1,8 +0,0 @@ -app_identifier("me.vigue.jellyfin") # The bundle identifier of your app -apple_id("acvigue@me.com") # Your Apple email address - -itc_team_id("103277821") # App Store Connect Team ID -team_id("9R8RREG67J") # Developer Portal Team ID - -# For more information about the Appfile, see: -# https://docs.fastlane.tools/advanced/#appfile diff --git a/fastlane/Fastfile b/fastlane/Fastfile deleted file mode 100644 index 55f136f3..00000000 --- a/fastlane/Fastfile +++ /dev/null @@ -1,18 +0,0 @@ -update_fastlane - -default_platform(:ios) - -platform :ios do - desc "Push a new beta build to TestFlight" - lane :beta_ios do - increment_build_number(xcodeproj: "JellyfinPlayer.xcodeproj") - gym(output_name: "JellyfinPlayer.ipa", scheme: "JellyfinPlayer") - upload_to_testflight - end - desc "Push a new beta build to TestFlight (tvOS)" - lane :beta_tvos do - increment_build_number(xcodeproj: "JellyfinPlayer.xcodeproj") - gym(output_name: "JellyfinPlayer.ipa", scheme: "JellyfinPlayer tvOS") - upload_to_testflight - end -end \ No newline at end of file diff --git a/fastlane/Pluginfile b/fastlane/Pluginfile deleted file mode 100644 index 5445d2ef..00000000 --- a/fastlane/Pluginfile +++ /dev/null @@ -1,3 +0,0 @@ -# Autogenerated by fastlane -# -# Ensure this file is checked in to source control! \ No newline at end of file diff --git a/fastlane/README.md b/fastlane/README.md deleted file mode 100644 index 7c8b3df0..00000000 --- a/fastlane/README.md +++ /dev/null @@ -1,34 +0,0 @@ -fastlane documentation -================ -# Installation - -Make sure you have the latest version of the Xcode command line tools installed: - -``` -xcode-select --install -``` - -Install _fastlane_ using -``` -[sudo] gem install fastlane -NV -``` -or alternatively using `brew install fastlane` - -# Available Actions -## iOS -### ios beta_ios -``` -fastlane ios beta_ios -``` -Push a new beta build to TestFlight -### ios beta_tvos -``` -fastlane ios beta_tvos -``` -Push a new beta build to TestFlight (tvOS) - ----- - -This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run. -More information about fastlane can be found on [fastlane.tools](https://fastlane.tools). -The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).