Sha256: 4e176ba44d314adae62cab6c976d4b4af7195c04d694ba890f5a784992c2bb67

Contents?: true

Size: 264 Bytes

Versions: 5

Compression:

Stored size: 264 Bytes

Contents

require_relative "thin_service/version.rb"
require_relative "thin_service/command.rb"

module ThinService
  class Service
    def initialize( args )
      @args = args
    end

    def run!
      ThinService::Command::Registry.new.run(  @args )
    end

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
thin_service-0.0.5 lib/thin_service.rb
thin_service-0.0.4 lib/thin_service.rb
thin_service-0.0.3 lib/thin_service.rb
thin_service-0.0.2 lib/thin_service.rb
thin_service-0.0.1 lib/thin_service.rb