Sha256: 466d145f35e3530642980d14277821f421925547153b807767db26d6077a46c5
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'sidekiq/workflow/version' Gem::Specification.new do |spec| spec.name = "sidekiq-workflow" spec.version = Sidekiq::Workflow::VERSION spec.authors = ["Michael Kelly"] spec.email = ["michaelkelly322@gmail.com"] spec.summary = "Complex workflow management in Sidekiq" spec.description = "Allows the execution of mixed parallel and sequential workflows. A workflow can be defined at runtime and executed with full sidekiq integration." spec.homepage = "https://github.com/michaelkelly322/sidekiq-workflow" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.10" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.2" spec.add_runtime_dependency "sidekiq", "~> 3.3" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sidekiq-workflow-0.0.1 | sidekiq-workflow.gemspec |