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
04a2d868
Commit
04a2d868
authored
Feb 23, 2013
by
Fabio Pelosin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Changelog] Add note about broken specs.
parent
51e22ffc
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
4 deletions
+19
-4
CHANGELOG.md
CHANGELOG.md
+17
-3
repo.rb
lib/cocoapods/command/repo.rb
+2
-1
No files found.
CHANGELOG.md
View file @
04a2d868
...
@@ -3,6 +3,20 @@
...
@@ -3,6 +3,20 @@
•
[
Core
](
https://github.com/CocoaPods/Core/master
)
•
[
Core
](
https://github.com/CocoaPods/Core/master
)
•
[
Xcodeproj
](
https://github.com/CocoaPods/Xcodeproj/compare/0.5.0...master
)
•
[
Xcodeproj
](
https://github.com/CocoaPods/Xcodeproj/compare/0.5.0...master
)
###### __Notice__
At some point in future the master repo will be switched to the YAML format of
specifications. This means that specifications with hooks (or any other kind of
dynamic logic) will not be accepted. Please let us know if there is need for
other DSL attributes or any other kind of support.
-
Currently the following specifications fail to load as they depended on the
CocoaPods internals and need to be updated:
-
LibComponentLogging-pods/0.0.1/LibComponentLogging-pods.podspec
-
Lockbox/1.2.0/Lockbox.podspec
-
RestKit/0.9.3/RestKit.podspec
-
Three20/1.0.11/Three20.podspec
###### __Breaking__
###### __Breaking__
-
Support for inline podspecs has been removed.
-
Support for inline podspecs has been removed.
...
@@ -58,11 +72,11 @@
...
@@ -58,11 +72,11 @@
-
Major clean up and refactor of the whole code base.
-
Major clean up and refactor of the whole code base.
-
Extracted the core classes into
-
Extracted the core classes into
[
CocoaPods-Core
](
https://github.com/CocoaPods/Core
)
gem.
[
cocoapods-core
](
https://github.com/CocoaPods/Core
)
gem.
-
Extracted command-line command & option handling into
[
CLAide
](
https://github.com/CocoaPods/CLAide
)
.
-
Extracted downloader into
-
Extracted downloader into
[
cocoapods-downloader
](
https://github.com/CocoaPods/cocoapods-downloader
)
.
[
cocoapods-downloader
](
https://github.com/CocoaPods/cocoapods-downloader
)
.
-
Extracted command-line command & option handling into
[
CLAide
](
https://github.com/CocoaPods/CLAide
)
.
## 0.16.3
## 0.16.3
[
CocoaPods
](
https://github.com/CocoaPods/CocoaPods/compare/0.16.2...0.16.3
)
•
[
Xcodeproj
](
https://github.com/CocoaPods/Xcodeproj/compare/0.4.3...0.5.0
)
[
CocoaPods
](
https://github.com/CocoaPods/CocoaPods/compare/0.16.2...0.16.3
)
•
[
Xcodeproj
](
https://github.com/CocoaPods/Xcodeproj/compare/0.4.3...0.5.0
)
...
...
lib/cocoapods/command/repo.rb
View file @
04a2d868
...
@@ -120,7 +120,8 @@ module Pod
...
@@ -120,7 +120,8 @@ module Pod
else
else
results
=
validator
.
results
results
=
validator
.
results
end
end
results
.
each
do
|
result
|
sorted_results
=
results
.
sort_by
{
|
r
|
[
r
.
type
,
r
.
message
]
}
sorted_results
.
each
do
|
result
|
name
=
validator
.
spec
?
validator
.
spec
.
name
:
podspec
.
relative_path_from
(
dir
)
name
=
validator
.
spec
?
validator
.
spec
.
name
:
podspec
.
relative_path_from
(
dir
)
version
=
validator
.
spec
?
validator
.
spec
.
version
:
'unknown'
version
=
validator
.
spec
?
validator
.
spec
.
version
:
'unknown'
messages_by_type
[
result
.
type
]
||=
{}
messages_by_type
[
result
.
type
]
||=
{}
...
...
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