Sha256: 900db5f8fdc30270e5aa125868e4808130914c8b13182e8d409ef3224527f85d

Contents?: true

Size: 1.89 KB

Versions: 1

Compression:

Stored size: 1.89 KB

Contents

=begin
#IronWorker CE API

#The ultimate, language agnostic, container based task processing framework.

OpenAPI spec version: 0.5.7

Generated by: https://github.com/swagger-api/swagger-codegen.git

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

=end

# Common files
require 'worker_ruby/api_client'
require 'worker_ruby/api_error'
require 'worker_ruby/version'
require 'worker_ruby/configuration'

# Models
require 'worker_ruby/models/complete'
require 'worker_ruby/models/error'
require 'worker_ruby/models/error_body'
require 'worker_ruby/models/group'
require 'worker_ruby/models/group_wrapper'
require 'worker_ruby/models/groups_wrapper'
require 'worker_ruby/models/id_status'
require 'worker_ruby/models/new_task'
require 'worker_ruby/models/new_tasks_wrapper'
require 'worker_ruby/models/start'
require 'worker_ruby/models/task'
require 'worker_ruby/models/task_wrapper'
require 'worker_ruby/models/tasks_wrapper'

# APIs
require 'worker_ruby/api/groups_api'
require 'worker_ruby/api/runner_api'
require 'worker_ruby/api/tasks_api'

module IronWorker
  class << self
    # Customize default settings for the SDK using block.
    #   IronWorker.configure do |config|
    #     config.username = "xxx"
    #     config.password = "xxx"
    #   end
    # If no block given, return the default Configuration object.
    def configure
      if block_given?
        yield(Configuration.default)
      else
        Configuration.default
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
worker_ruby-0.5.7 lib/worker_ruby.rb