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
ee5eb989
Commit
ee5eb989
authored
Dec 17, 2012
by
Fabio Pelosin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Analyzer] moved to Installer::Analizer.
parent
a583e50a
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
3 deletions
+3
-3
cocoapods.rb
lib/cocoapods.rb
+0
-1
analyzer.rb
lib/cocoapods/analyzer.rb
+0
-0
installer.rb
lib/cocoapods/installer.rb
+1
-0
analyzer.rb
lib/cocoapods/installer/analyzer.rb
+0
-0
analyzer_spec.rb
spec/unit/installer/analyzer_spec.rb
+2
-2
No files found.
lib/cocoapods.rb
View file @
ee5eb989
...
@@ -19,7 +19,6 @@ module Pod
...
@@ -19,7 +19,6 @@ module Pod
end
end
end
end
autoload
:Analyzer
,
'cocoapods/analyzer'
autoload
:Command
,
'cocoapods/command'
autoload
:Command
,
'cocoapods/command'
autoload
:Executable
,
'cocoapods/executable'
autoload
:Executable
,
'cocoapods/executable'
autoload
:ExternalSources
,
'cocoapods/external_sources'
autoload
:ExternalSources
,
'cocoapods/external_sources'
...
...
lib/cocoapods/analyzer.rb
deleted
100644 → 0
View file @
a583e50a
This diff is collapsed.
Click to expand it.
lib/cocoapods/installer.rb
View file @
ee5eb989
...
@@ -28,6 +28,7 @@ module Pod
...
@@ -28,6 +28,7 @@ module Pod
#
#
class
Installer
class
Installer
autoload
:Analyzer
,
'cocoapods/installer/analyzer'
autoload
:TargetInstaller
,
'cocoapods/installer/target_installer'
autoload
:TargetInstaller
,
'cocoapods/installer/target_installer'
autoload
:UserProjectIntegrator
,
'cocoapods/installer/user_project_integrator'
autoload
:UserProjectIntegrator
,
'cocoapods/installer/user_project_integrator'
...
...
lib/cocoapods/installer/analyzer.rb
0 → 100644
View file @
ee5eb989
This diff is collapsed.
Click to expand it.
spec/unit/analyzer_spec.rb
→
spec/unit/
installer/
analyzer_spec.rb
View file @
ee5eb989
...
@@ -20,13 +20,13 @@ def create_analyzer
...
@@ -20,13 +20,13 @@ def create_analyzer
lockfile
=
Pod
::
Lockfile
.
new
(
hash
)
lockfile
=
Pod
::
Lockfile
.
new
(
hash
)
SpecHelper
.
create_sample_app_copy_from_fixture
(
'SampleProject'
)
SpecHelper
.
create_sample_app_copy_from_fixture
(
'SampleProject'
)
analyzer
=
Pod
::
Analyzer
.
new
(
config
.
sandbox
,
podfile
,
lockfile
)
analyzer
=
Pod
::
Installer
::
Analyzer
.
new
(
config
.
sandbox
,
podfile
,
lockfile
)
end
end
#-----------------------------------------------------------------------------#
#-----------------------------------------------------------------------------#
module
Pod
module
Pod
describe
Analyzer
do
describe
Installer
::
Analyzer
do
before
do
before
do
@analyzer
=
create_analyzer
@analyzer
=
create_analyzer
...
...
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