Sha256: d30dd45f45f7fa9755ec33d31e78c6164fff5a8858c16380cefb006a01482695

Contents?: true

Size: 1.52 KB

Versions: 17

Compression:

Stored size: 1.52 KB

Contents

# -*- coding: utf-8 -*-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)

# Maintain your gem's version:
require "foreman_tasks/version"

# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
  s.name        = "foreman-tasks"
  s.version     = ForemanTasks::VERSION
  s.authors     = ["Ivan Nečas"]
  s.email       = ["inecas@redhat.com"]
  s.homepage    = "https://github.com/theforeman/foreman-tasks"
  s.summary     = "Foreman plugin for showing tasks information for resources and users"
  s.description = <<-DESC
The goal of this plugin is to unify the way of showing task statuses across the Foreman instance.
It defines Task model for keeping the information about the tasks and Lock for assigning the tasks
to resources. The locking allows dealing with preventing multiple colliding tasks to be run on the
same resource. It also optionally provides Dynflow infrastructure for using it for managing the tasks.
  DESC

  s.files = `git ls-files`.split("\n").reject do |file|
    file.end_with?("test.rake") ||
      file.start_with?('lib/foreman_tasks_core') ||
      file == 'foreman-tasks-core.gemspec'
  end

  s.test_files = `git ls-files test`.split("\n")
  s.extra_rdoc_files = Dir['README*', 'LICENSE']

  s.add_dependency "foreman-tasks-core"
  s.add_dependency "dynflow", '>= 1.2.3'
  s.add_dependency "sinatra" # for Dynflow web console
  s.add_dependency "parse-cron", '~> 0.1.4'
  s.add_dependency "get_process_mem" # for memory polling

  s.add_development_dependency 'factory_bot_rails', '~> 4.8.0'
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
foreman-tasks-0.17.3 foreman-tasks.gemspec
foreman-tasks-0.17.2 foreman-tasks.gemspec
foreman-tasks-0.16.3 foreman-tasks.gemspec
foreman-tasks-0.17.1 foreman-tasks.gemspec
foreman-tasks-0.15.11 foreman-tasks.gemspec
foreman-tasks-0.16.2 foreman-tasks.gemspec
foreman-tasks-0.15.10 foreman-tasks.gemspec
foreman-tasks-0.16.1 foreman-tasks.gemspec
foreman-tasks-0.17.0 foreman-tasks.gemspec
foreman-tasks-0.15.9 foreman-tasks.gemspec
foreman-tasks-0.15.8 foreman-tasks.gemspec
foreman-tasks-0.15.7 foreman-tasks.gemspec
foreman-tasks-0.16.0 foreman-tasks.gemspec
foreman-tasks-0.15.6 foreman-tasks.gemspec
foreman-tasks-0.15.5 foreman-tasks.gemspec
foreman-tasks-0.15.4 foreman-tasks.gemspec
foreman-tasks-0.15.3 foreman-tasks.gemspec