Class: Chanko::Loader
- Inherits:
-
Object
- Object
- Chanko::Loader
- Defined in:
- lib/chanko/loader.rb
Class Method Summary collapse
Instance Method Summary collapse
- #add_autoload_path ⇒ Object
- #autoload_path ⇒ Object
- #cache ⇒ Object
- #constantize ⇒ Object
- #directory_path ⇒ Object
-
#initialize(name) ⇒ Loader
constructor
A new instance of Loader.
- #load ⇒ Object
- #load_from_cache ⇒ Object
- #load_from_file ⇒ Object
- #loaded? ⇒ Boolean
Constructor Details
#initialize(name) ⇒ Loader
Returns a new instance of Loader.
21 22 23 |
# File 'lib/chanko/loader.rb', line 21 def initialize(name) @name = name end |
Class Method Details
.cache ⇒ Object
10 11 12 |
# File 'lib/chanko/loader.rb', line 10 def cache @cache ||= {} end |
.eager_load_units! ⇒ Object
14 15 16 17 18 |
# File 'lib/chanko/loader.rb', line 14 def eager_load_units! Pathname.glob("#{Rails.root}/#{Config.units_directory_path}/*").select(&:directory?).each do |path| load(path.to_s.split("/").last.to_sym) rescue nil end end |
.load(unit_name) ⇒ Object
6 7 8 |
# File 'lib/chanko/loader.rb', line 6 def load(unit_name) new(unit_name).load end |
Instance Method Details
#add_autoload_path ⇒ Object
50 51 52 53 54 55 |
# File 'lib/chanko/loader.rb', line 50 def add_autoload_path unless Rails.respond_to?(:autoloaders) && Rails.autoloaders.zeitwerk_enabled? ActiveSupport::Dependencies.autoload_paths << autoload_path ActiveSupport::Dependencies.autoload_paths.uniq! end end |
#autoload_path ⇒ Object
57 58 59 |
# File 'lib/chanko/loader.rb', line 57 def autoload_path Rails.root.join("#{directory_path}/#@name").to_s end |
#cache ⇒ Object
69 70 71 |
# File 'lib/chanko/loader.rb', line 69 def cache self.class.cache end |
#constantize ⇒ Object
65 66 67 |
# File 'lib/chanko/loader.rb', line 65 def constantize @name.to_s.camelize.constantize end |
#directory_path ⇒ Object
61 62 63 |
# File 'lib/chanko/loader.rb', line 61 def directory_path Config.units_directory_path end |
#load ⇒ Object
25 26 27 28 29 30 31 |
# File 'lib/chanko/loader.rb', line 25 def load if loaded? load_from_cache else load_from_file end end |
#load_from_cache ⇒ Object
37 38 39 |
# File 'lib/chanko/loader.rb', line 37 def load_from_cache cache[@name] end |
#load_from_file ⇒ Object
41 42 43 44 45 46 47 48 |
# File 'lib/chanko/loader.rb', line 41 def load_from_file add_autoload_path cache[@name] = constantize rescue Exception => exception ExceptionHandler.handle(exception) cache[@name] = false nil end |
#loaded? ⇒ Boolean
33 34 35 |
# File 'lib/chanko/loader.rb', line 33 def loaded? cache[@name] != nil end |