Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
aef33b51
Commit
aef33b51
authored
Feb 05, 2018
by
Eric Amorde
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup old TODOs
parent
5cffb44f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
1 addition
and
35 deletions
+1
-35
outdated.rb
lib/cocoapods/command/outdated.rb
+0
-5
installer.rb
lib/cocoapods/installer.rb
+0
-7
analyzer.rb
lib/cocoapods/installer/analyzer.rb
+0
-5
sandbox_analyzer.rb
lib/cocoapods/installer/analyzer/sandbox_analyzer.rb
+1
-5
pod_source_installer.rb
lib/cocoapods/installer/pod_source_installer.rb
+0
-9
user_project_integrator.rb
lib/cocoapods/installer/user_project_integrator.rb
+0
-2
sandbox.rb
lib/cocoapods/sandbox.rb
+0
-2
No files found.
lib/cocoapods/command/outdated.rb
View file @
aef33b51
...
...
@@ -13,11 +13,6 @@ module Pod
# Run the command
#
# @todo the command reports new dependencies added to the Podfile as
# updates.
#
# @todo fix.
#
def
run
if
updates
.
empty?
UI
.
puts
'No pod updates are available.'
.
yellow
...
...
lib/cocoapods/installer.rb
View file @
aef33b51
...
...
@@ -544,8 +544,6 @@ module Pod
# Writes the Podfile and the lock files.
#
# @todo Pass the checkout options to the Lockfile.
#
# @return [void]
#
def
write_lockfiles
...
...
@@ -571,11 +569,6 @@ module Pod
#
# @return [void]
#
# @todo [#397] The libraries should be cleaned and the re-added on every
# installation. Maybe a clean_user_project phase should be added.
# In any case it appears to be a good idea store target definition
# information in the lockfile.
#
def
integrate_user_project
UI
.
section
"Integrating client
#{
'project'
.
pluralize
(
aggregate_targets
.
map
(
&
:user_project_path
).
uniq
.
count
)
}
"
do
installation_root
=
config
.
installation_root
...
...
lib/cocoapods/installer/analyzer.rb
View file @
aef33b51
...
...
@@ -223,9 +223,6 @@ module Pod
# the name of the Pod (root name of the dependencies) and doesn't
# group them by target definition.
#
# @todo [CocoaPods > 0.18] If there isn't a Lockfile all the Pods should
# be marked as added.
#
def
generate_podfile_state
if
lockfile
pods_state
=
nil
...
...
@@ -705,8 +702,6 @@ module Pod
#
# @return [void]
#
# TODO: Specs
#
def
fetch_external_sources
return
unless
allow_pre_downloads?
...
...
lib/cocoapods/installer/analyzer/sandbox_analyzer.rb
View file @
aef33b51
...
...
@@ -43,11 +43,7 @@ module Pod
alias_method
:update_mode?
,
:update_mode
# @return [Lockfile] The lockfile of the installation as a fall-back if
# there is no sandbox manifest. This is indented as a temporary
# solution to prevent the full re-installation from users which
# are upgrading from CP < 0.17.
#
# @todo Remove for CP 0.18.
# there is no sandbox manifest.
#
attr_reader
:lockfile
...
...
lib/cocoapods/installer/pod_source_installer.rb
View file @
aef33b51
...
...
@@ -63,9 +63,6 @@ module Pod
# Cleans the installations if appropriate.
#
# @todo As the pre install hooks need to run before cleaning this
# method should be refactored.
#
# @return [void]
#
def
clean!
...
...
@@ -74,9 +71,6 @@ module Pod
# Locks the source files if appropriate.
#
# @todo As the pre install hooks need to run before cleaning this
# method should be refactored.
#
# @return [void]
#
def
lock_files!
(
file_accessors
)
...
...
@@ -88,9 +82,6 @@ module Pod
# Unlocks the source files if appropriate.
#
# @todo As the pre install hooks need to run before cleaning this
# method should be refactored.
#
# @return [void]
#
def
unlock_files!
(
file_accessors
)
...
...
lib/cocoapods/installer/user_project_integrator.rb
View file @
aef33b51
...
...
@@ -44,8 +44,6 @@ module Pod
# @param [Pathname] installation_root @see #installation_root
# @param [Array<AggregateTarget>] targets @see #targets
#
# @todo Too many initialization arguments
#
def
initialize
(
podfile
,
sandbox
,
installation_root
,
targets
)
@podfile
=
podfile
@sandbox
=
sandbox
...
...
lib/cocoapods/sandbox.rb
View file @
aef33b51
...
...
@@ -367,8 +367,6 @@ module Pod
# @return [Hash{String=>Pathname}] The path of the Pods' podspecs with a local source
# grouped by their root name.
#
# @todo Rename (e.g. `pods_with_local_path`)
#
attr_reader
:development_pods
# Checks if a Pod is locally sourced?
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment