Class: Pod::Command::Try

Inherits:
Pod::Command show all
Defined in:
lib/pod/command/try.rb

Overview

The pod try command.

Constant Summary collapse

TRY_TMP_DIR =

Returns:

  • (Pathname)
Pathname.new(Dir.tmpdir) + 'CocoaPods/Try'

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(argv) ⇒ Try

Returns a new instance of Try.



26
27
28
29
30
# File 'lib/pod/command/try.rb', line 26

def initialize(argv)
  config.skip_repo_update = !argv.flag?('repo-update', !config.skip_repo_update)
  @name = argv.shift_argument
  super
end

Class Method Details

.optionsObject



20
21
22
23
24
# File 'lib/pod/command/try.rb', line 20

def self.options
  [
    ['--no-repo-update', 'Skip running `pod repo update` before install'],
  ].concat(super)
end

Instance Method Details

#git_url?(name) ⇒ Bool

Returns Wether the given string is the name of a Pod or an URL for a Git repo.

Returns:

  • (Bool)

    Wether the given string is the name of a Pod or an URL for a Git repo.



237
238
239
240
# File 'lib/pod/command/try.rb', line 237

def git_url?(name)
  prefixes = ['https://', 'http://']
  prefixes.any? { |prefix| name.start_with?(prefix) }
end

#install_pod(spec, sandbox) ⇒ Pathname

Installs the specification in the given directory.

Parameters:

  • The (Specification)

    specification of the Pod.

  • The (Pathname)

    directory of the sandbox where to install the Pod.

Returns:

  • (Pathname)

    The path where the Pod was installed



125
126
127
128
129
130
131
132
133
# File 'lib/pod/command/try.rb', line 125

def install_pod(spec, sandbox)
  specs = { :ios => spec, :osx => spec }
  clean = config.clean
  config.clean = false
  installer = Installer::PodSourceInstaller.new(sandbox, specs)
  installer.install!
  config.clean = clean
  sandbox.root + spec.name
end

#install_podfile(proj) ⇒ String

Performs a CocoaPods installation for the given project if Podfile is found. Shells out to avoid issues with the config of the process running the try command.

Returns:

  • (String)

    proj The path of the project.

  • (String)

    The path of the file to open, in other words the workspace of the installation or the given project.



178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/pod/command/try.rb', line 178

def install_podfile(proj)
  return unless proj
  dirname = Pathname.new(proj).dirname
  podfile_path = dirname + 'Podfile'
  if podfile_path.exist?
    Dir.chdir(dirname) do
      perform_cocoapods_installation

      podfile = Pod::Podfile.from_file(podfile_path)

      if podfile.workspace_path
        File.expand_path(podfile.workspace_path)
      else
        proj.to_s.chomp(File.extname(proj.to_s)) + '.xcworkspace'
      end
    end
  else
    proj
  end
end

#open_project(path) ⇒ String, void

Opens the project at the given path.

Returns:

  • (String)

    path The path of the project.

  • (void)


220
221
222
223
# File 'lib/pod/command/try.rb', line 220

def open_project(path)
  UI.puts "Opening '#{path}'"
  `open "#{path}"`
end

#perform_cocoapods_installationvoid

This method returns an undefined value.

Returns Performs a CocoaPods installation in the working directory.



228
229
230
231
232
# File 'lib/pod/command/try.rb', line 228

def perform_cocoapods_installation
  UI.titled_section 'Performing CocoaPods Installation' do
    Command::Install.invoke
  end
end

#pick_demo_project(dir) ⇒ String

Picks a project or workspace suitable for the demo purposes in the given directory.

To decide the project simple heuristics are used according to the name, if no project is found this method raises and Informative otherwise if more than one project is found the choice is presented to the user.

