Commit ee5eb989 authored by Fabio Pelosin's avatar Fabio Pelosin

[Analyzer] moved to Installer::Analizer.

parent a583e50a
......@@ -19,7 +19,6 @@ module Pod
end
end
autoload :Analyzer, 'cocoapods/analyzer'
autoload :Command, 'cocoapods/command'
autoload :Executable, 'cocoapods/executable'
autoload :ExternalSources, 'cocoapods/external_sources'
......
This diff is collapsed.
......@@ -28,6 +28,7 @@ module Pod
#
class Installer
autoload :Analyzer, 'cocoapods/installer/analyzer'
autoload :TargetInstaller, 'cocoapods/installer/target_installer'
autoload :UserProjectIntegrator, 'cocoapods/installer/user_project_integrator'
......
This diff is collapsed.
......@@ -20,13 +20,13 @@ def create_analyzer
lockfile = Pod::Lockfile.new(hash)
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
#-----------------------------------------------------------------------------#
module Pod
describe Analyzer do
describe Installer::Analyzer do
before do
@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