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
4f0d85d6
Commit
4f0d85d6
authored
Nov 12, 2011
by
Eloy Duran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CHANGELOG.md
parent
91ef6aaa
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
1 deletion
+31
-1
CHANGELOG.md
CHANGELOG.md
+30
-0
cocoapods.gemspec
cocoapods.gemspec
+1
-1
No files found.
CHANGELOG.md
0 → 100644
View file @
4f0d85d6
### 0.3.0
*
Add support for multiple static library targets in the Pods Xcode project
with different sets of depedencies.
[
[docs
][
targets-docs
]
|
[
example
][
targets-example
]
]
*
Install libraries from anywhere. A dependency can take a git url if the repo
contains a podspec file in its root, or a podspec can be loaded from a file
or HTTP location. If no podspec is available, a specification can be defined
inline in the Podfile.
[
[docs
][
spec-outside-spec-repo-docs
]
|
[
example
][
spec-outside-spec-repo-example
]
]
*
Add a
`post_install`
hook to the Podfile class. This allows the user to
customize, for instance, the generated Xcode project _before_ it’s written
to disk.
[
[docs
][
post-install-docs
]
|
[
example
][
post-install-example
]
]
*
Generate a Podfile.lock file next to the Podfile, which contains a manifest
of your dependencies and its dependencies.
[
[example
][
lock-file-example
]
]
*
Generate the Xcode projects from scratch and moved the Xcode related code out
into its own
[
Xcodeproj gem
][
xcodeproj
]
.
[
targets-docs
]:
https://github.com/CocoaPods/CocoaPods/blob/master/lib/cocoapods/podfile.rb#L151
[
targets-example
]:
https://github.com/CocoaPods/CocoaPods/blob/master/examples/MacRubySample/Podfile
[
xcodeproj
]:
https://github.com/CocoaPods/Xcodeproj
[
spec-outside-spec-repo-docs
]:
https://github.com/CocoaPods/CocoaPods/blob/master/lib/cocoapods/podfile.rb#L82
[
spec-outside-spec-repo-example
]:
https://github.com/CocoaPods/CocoaPods/blob/master/examples/SSCatalog/Podfile
[
post-install-docs
]:
https://github.com/CocoaPods/CocoaPods/blob/master/lib/cocoapods/podfile.rb#L185
[
post-install-example
]:
https://github.com/CocoaPods/CocoaPods/blob/master/examples/MacRubySample/Podfile#L17
[
lock-file-example
]:
https://github.com/CocoaPods/CocoaPods/blob/master/examples/RKTwitter/Podfile.lock
cocoapods.gemspec
View file @
4f0d85d6
...
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
...
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
"ecosystem."
"ecosystem."
s
.
files
=
Dir
[
"lib/**/*.rb"
]
+
s
.
files
=
Dir
[
"lib/**/*.rb"
]
+
%w{ bin/pod README.md LICENSE }
%w{ bin/pod README.md LICENSE
CHANGELOG.md
}
s
.
executables
=
%w{ pod }
s
.
executables
=
%w{ pod }
s
.
require_paths
=
%w{ lib }
s
.
require_paths
=
%w{ lib }
...
...
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