Commit a4742576 authored by Marius Rackwitz's avatar Marius Rackwitz

Don't use #product_basename for the different product type getters

As it breaks the migration
parent 48422ac3
......@@ -49,16 +49,22 @@ module Pod
end
end
# @return [String] the name of the framework, depends on #product_basename.
# @return [String] the name of the framework, depends on #label.
#
# @note This may not depend on #requires_framework? indirectly as it is
# used for migration.
#
def framework_name
"#{product_basename}.framework"
"#{product_module_name}.framework"
end
# @return [String] the name of the library, depends on #product_basename.
# @return [String] the name of the library, depends on #label.
#
# @note This may not depend on #requires_framework? indirectly as it is
# used for migration.
#
def static_library_name
"lib#{product_basename}.a"
"lib#{label}.a"
end
# @return [Symbol] either :framework or :static_library, depends on
......
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