Sha256: 8165c9c7d5f8e461921a2289dbb2d0c37ea7b43cb04b0a05ed5d1a47b852891d

Contents?: true

Size: 1.37 KB

Versions: 3

Compression:

Stored size: 1.37 KB

Contents

module Models;end
module Serializers;end
module Commands;end
module Tasks;end

module RestPack::Service
  class Loader

    def self.load(name)
      require 'require_all'

      require 'restpack_serializer'
      require 'active_support/core_ext'

      restpack_service_name = "restpack_#{name}_service"
      service_path = self.get_service_path(caller, restpack_service_name)

      require "#{service_path}/version"
      require "#{service_path}/configuration"
      require_all "#{service_path}/tasks"

      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.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

3 entries across 3 versions & 1 rubygems

Version Path
restpack_service-0.0.55 lib/restpack_service/loader.rb
restpack_service-0.0.54 lib/restpack_service/loader.rb
restpack_service-0.0.53 lib/restpack_service/loader.rb