Commit 57fb7838 authored by Fabio Pelosin's avatar Fabio Pelosin

Remove old todos

parent 1546afe6
...@@ -262,7 +262,8 @@ module Pod ...@@ -262,7 +262,8 @@ module Pod
#-----------------------------------------------------------------------# #-----------------------------------------------------------------------#
# TODO some of the following methods can probably move to one of the subclasses. # @todo some of the following methods can probably move to one of the
# subclasses.
private private
...@@ -345,8 +346,6 @@ module Pod ...@@ -345,8 +346,6 @@ module Pod
return best_source.specification(set.name, best_version), best_source return best_source.specification(set.name, best_version), best_source
end end
def podspecs_to_lint def podspecs_to_lint
@podspecs_to_lint ||= begin @podspecs_to_lint ||= begin
files = [] files = []
...@@ -380,11 +379,10 @@ module Pod ...@@ -380,11 +379,10 @@ module Pod
#--------------------------------------# #--------------------------------------#
# Templates and github information retrieval for spec create # Templates and github information retrieval for spec create
#
# TODO it would be nice to have a template class that accepts options and # @todo It would be nice to have a template class that accepts options
# uses the default ones if not provided. # and uses the default ones if not provided.
# @todo The template is outdated.
# TODO The template is outdated.
def default_data_for_template(name) def default_data_for_template(name)
data = {} data = {}
......
...@@ -41,7 +41,7 @@ EOS ...@@ -41,7 +41,7 @@ EOS
script.puts "install_resource '#{resource}'" script.puts "install_resource '#{resource}'"
end end
end end
# TODO use File api # @todo use File api
system("chmod +x '#{pathname}'") system("chmod +x '#{pathname}'")
end end
end end
......
...@@ -56,7 +56,6 @@ module Pod ...@@ -56,7 +56,6 @@ module Pod
'HEADER_SEARCH_PATHS' => '${PODS_HEADERS_SEARCH_PATHS}', 'HEADER_SEARCH_PATHS' => '${PODS_HEADERS_SEARCH_PATHS}',
'PODS_ROOT' => relative_pods_root, 'PODS_ROOT' => relative_pods_root,
'PODS_HEADERS_SEARCH_PATHS' => '${PODS_PUBLIC_HEADERS_SEARCH_PATHS}', 'PODS_HEADERS_SEARCH_PATHS' => '${PODS_PUBLIC_HEADERS_SEARCH_PATHS}',
# TODO With this setup every targets gets the headers of the previus targets.
'PODS_BUILD_HEADERS_SEARCH_PATHS' => quote(sandbox.build_headers.search_paths), 'PODS_BUILD_HEADERS_SEARCH_PATHS' => quote(sandbox.build_headers.search_paths),
'PODS_PUBLIC_HEADERS_SEARCH_PATHS' => quote(sandbox.public_headers.search_paths), 'PODS_PUBLIC_HEADERS_SEARCH_PATHS' => quote(sandbox.public_headers.search_paths),
}) })
......
...@@ -145,9 +145,6 @@ module Pod ...@@ -145,9 +145,6 @@ module Pod
# headers folders as the keys and the absolute paths of the # headers folders as the keys and the absolute paths of the
# header files as the values. # header files as the values.
# #
# TODO This is being overridden in the RestKit 0.9.4 spec and that
# override should be fixed.
#
def header_mappings(headers_sandbox, consumer, headers) def header_mappings(headers_sandbox, consumer, headers)
dir = headers_sandbox dir = headers_sandbox
dir = dir + consumer.header_dir if consumer.header_dir dir = dir + consumer.header_dir if consumer.header_dir
......
...@@ -169,7 +169,6 @@ module Pod ...@@ -169,7 +169,6 @@ module Pod
#--------------------------------------# #--------------------------------------#
# TODO add a simple source file which uses the compiled lib to check that it really really works
it "activates required pods and create a working static library xcode project" do it "activates required pods and create a working static library xcode project" do
podfile = Podfile.new do podfile = Podfile.new do
platform test_platform platform test_platform
...@@ -202,7 +201,6 @@ module Pod ...@@ -202,7 +201,6 @@ module Pod
# No Reachability is required by ASIHTTPRequest on OSX # No Reachability is required by ASIHTTPRequest on OSX
lockfile_contents['DEPENDENCIES'].delete_at(1) lockfile_contents['DEPENDENCIES'].delete_at(1)
lockfile_contents['PODS'].delete_at(1) lockfile_contents['PODS'].delete_at(1)
# lockfile_contents['PODS'][0] = 'ASIHTTPRequest (1.8.1)'
end end
lockfile = installer.lockfile.to_hash lockfile = installer.lockfile.to_hash
lockfile.delete("SPEC CHECKSUMS") lockfile.delete("SPEC CHECKSUMS")
......
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