Sha256: 9a5d7b519b7f57763c88981d446b25a930be1f53a6d2a90fb07807502491b297
Contents?: true
Size: 696 Bytes
Versions: 3
Compression:
Stored size: 696 Bytes
Contents
#!/usr/bin/env ruby if RUBY_VERSION < '2.0.0' abort("fastlane requires Ruby 2.0.0 or higher") end def self.windows? # taken from: https://stackoverflow.com/a/171011/1945875 (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil end require "fastlane/cli_tools_distributor" if Fastlane::CLIToolsDistributor.running_version_command? # This will print out the fastlane binary path right above the # version number. Very often, users are not aware they have # e.g. bundled fastlane installed puts("fastlane installation at path:") puts(File.expand_path(__FILE__)) puts("-----------------------------") end Fastlane::CLIToolsDistributor.take_off
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fastlane_hotfix-2.165.1 | bin/fastlane |
fastlane_hotfix-2.165.0 | bin/fastlane |
fastlane_hotfix-2.187.0 | bin/fastlane |