Sha256: e335ab7310e594dacf1d258e1cbd46527d252867ca6004e6befe5f086185cc32

Contents?: true

Size: 628 Bytes

Versions: 11

Compression:

Stored size: 628 Bytes

Contents

CloudCrowd::Job.blueprint do
  status  { CloudCrowd::PROCESSING }
  inputs  { ['http://www.google.com/intl/en_ALL/images/logo.gif'].to_json }
  action  { 'graphics_magick' }
  options { {}.to_json }
  email   { 'noone@example.com' }
end

CloudCrowd::NodeRecord.blueprint do
  host            { "hostname-#{sn}" }
  ip_address      { '127.0.0.1' }
  port            { 6093 }
  enabled_actions { 'graphics_magick,word_count' }
  max_workers     { 3 }
end

CloudCrowd::WorkUnit.blueprint do
  job     { CloudCrowd::Job.make! }
  status  { CloudCrowd::PROCESSING }
  input   { '{"key":"value"}' }
  action  { 'graphics_magick' }
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
cloud-crowd-0.7.6 test/blueprints.rb
cloud-crowd-0.7.5 test/blueprints.rb
cloud-crowd-0.7.3 test/blueprints.rb
cloud-crowd-0.7.2 test/blueprints.rb
cloud-crowd-0.7.2.beta test/blueprints.rb
cloud-crowd-0.7.2.pre3 test/blueprints.rb
cloud-crowd-0.7.2.pre2 test/blueprints.rb
cloud-crowd-0.7.2.pre test/blueprints.rb
cloud-crowd-0.7.1 test/blueprints.rb
cloud-crowd-0.7.0 test/blueprints.rb
cloud-crowd-0.7.0.pre test/blueprints.rb