Commit ee5eb989 authored by Fabio Pelosin's avatar Fabio Pelosin

[Analyzer] moved to Installer::Analizer.

parent a583e50a
...@@ -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'
......
This diff is collapsed.
...@@ -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'
......
This diff is collapsed.
...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment