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
29b83ac9
Commit
29b83ac9
authored
Nov 05, 2014
by
Kyle Fuller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Rakefile] Remove old references to compiling Xcodeproj
These days of compiled Xcodeproj gem are long gone.
parent
ceb0e5bd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
13 deletions
+2
-13
Rakefile
Rakefile
+2
-13
No files found.
Rakefile
View file @
29b83ac9
...
...
@@ -22,23 +22,12 @@ task :bootstrap, [:use_bundle_dir?] => [:check_requirements] do |t, args|
puts
"Updating submodules"
execute_command
"git submodule update --init --recursive"
require
'rbconfig'
if
RbConfig
::
CONFIG
[
'prefix'
]
==
'/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr'
# Workaround Apple's mess. See https://github.com/CocoaPods/Xcodeproj/issues/137
#
# TODO This is not as correct as actually fixing the issue, figure out if we
# can override these build flags:
#
# ENV['DLDFLAGS'] = '-undefined dynamic_lookup -multiply_defined suppress'
ENV
[
'ARCHFLAGS'
]
=
'-Wno-error=unused-command-line-argument-hard-error-in-future'
end
if
system
(
'which bundle'
)
puts
"Installing gems"
if
args
[
:use_bundle_dir?
]
execute_command
"env
XCODEPROJ_BUILD=1
bundle install --path ./travis_bundle_dir"
execute_command
"env bundle install --path ./travis_bundle_dir"
else
execute_command
"env
XCODEPROJ_BUILD=1
bundle install"
execute_command
"env bundle install"
end
else
$stderr
.
puts
"
\033
[0;31m"
\
...
...
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