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
63c80b18
Commit
63c80b18
authored
Aug 16, 2013
by
Eloy Durán
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[rake] Welcome to the real world, where envs don’t automagically work.
Was missing a `bundle exec`.
parent
5b30b397
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
Rakefile
Rakefile
+2
-1
No files found.
Rakefile
View file @
63c80b18
...
...
@@ -344,7 +344,8 @@ namespace :examples do
Dir
.
chdir
(
example
.
to_s
)
do
execute_command
"rm -rf Pods DerivedData"
# WARNING: This appeart to use sytem gems instead of the bundle ones.
execute_command
"
#{
'../../bin/'
unless
ENV
[
'FROM_GEM'
]
}
sandbox-pod install --verbose --no-repo-update"
pod_command
=
ENV
[
'FROM_GEM'
]
?
'sandbox-pod'
:
'bundle exec ../../bin/sandbox-pod'
execute_command
"
#{
pod_command
}
install --verbose --no-repo-update"
command
=
"xcodebuild -workspace '
#{
example
.
basename
}
.xcworkspace' -scheme '
#{
example
.
basename
}
'"
if
(
example
+
'Podfile'
).
read
.
include?
(
'platform :ios'
)
# Specifically build against the simulator SDK so we don't have to deal with code signing.
...
...
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