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
91816725
Commit
91816725
authored
Oct 04, 2012
by
Fabio Pelosin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Outdated] Fixed crash.
Closes 568.
parent
8e72cbe1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
CHANGELOG.md
CHANGELOG.md
+2
-0
outdated.rb
lib/cocoapods/command/outdated.rb
+3
-1
No files found.
CHANGELOG.md
View file @
91816725
...
...
@@ -9,6 +9,8 @@
[
#568
](
https://github.com/CocoaPods/CocoaPods/issues/568
)
-
Fixed a crash related to the RubyGems version informative.
[
#570
](
https://github.com/CocoaPods/CocoaPods/issues/570
)
-
Fixed a crash for
`pod outdated`
.
[
#567
](
https://github.com/CocoaPods/CocoaPods/issues/567
)
## 0.15.0
...
...
lib/cocoapods/command/outdated.rb
View file @
91816725
...
...
@@ -22,7 +22,6 @@ module Pod
def
run
verify_podfile_exists!
verify_lockfile_exists!
update_spec_repos_if_necessary!
sandbox
=
Sandbox
.
new
(
config
.
project_pods_root
)
resolver
=
Resolver
.
new
(
config
.
podfile
,
config
.
lockfile
,
sandbox
)
...
...
@@ -30,6 +29,9 @@ module Pod
resolver
.
update_external_specs
=
false
resolver
.
resolve
#TODO: the command report new dependencies (added to by updated ones)
# as updates.
names
=
resolver
.
pods_to_install
-
resolver
.
pods_from_external_sources
specs
=
resolver
.
specs
.
select
do
|
spec
|
names
.
include?
(
spec
.
name
)
&&
!
spec
.
version
.
head?
...
...
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