Sha256: 7745db2a18014f8c9396527d9bbc414ed0c1559ba5d7e1ba66ac5c4c2f2df8e5

Contents?: true

Size: 1.45 KB

Versions: 9

Compression:

Stored size: 1.45 KB

Contents

require 'modularize'

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.create "Models"
      Modularize.create "Serializers"
      Modularize.create "Tasks"
      Modularize.create "Jobs"
      Modularize.create "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.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

9 entries across 9 versions & 1 rubygems

Version Path
restpack_service-0.0.68 lib/restpack_service/loader.rb
restpack_service-0.0.67 lib/restpack_service/loader.rb
restpack_service-0.0.66 lib/restpack_service/loader.rb
restpack_service-0.0.65 lib/restpack_service/loader.rb
restpack_service-0.0.64 lib/restpack_service/loader.rb
restpack_service-0.0.63 lib/restpack_service/loader.rb
restpack_service-0.0.62 lib/restpack_service/loader.rb
restpack_service-0.0.61 lib/restpack_service/loader.rb
restpack_service-0.0.60 lib/restpack_service/loader.rb