Parameters:

  • dir (#to_s)

    The path where to look for projects.

Returns:

  • (String)

    The path of the project.



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/pod/command/try.rb', line 147

def pick_demo_project(dir)
  projs = projects_in_dir(dir)
  if projs.count == 0
    raise Informative, 'Unable to find any project in the source files' \
      " of the Pod: `#{dir}`"
  elsif projs.count == 1
    projs.first
  elsif (workspaces = projs.grep(/(demo|example|sample).*\.xcworkspace$/i)).count == 1
    workspaces.first
  elsif (projects = projs.grep(/demo|example|sample/i)).count == 1
    projects.first
  else
    message = 'Which project would you like to open'
    selection_array = projs.map do |p|
      Pathname.new(p).relative_path_from(dir).to_s
    end
    index = UI.choose_from_array(selection_array, message)
    projs[index]
  end
end

#projects_in_dir(dir) ⇒ Array<String>

Returns The list of the workspaces and projects in a given directory excluding The Pods project and the projects that have a sister workspace.

Returns:

  • (Array<String>)

    The list of the workspaces and projects in a given directory excluding The Pods project and the projects that have a sister workspace.



246
247
248
249
250
251
252
253
254
# File 'lib/pod/command/try.rb', line 246

def projects_in_dir(dir)
  glob_match = Dir.glob("#{dir}/**/*.xc{odeproj,workspace}")
  glob_match = glob_match.reject do |p|
    next true if p.include?('Pods.xcodeproj')
    next true if p.end_with?('.xcodeproj/project.xcworkspace')
    sister_workspace = p.chomp(File.extname(p.to_s)) + '.xcworkspace'
    p.end_with?('.xcodeproj') && glob_match.include?(sister_workspace)
  end
end

#runObject



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/pod/command/try.rb', line 37

def run
  ensure_master_spec_repo_exists!
  sandbox = Sandbox.new(TRY_TMP_DIR)
  spec = setup_spec_in_sandbox(sandbox)

  UI.title "Trying #{spec.name}" do
    pod_dir = install_pod(spec, sandbox)
    settings = TrySettings.settings_from_folder(pod_dir)
    settings.run_pre_install_commands(true)
    proj = settings.project_path || pick_demo_project(pod_dir)
    file = install_podfile(proj)
    if file
      open_project(file)
    else
      UI.puts "Unable to locate a project for #{spec.name}"
    end
  end
end

#setup_spec_in_sandbox(sandbox) ⇒ Object

Puts the spec’s data in the sandbox



67
68
69
70
71
72
73
74
75
76
# File 'lib/pod/command/try.rb', line 67

def setup_spec_in_sandbox(sandbox)
  if git_url?(@name)
    spec = spec_with_url(@name)
    sandbox.store_pre_downloaded_pod(spec.name)
  else
    update_specs_repos
    spec = spec_with_name(@name)
  end
  spec
end

#spec_with_name(name) ⇒ Specification

Returns the specification of the last version of the Pod with the given name.

Parameters:

  • name (String)

    The name of the pod.

Returns:

  • (Specification)

    The specification.



86
87
88
89
90
91
92
93
# File 'lib/pod/command/try.rb', line 86

def spec_with_name(name)
  set = SourcesManager.search(Dependency.new(name))
  if set
    set.specification.root
  else
    raise Informative, "Unable to find a specification for `#{name}`"
  end
end

#spec_with_url(url) ⇒ Specification

Returns the specification found in the given Git repository URL by downloading the repository.

Parameters:

  • url (String)

    The URL for the pod Git repository.

Returns:

  • (Specification)

    The specification.



103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/pod/command/try.rb', line 103

def spec_with_url(url)
  name = url.split('/').last
  name = name.chomp('.git') if name.end_with?('.git')

  target_dir = TRY_TMP_DIR + name
  target_dir.rmtree if target_dir.exist?

  downloader = Pod::Downloader.for_target(target_dir, :git => url)
  downloader.download

  spec_file = Pathname.glob(target_dir + "#{name}.podspec{,.json}").first
  Pod::Specification.from_file(spec_file)
end

#update_specs_reposvoid

This method returns an undefined value.

Returns Updates the specs repo unless disabled by the config.



206
207
208
209
210
211
# File 'lib/pod/command/try.rb', line 206

def update_specs_repos
  return if config.skip_repo_update?
  UI.section 'Updating spec repositories' do
    SourcesManager.update
  end
end

#validate!Object



32
33
34
35
# File 'lib/pod/command/try.rb', line 32

def validate!
  super
  help! 'A Pod name or URL is required.' unless @name
end