Sha256: 5c1b801011eca47bce8abdf9c476be276a2f59af0547c7dcfb18d12a9f5ec847
Contents?: true
Size: 1.76 KB
Versions: 1
Compression:
Stored size: 1.76 KB
Contents
module RestPack::Service class Loader def self.load(gem_name, module_name) require 'require_all' require 'restpack_serializer' require 'active_support/core_ext' service_path = self.get_service_path(caller, gem_name) require "#{service_path}/version" require "#{service_path}/configuration" require_all "#{service_path}/tasks" modularize "Models" modularize "Serializers" modularize "Commands" modularize "Tasks" modularize "Jobs" modularize "Commands::#{module_name}" require_service_module 'models', service_path require_service_module 'serializers', service_path require_service_module 'commands', service_path require_service_module 'jobs', service_path end private def self.modularize(path) #TODO: GJ: extract to a gem root = Object path.split('::').each do |name| new_module = root.const_defined?(name) ? root.const_get(name) : nil unless new_module new_module = Module.new root.const_set name, new_module end root = new_module end end def self.require_service_module(module_name, service_path) path = "#{service_path}/#{module_name.downcase}" require_all(path) if File.directory?(path) end def self.get_service_path(load_caller, restpack_service_name) #Gets the path of the calling service : http://stackoverflow.com/questions/14772381/get-directory-of-file-that-instantiated-a-class-ruby source_file = nil load_caller.each do |s| if(s =~ /(require|require_relative)/) source_file = File.dirname(File.expand_path(s.split(':')[0])) break end end "#{source_file}/#{restpack_service_name}" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
restpack_service-0.0.58 | lib/restpack_service/loader.rb |