Class: Pod::Specification::DSL::PlatformProxy
- Inherits:
-
Object
- Object
- Pod::Specification::DSL::PlatformProxy
- 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
-
#platform ⇒ Symbol
The platform described by this proxy.
-
#spec ⇒ Specification
The specification for this platform proxy.
Instance Method Summary collapse
-
#dependency(*args) ⇒ void
Allows to add dependency for the platform.
-
#deployment_target=(value) ⇒ void
Allows to set the deployment target for the platform.
-
#initialize(spec, platform) ⇒ PlatformProxy
constructor
A new instance of PlatformProxy.
-
#method_missing(meth, *args, &block) ⇒ void
Defines a setter method for each attribute of the specification class, that forwards the message to the #specification using the Specification#on_platform method.
Constructor Details
#initialize(spec, platform) ⇒ PlatformProxy
Returns a new instance of PlatformProxy.
20 21 22 |
# File 'lib/cocoapods-core/specification/dsl/platform_proxy.rb', line 20 def initialize(spec, platform) @spec, @platform = spec, 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.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/cocoapods-core/specification/dsl/platform_proxy.rb', line 30 def method_missing(meth, *args, &block) attribute = Specification::DSL.attributes.values.find do |attr| if attr.writer_name.to_sym == meth true elsif attr.writer_singular_form attr.writer_singular_form.to_sym == meth end end if attribute && attribute.multi_platform? spec.store_attribute(attribute.name, args.first, platform) else super end end |
Instance Attribute Details
#platform ⇒ Symbol
Returns 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 |
#spec ⇒ Specification
Returns the specification for this platform proxy.
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.
49 50 51 52 53 54 55 56 |
# File 'lib/cocoapods-core/specification/dsl/platform_proxy.rb', line 49 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.
62 63 64 65 66 |
# File 'lib/cocoapods-core/specification/dsl/platform_proxy.rb', line 62 def deployment_target=(value) platform_name = platform.to_s spec.attributes_hash['platforms'] ||= {} spec.attributes_hash['platforms'][platform_name] = value end |