Commit 2719a381 authored by Jeremy Slater's avatar Jeremy Slater

Move method below attributes

parent 04769c88
...@@ -45,12 +45,6 @@ module Pod ...@@ -45,12 +45,6 @@ module Pod
# @!group Information storage # @!group Information storage
# @return [Platform] the platform for this library.
#
def platform
@platform ||= target_definition.platform
end
# @return [Hash{String=>Symbol}] A hash representing the user build # @return [Hash{String=>Symbol}] A hash representing the user build
# configurations where each key corresponds to the name of a # configurations where each key corresponds to the name of a
# configuration and its value to its type (`:debug` or `:release`). # configuration and its value to its type (`:debug` or `:release`).
...@@ -62,6 +56,12 @@ module Pod ...@@ -62,6 +56,12 @@ module Pod
# #
attr_accessor :target attr_accessor :target
# @return [Platform] the platform for this library.
#
def platform
@platform ||= target_definition.platform
end
#-------------------------------------------------------------------------# #-------------------------------------------------------------------------#
# @!group Support files # @!group Support files
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment