mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
[Sass] Rename Importers::FilesystemImporter -> Importers::Filesystem
This commit is contained in:
parent
c759ba4f1a
commit
44499db9f4
3 changed files with 5 additions and 5 deletions
|
@ -4,4 +4,4 @@ module Sass
|
|||
end
|
||||
|
||||
require 'sass/importers/base'
|
||||
require 'sass/importers/filesystem_importer'
|
||||
require 'sass/importers/filesystem'
|
||||
|
|
|
@ -9,7 +9,7 @@ module Sass
|
|||
class Base
|
||||
|
||||
def self.default_filesystem_class
|
||||
@default_filesystem_class || FilesystemImporter
|
||||
@default_filesystem_class || Filesystem
|
||||
end
|
||||
def self.default_filesystem_class=(klass)
|
||||
@default_filesystem_class = klass
|
||||
|
@ -69,4 +69,4 @@ module Sass
|
|||
end
|
||||
end
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
module Sass
|
||||
module Importers
|
||||
class FilesystemImporter < Base
|
||||
class Filesystem < Base
|
||||
def initialize(root)
|
||||
@root = root
|
||||
end
|
||||
|
@ -32,4 +32,4 @@ module Sass
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Reference in a new issue