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
22f77e4b
Commit
22f77e4b
authored
Mar 13, 2012
by
Eloy Duran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update for Xcodeproj HEAD.
parent
3384b81f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
10 deletions
+11
-10
Podfile.lock
examples/AFNetworking Mac Example/Podfile.lock
+1
-1
Podfile.lock
examples/AFNetworking iOS Example/Podfile.lock
+1
-1
Podfile.lock
examples/MacRubySample/Podfile.lock
+3
-1
Xcodeproj
external/Xcodeproj
+1
-1
target_installer.rb
lib/cocoapods/installer/target_installer.rb
+2
-2
project.rb
lib/cocoapods/project.rb
+3
-4
No files found.
examples/AFNetworking Mac Example/Podfile.lock
View file @
22f77e4b
PODS:
- AFNetworking (0.7.0):
- JSONKit
- FormatterKit (0.
6
.0)
- FormatterKit (0.
7
.0)
- JSONKit (1.4)
DEPENDENCIES:
...
...
examples/AFNetworking iOS Example/Podfile.lock
View file @
22f77e4b
PODS:
- AFNetworking (0.7.0):
- JSONKit
- FormatterKit (0.
6
.0)
- FormatterKit (0.
7
.0)
- JSONKit (1.4)
DEPENDENCIES:
...
...
examples/MacRubySample/Podfile.lock
View file @
22f77e4b
PODS:
- ASIHTTPRequest (1.8.1)
- CocoaLumberjack (1.2.1)
- ASIHTTPRequest (1.8.1)
- CocoaLumberjack (1.3.2)
- SBJson (3.0.4)
- SBJson (3.0.4)
DEPENDENCIES:
...
...
Xcodeproj
@
338e4d37
Subproject commit
2e3186e00a2849dc6c4facb38a92775b754103a0
Subproject commit
338e4d37f282121754f10f6d169256a57a64860d
lib/cocoapods/installer/target_installer.rb
View file @
22f77e4b
...
...
@@ -78,9 +78,9 @@ module Pod
xcconfig
.
merge!
(
'HEADER_SEARCH_PATHS'
=>
quoted
(
sandbox
.
header_search_paths
).
join
(
" "
))
support_files_group
=
@project
.
group
(
"Targets Support Files"
).
create_group
(
@target_definition
.
lib_name
)
support_files_group
.
add_file_path
s
(
target_support_files
)
support_files_group
.
create_file
s
(
target_support_files
)
xcconfig_file
=
support_files_group
.
file
_with_path
(
xcconfig_filename
)
xcconfig_file
=
support_files_group
.
file
s
.
where
(
:path
=>
xcconfig_filename
)
configure_build_configurations
(
xcconfig_file
)
create_files
(
pods
,
sandbox
)
...
...
lib/cocoapods/project.rb
View file @
22f77e4b
...
...
@@ -37,11 +37,10 @@ module Pod
def
self
.
for_platform
(
platform
)
Pod
::
Project
.
new
.
tap
do
|
project
|
project
.
main_group
<<
project
.
groups
.
new
({
'name'
=>
'Pods'
})
framework
=
project
.
add_system_framework
(
platform
==
:ios
?
'Foundation'
:
'Cocoa'
)
framework
.
group
=
project
.
groups
.
new
({
'name'
=>
'Frameworks'
})
project
.
main_group
<<
framework
.
group
project
.
main_group
<<
project
.
groups
.
new
(
'name'
=>
'Pods'
)
project
.
add_system_framework
(
platform
==
:ios
?
'Foundation'
:
'Cocoa'
)
# TODO this should al move to Xcodeproj as the default behavior of a new project
configuration_list
=
project
.
objects
.
add
(
Xcodeproj
::
Project
::
Object
::
XCConfigurationList
,
{
'defaultConfigurationIsVisible'
=>
'0'
,
'defaultConfigurationName'
=>
'Release'
,
...
...
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