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
266f42e1
Commit
266f42e1
authored
Nov 16, 2014
by
Eloy Durán
Committed by
Samuel E. Giddins
Nov 19, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Analyzer] Cleanup and improve tests for lockfile checkout options.
parent
d1d7fd8c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
sandbox.rb
lib/cocoapods/sandbox.rb
+5
-1
spec_helper.rb
spec/spec_helper.rb
+2
-0
analyzer_spec.rb
spec/unit/installer/analyzer_spec.rb
+0
-0
No files found.
lib/cocoapods/sandbox.rb
View file @
266f42e1
...
...
@@ -64,8 +64,12 @@ module Pod
# @return [Lockfile] the manifest which contains the information about the
# installed pods.
#
attr_accessor
:manifest
def
manifest
Lockfile
.
from_file
(
manifest_path
)
if
manifest_path
.
exist?
@manifest
||=
begin
Lockfile
.
from_file
(
manifest_path
)
if
manifest_path
.
exist?
end
end
# @return [Project] the Pods project.
...
...
spec/spec_helper.rb
View file @
266f42e1
...
...
@@ -26,7 +26,9 @@ require 'bacon'
require
'mocha-on-bacon'
require
'pretty_bacon'
require
'pathname'
require
'active_support/core_ext/string/strip'
require
'active_support/core_ext/object/deep_dup'
ROOT
=
Pathname
.
new
(
File
.
expand_path
(
'../../'
,
__FILE__
))
$:
.
unshift
((
ROOT
+
'lib'
).
to_s
)
...
...
spec/unit/installer/analyzer_spec.rb
View file @
266f42e1
This diff is collapsed.
Click to expand it.
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