Class: Fastlane::CrashlyticsBeta
- Inherits:
-
Object
- Object
- Fastlane::CrashlyticsBeta
- Defined in:
- lib/fastlane/setup/crashlytics_beta.rb
Instance Method Summary collapse
- #expanded_paths_equal?(path1, path2) ⇒ Boolean
- #fastfile_template ⇒ Object
-
#initialize(beta_info, ui) ⇒ CrashlyticsBeta
constructor
A new instance of CrashlyticsBeta.
- #lane_template ⇒ Object
- #run ⇒ Object
Constructor Details
#initialize(beta_info, ui) ⇒ CrashlyticsBeta
Returns a new instance of CrashlyticsBeta.
3 4 5 6 |
# File 'lib/fastlane/setup/crashlytics_beta.rb', line 3 def initialize(beta_info, ui) @beta_info = beta_info @ui = ui end |
Instance Method Details
#expanded_paths_equal?(path1, path2) ⇒ Boolean
78 79 80 81 82 |
# File 'lib/fastlane/setup/crashlytics_beta.rb', line 78 def (path1, path2) return nil if path1.nil? || path2.nil? File.(path1) == File.(path2) end |
#fastfile_template ⇒ Object
84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/fastlane/setup/crashlytics_beta.rb', line 84 def fastfile_template "fastlane_version \"\#{Fastlane::VERSION}\"\n\ndefault_platform :ios\n\nplatform :ios do\n\#{lane_template}\nend\n" end |
#lane_template ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/fastlane/setup/crashlytics_beta.rb', line 46 def lane_template discovered_crashlytics_path = Fastlane::Helper::CrashlyticsHelper.discover_default_crashlytics_path unless (@beta_info.crashlytics_path, discovered_crashlytics_path) crashlytics_path_arg = "\n crashlytics_path: '#{@beta_info.crashlytics_path}'," end # rubocop:disable Style/IndentationConsistency %{ # # Learn more here: https://github.com/fastlane/setups/blob/master/samples-ios/distribute-beta-build.md 🚀 # lane :beta do # set 'export_method' to 'ad-hoc' if your Crashlytics Beta distribution uses ad-hoc provisioning gym(scheme: '#{@beta_info.schemes.first}', export_method: '#{@beta_info.export_method}') crashlytics(api_token: '#{@beta_info.api_key}', build_secret: '#{@beta_info.build_secret}',#{crashlytics_path_arg} emails: ['#{@beta_info.emails.join("', '")}'], # You can list more emails here # groups: ['group_alias_1', 'group_alias_2'], # You can define groups on the web and reference them here notes: 'Distributed with fastlane', # Check out the changelog_from_git_commits action! notifications: true) # Should this distribution notify your testers via email? # You can notify your team in chat that a beta build has been uploaded # slack( # slack_url: "https://hooks.slack.com/services/YOUR/TEAM/INFO" # channel: "beta-releases", # message: "Successfully uploaded a beta release - see it at https://fabric.io/_/beta" # ) end} # rubocop:enable Style/IndentationConsistency end |
#run ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/fastlane/setup/crashlytics_beta.rb', line 8 def run setup = Setup.new @ui. 'This command will generate a fastlane configuration for distributing your app with Beta by Crashlytics' @ui. 'so that you can get your testers new builds with a single command!' @ui. '' if setup.is_android? UI.user_error!('Sorry, Beta by Crashlytics configuration is currently only available for iOS projects!') elsif !setup.is_ios? UI.user_error!('Please run Beta by Crashlytics configuration from your iOS project folder.') end @ui. "\nAttempting to detect your project settings in this directory...".cyan info_collector = CrashlyticsBetaInfoCollector.new(CrashlyticsProjectParser.new, CrashlyticsBetaUserEmailFetcher.new, @ui) info_collector.collect_info_into(@beta_info) if FastlaneFolder.setup? @ui. "" @ui.header('Copy and paste the following lane into your Fastfile to use Crashlytics Beta!') @ui. "" puts lane_template.cyan @ui. "" else fastfile = fastfile_template FileUtils.mkdir_p('fastlane') File.write('fastlane/Fastfile', fastfile) @ui.success('A Fastfile has been generated for you at ./fastlane/Fastfile 🚀') end @ui.header('Next Steps') @ui.success('Run the following command to build and upload to Beta by Crashlytics. 🎯') @ui.("\n fastlane beta") @ui. "" end |