Class: Gym::DetectValues

Inherits:
Object
  • Object
show all
Defined in:
lib/gym/detect_values.rb

Overview

This class detects all kinds of default values

Class Method Summary collapse

Class Method Details

.choose_projectObject



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/gym/detect_values.rb', line 80

def self.choose_project
  loop do
    path = ask("Couldn't automatically detect the project file, please provide a path: ".yellow).strip
    if File.directory? path
      if path.end_with? ".xcworkspace"
        config[:workspace] = path
        break
      elsif path.end_with? ".xcodeproj"
        config[:project] = path
        break
      else
        Helper.log.error "Path must end with either .xcworkspace or .xcodeproj"
      end
    else
      Helper.log.error "Couldn't find project at path '#{File.expand_path(path)}'".red
    end
  end
end

.detect_configurationObject

Detects the available configurations (e.g. Debug, Release)



141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# File 'lib/gym/detect_values.rb', line 141

def self.detect_configuration
  config = Gym.config
  configurations = Gym.project.configurations
  return if configurations.count == 0 # this is an optional value anyway

  if config[:configuration]
    # Verify the configuration is available
    unless configurations.include?(config[:configuration])
      Helper.log.error "Couldn't find specified configuration '#{config[:configuration]}'.".red
      config[:configuration] = nil
    end
  end

  # Usually we want `Release`
  # We prefer `Release` to export the DSYM file as well
  config[:configuration] ||= "Release" if configurations.include?("Release")

  return if config[:configuration].to_s.length > 0

  if configurations.count == 1
    config[:configuration] = configurations.last
  else
    if Helper.is_ci?
      Helper.log.error "Multiple configurations found but you haven't specified one.".red
      Helper.log.error "Since this is a CI, please pass one using the `configuration` option".red
      raise "Multiple configurations found".red
    else
      puts "Select Configuration: "
      config[:configuration] = choose(*(configurations))
    end
  end
end

.detect_platformObject

Is it an iOS device or a Mac?



133
134
135
136
137
138
# File 'lib/gym/detect_values.rb', line 133

def self.detect_platform
  return if Gym.config[:destination]
  platform = Gym.project.build_settings(key: "PLATFORM_DISPLAY_NAME") || "iOS" # either `iOS` or `OS X`

  Gym.config[:destination] = "generic/platform=#{platform}"
end

.detect_projectsObject



58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/gym/detect_values.rb', line 58

def self.detect_projects
  if Gym.config[:workspace].to_s.length == 0
    workspace = Dir["./*.xcworkspace"]
    if workspace.count > 1
      puts "Select Workspace: "
      Gym.config[:workspace] = choose(*(workspace))
    else
      Gym.config[:workspace] = workspace.first # this will result in nil if no files were found
    end
  end

  if Gym.config[:workspace].to_s.length == 0 and Gym.config[:project].to_s.length == 0
    project = Dir["./*.xcodeproj"]
    if project.count > 1
      puts "Select Project: "
      Gym.config[:project] = choose(*(project))
    else
      Gym.config[:project] = project.first # this will result in nil if no files were found
    end
  end
end

.detect_provisioning_profileObject

Helper Methods



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/gym/detect_values.rb', line 38

def self.detect_provisioning_profile
  unless Gym.config[:provisioning_profile_path]
    Dir.chdir(File.expand_path("..", Gym.project.path)) do
      profiles = Dir["*.mobileprovision"]
      if profiles.count == 1
        profile = File.expand_path(profiles.last)
      elsif profiles.count > 1
        puts "Found more than one provisioning profile in the project directory:"
        profile = choose(*(profiles))
      end

      Gym.config[:provisioning_profile_path] = profile
    end
  end

  if Gym.config[:provisioning_profile_path]
    FastlaneCore::ProvisioningProfile.install(Gym.config[:provisioning_profile_path])
  end
end

.detect_schemeObject



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/gym/detect_values.rb', line 99

def self.detect_scheme
  config = Gym.config
  proj_schemes = Gym.project.schemes

  if config[:scheme].to_s.length > 0
    # Verify the scheme is available
    unless proj_schemes.include?(config[:scheme].to_s)
      Helper.log.error "Couldn't find specified scheme '#{config[:scheme]}'.".red
      config[:scheme] = nil
    end
  end

  return if config[:scheme].to_s.length > 0

  if proj_schemes.count == 1
    config[:scheme] = proj_schemes.last
  elsif proj_schemes.count > 1
    if Helper.is_ci?
      Helper.log.error "Multiple schemes found but you haven't specified one.".red
      Helper.log.error "Since this is a CI, please pass one using the `scheme` option".red
      raise "Multiple schemes found".red
    else
      puts "Select Scheme: "
      config[:scheme] = choose(*(proj_schemes))
    end
  else
    Helper.log.error "Couldn't find any schemes in this project, make sure that the scheme is shared if you are using a workspace".red
    Helper.log.error "Open Xcode, click on `Manage Schemes` and check the `Shared` box for the schemes you want to use".red

    raise "No Schemes found".red
  end
end

.set_additional_default_valuesObject

This is needed as these are more complex default values Returns the finished config object



6
7
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
# File 'lib/gym/detect_values.rb', line 6

def self.set_additional_default_values
  config = Gym.config

  detect_projects

  if config[:workspace].to_s.length > 0 and config[:project].to_s.length > 0
    raise "You can only pass either a workspace or a project path, not both".red
  end

  if config[:workspace].to_s.length == 0 and config[:project].to_s.length == 0
    raise "No project/workspace found in the current directory.".red
  end

  Gym.project = Project.new(config)
  detect_provisioning_profile

  # Go into the project's folder
  Dir.chdir(File.expand_path("..", Gym.project.path)) do
    config.load_configuration_file(Gym.gymfile_name)
  end

  detect_scheme
  detect_platform # we can only do that *after* we have the scheme
  detect_configuration

  config[:output_name] ||= Gym.project.app_name

  return config
end