Class: Jazzy::PodspecDocumenter

Inherits:
Object
  • Object
show all
Defined in:
lib/jazzy/podspec_documenter.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(podspec) ⇒ PodspecDocumenter

Returns a new instance of PodspecDocumenter.



8
9
10
# File 'lib/jazzy/podspec_documenter.rb', line 8

def initialize(podspec)
  @podspec = podspec
end

Instance Attribute Details

#podspecObject (readonly)

Returns the value of attribute podspec.



6
7
8
# File 'lib/jazzy/podspec_documenter.rb', line 6

def podspec
  @podspec
end

Class Method Details

.apply_config_defaults(podspec, config) ⇒ Object

rubocop:disable Metrics/CyclomaticComplexity rubocop:disable Metrics/PerceivedComplexity



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

def self.apply_config_defaults(podspec, config)
  return unless podspec

  unless config.author_name_configured
    config.author_name = author_name(podspec)
  end
  unless config.module_name_configured
    config.module_name = podspec.module_name
  end
  unless config.author_url_configured
    config.author_url = podspec.homepage || github_file_prefix(podspec)
  end
  unless config.version_configured
    config.version = podspec.version.to_s
  end
  unless config.github_file_prefix_configured
    config.github_file_prefix = github_file_prefix(podspec)
  end
end

.create_podspec(podspec_path) ⇒ Object



26
27
28
29
30
31
32
# File 'lib/jazzy/podspec_documenter.rb', line 26

def self.create_podspec(podspec_path)
  case podspec_path
  when Pathname, String
    require 'cocoapods'
    Pod::Specification.from_file(podspec_path)
  end
end

Instance Method Details

#sourcekitten_outputObject



12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/jazzy/podspec_documenter.rb', line 12

def sourcekitten_output
  sandbox = Pod::Sandbox.new(pod_config.sandbox_root)
  installer = Pod::Installer.new(sandbox, podfile)
  installer.install!
  stdout = Dir.chdir(sandbox.root) do
    pod_targets.map do |t|
      SourceKitten.run_sourcekitten(
        %W(doc --module-name #{podspec.module_name} -- -target #{t}),
      )
    end
  end
  stdout.reduce([]) { |a, s| a + JSON.load(s) }.to_json
end