Class: Fastlane::Setup

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/setup.rb

Instance Method Summary collapse

Instance Method Details

#ask_to_enable_other_toolsObject



75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'lib/fastlane/setup.rb', line 75

def ask_to_enable_other_tools
  unless @tools[:deliver]
    if agree("Do you want to setup 'deliver', which is used to upload app screenshots, app metadata and app updates to the App Store or Apple TestFlight? (y/n)".yellow, true)
      Helper.log.info "Loading up 'deliver', this might take a few seconds"
      require 'deliver'
      Deliver::DeliverfileCreator.create(folder)
      @tools[:deliver] = true
    end
  else
    # deliver already enabled
    Helper.log.info '-------------------------------------------------------------------------------------------'
    Helper.log.info 'Since all files are moved into the `fastlane` subfolder, you have to adapt your Deliverfile'.yellow
    Helper.log.info 'Update your `ipa` and `beta_ipa` block of your Deliverfile to go a folder up before building'.yellow
    Helper.log.info "e.g. `system('cd ..; ipa build')`".yellow
    Helper.log.info 'Please read the above carefully and click Enter to confirm.'.green
    STDIN.gets
  end

  unless @tools[:snapshot]
    if agree("Do you want to setup 'snapshot', which will help you to automatically take screenshots of your iOS app in all languages/devices? (y/n)".yellow, true)
      Helper.log.info "Loading up 'snapshot', this might take a few seconds"

      require 'snapshot' # we need both requires
      require 'snapshot/snapfile_creator'
      Snapshot::SnapfileCreator.create(folder)
      @tools[:snapshot] = true
    end
  end

  @tools[:sigh] = true if agree("Do you want to use 'sigh', which will maintain and download the provisioning profile for your app? (y/n)".yellow, true)
end

#copy_existing_filesObject



43
44
45
46
47
48
49
50
51
# File 'lib/fastlane/setup.rb', line 43

def copy_existing_files
  files_to_copy.each do |current|
    next unless File.exist?(current)
    file_name = File.basename(current)
    to_path = File.join(folder, file_name)
    Helper.log.info "Moving '#{current}' to '#{to_path}'".green
    FileUtils.mv(current, to_path)
  end
end

#detect_installed_toolsObject



66
67
68
69
70
71
72
73
# File 'lib/fastlane/setup.rb', line 66

def detect_installed_tools
  @tools = {}
  @tools[:deliver] = File.exist?(File.join(folder, 'Deliverfile'))
  @tools[:snapshot] = File.exist?(File.join(folder, 'Snapfile'))
  @tools[:xctool] = File.exist?('./.xctool-args')
  @tools[:cocoapods] = File.exist?('./Podfile')
  @tools[:sigh] = false
end

#files_to_copyObject



39
40
41
# File 'lib/fastlane/setup.rb', line 39

def files_to_copy
  ['Deliverfile', 'Snapfile', 'deliver', 'snapshot.js', 'snapshot-iPad.js', 'SnapshotHelper.js', 'screenshots']
end

#folderObject



127
128
129
# File 'lib/fastlane/setup.rb', line 127

def folder
  FastlaneFolder.path
end

#generate_app_metadataObject



53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/fastlane/setup.rb', line 53

def 
  Helper.log.info '------------------------------'
  Helper.log.info 'To not re-enter your username and app identifier every time you run one of the fastlane tools or fastlane, these will be stored from now on.'.green
  app_identifier = ask('App Identifier (com.krausefx.app): '.yellow)
  apple_id = ask('Your Apple ID: '.yellow)
  template = File.read("#{Helper.gem_path('fastlane')}/lib/assets/AppfileTemplate")
  template.gsub!('[[APP_IDENTIFIER]]', app_identifier)
  template.gsub!('[[APPLE_ID]]', apple_id)
  path = File.join(folder, 'Appfile')
  File.write(path, template)
  Helper.log.info "Created new file '#{path}'. Edit it to manage your preferred app metadata information.".green
end

#generate_fastfileObject



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'lib/fastlane/setup.rb', line 107

def generate_fastfile
  template = File.read("#{Helper.gem_path('fastlane')}/lib/assets/FastfileTemplate")

  template.gsub!('deliver', '# deliver') unless @tools[:deliver]
  template.gsub!('snapshot', '# snapshot') unless @tools[:snapshot]
  template.gsub!('sigh', '# sigh') unless @tools[:sigh]
  template.gsub!('xctool', '# xctool') unless @tools[:xctool]
  template.gsub!('cocoapods', '# cocoapods') unless @tools[:cocoapods]
  template.gsub!('[[FASTLANE_VERSION]]', Fastlane::VERSION)

  @tools.each do |key, value|
    Helper.log.info "'#{key}' enabled.".magenta if value
    Helper.log.info "'#{key}' not enabled.".yellow unless value
  end

  path = File.join(folder, 'Fastfile')
  File.write(path, template)
  Helper.log.info "Created new file '#{path}'. Edit it to manage your own deployment lanes.".green
end

#restore_previous_stateObject



131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/fastlane/setup.rb', line 131

def restore_previous_state
  # Move all moved files back
  files_to_copy.each do |current|
    from_path = File.join(folder, current)
    to_path = File.basename(current)
    if File.exist?(from_path)
      Helper.log.info "Moving '#{from_path}' to '#{to_path}'".yellow
      FileUtils.mv(from_path, to_path)
    end
  end

  Helper.log.info "Deleting the 'fastlane' folder".yellow
  FileUtils.rm_rf(folder)
end

#runObject



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/fastlane/setup.rb', line 5

def run
  raise "Fastlane already set up at path #{folder}".yellow if FastlaneFolder.setup?

  show_infos
  response = agree('Do you want to get started? This will move your Deliverfile and Snapfile (if they exist) (y/n)'.yellow, true)
  return unless response
  response = agree('Do you have everything commited in version control? If not please do so! (y/n)'.yellow, true)
  return unless response
  begin
    FastlaneFolder.create_folder!
    copy_existing_files
    
    detect_installed_tools # after copying the existing files
    ask_to_enable_other_tools
    FileUtils.mkdir(File.join(folder, 'actions'))
    generate_fastfile
    Helper.log.info 'Successfully finished setting up fastlane'.green
  rescue Exception => ex # this will also be caused by Ctrl + C
    # Something went wrong with the setup, clear the folder again
    # and restore previous files
    Helper.log.fatal 'Error occured with the setup program! Reverting changes now!'.red
    restore_previous_state
    raise ex
  end
end

#show_infosObject



31
32
33
34
35
36
37
# File 'lib/fastlane/setup.rb', line 31

def show_infos
  Helper.log.info 'This setup will help you get up and running in no time.'.green
  Helper.log.info 'First, it will move the config files from `deliver` and `snapshot`'.green
  Helper.log.info "into the subfolder `fastlane`.\n".green
  Helper.log.info "Fastlane will check what tools you're already using and set up".green
  Helper.log.info 'the tool automatically for you. Have fun! '.green
end