Class: Pod::Specification::DSL::PlatformProxy

Inherits:
Object
  • Object
show all
Defined in:
lib/cocoapods-core/specification/dsl/platform_proxy.rb

Overview

The PlatformProxy works in conjunction with Specification#_on_platform. It provides support for a syntax like ‘spec.ios.source_files = ’file’‘.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(spec, platform) ⇒ PlatformProxy

Returns a new instance of PlatformProxy.

Parameters:

  • spec (Specification)

    @see spec

  • platform (Symbol)

    @see platform



20
21
22
23
# File 'lib/cocoapods-core/specification/dsl/platform_proxy.rb', line 20

def initialize(spec, platform)
  @spec = spec
  @platform = platform
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, *args, &block) ⇒ void

This method returns an undefined value.

Defines a setter method for each attribute of the specification class, that forwards the message to the #specification using the Specification#on_platform method.

Raises:

  • (NoMethodError)


31
32
33
34
35
# File 'lib/cocoapods-core/specification/dsl/platform_proxy.rb', line 31

def method_missing(meth, *args, &block)
  return super unless attribute = attribute_for_method(meth)
  raise NoMethodError, "#{attribute} cannot be set per-platform" unless attribute.multi_platform?
  spec.store_attribute(attribute.name, args.first, platform)
end

Instance Attribute Details

#platformSymbol (readonly)

Returns the platform described by this proxy. Can be either ‘:ios` or `:osx`.

Returns:

  • (Symbol)

    the platform described by this proxy. Can be either ‘:ios` or `:osx`.



15
16
17
# File 'lib/cocoapods-core/specification/dsl/platform_proxy.rb', line 15

def platform
  @platform
end

#specSpecification

Returns the specification for this platform proxy.

Returns:



10
11
12
# File 'lib/cocoapods-core/specification/dsl/platform_proxy.rb', line 10

def spec
  @spec
end

Instance Method Details

#dependency(*args) ⇒ void

This method returns an undefined value.

Allows to add dependency for the platform.



48
49
50
51
52
53
54
55
# File 'lib/cocoapods-core/specification/dsl/platform_proxy.rb', line 48

def dependency(*args)
  name, *version_requirements = args
  platform_name = platform.to_s
  platform_hash = spec.attributes_hash[platform_name] || {}
  platform_hash['dependencies'] ||= {}
  platform_hash['dependencies'][name] = version_requirements
  spec.attributes_hash[platform_name] = platform_hash
end

#deployment_target=(value) ⇒ void

This method returns an undefined value.

Allows to set the deployment target for the platform.



61
62
63
64
65
# File 'lib/cocoapods-core/specification/dsl/platform_proxy.rb', line 61

def deployment_target=(value)
  platform_name = platform.to_s
  spec.attributes_hash['platforms'] ||= {}
  spec.attributes_hash['platforms'][platform_name] = value
end