Skip to content

Commit

Permalink
Merge pull request fastlane#3986 from fastlane/fastfile_modifications
Browse files Browse the repository at this point in the history
Encouraging more accurate metrics
  • Loading branch information
hemal committed Mar 31, 2016
2 parents 8f4de98 + 63326b0 commit 1ebb3b6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 18 deletions.
9 changes: 3 additions & 6 deletions fastlane/lib/assets/DefaultFastfileTemplate
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@
# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`

# By default, fastlane will send which actions are used
# No personal data is shared, more information on https://github.com/fastlane/enhancer
# Uncomment the following line to opt out
# opt_out_usage

# If you want to automatically update fastlane if a new version is available:
# update_fastlane

Expand Down Expand Up @@ -71,6 +66,8 @@ platform :ios do
end



# More information about multiple platforms in fastlane: https://github.com/fastlane/fastlane/blob/master/docs/Platforms.md
# All available actions: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Actions.md

# fastlane reports which actions are used
# No personal data is recorded. Learn more at https://github.com/fastlane/enhancer
8 changes: 3 additions & 5 deletions fastlane/lib/assets/FastfileTemplateAndroid
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@
# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`

# By default, fastlane will send which actions are used
# No personal data is shared, more information on https://github.com/fastlane/enhancer
# Uncomment the following line to opt out
# opt_out_usage

# If you want to automatically update fastlane if a new version is available:
# update_fastlane

Expand Down Expand Up @@ -66,3 +61,6 @@ end

# More information about multiple platforms in fastlane: https://github.com/fastlane/fastlane/blob/master/docs/Platforms.md
# All available actions: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Actions.md

# fastlane reports which actions are used
# No personal data is sent or shared. Learn more at https://github.com/fastlane/enhancer
1 change: 0 additions & 1 deletion fastlane/lib/fastlane/setup/setup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def show_analytics
UI.message("fastlane will send the number of errors for each action to")
UI.message("https://github.com/fastlane/enhancer to detect integration issues")
UI.message("No sensitive/private information will be uploaded")
UI.message("You can disable this by adding `opt_out_usage` to your Fastfile")
end
end
end
Expand Down
1 change: 0 additions & 1 deletion fastlane/spec/setup_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@

content = File.read(File.join(Fastlane::FastlaneFolder.path, 'Fastfile'))
expect(content).to include "# update_fastlane"
expect(content).to include "# opt_out_usage"
expect(content).to include "deliver"
expect(content).to include "scan"
expect(content).to include "gym(scheme: \"MyScheme\")"
Expand Down
8 changes: 3 additions & 5 deletions screengrab/example/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@
# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`

# By default, fastlane will send which actions are used
# No personal data is shared, more information on https://github.com/fastlane/enhancer
# Uncomment the following line to opt out
# opt_out_usage

# If you want to automatically update fastlane if a new version is available:
# update_fastlane

Expand Down Expand Up @@ -70,3 +65,6 @@ end

# More information about multiple platforms in fastlane: https://github.com/fastlane/fastlane/blob/master/docs/Platforms.md
# All available actions: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Actions.md

# fastlane reports which actions are used
# No personal data is recorded. Learn more at https://github.com/fastlane/enhancer

0 comments on commit 1ebb3b6

Please sign in to comment.