This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module RuoteKit | |
# RuoteKit configuration handling | |
class Configuration | |
class ParticipantRegistrationProxy | |
def participant(*args) | |
RuoteKit.engine.register_participant(*args) | |
end | |
def catchall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Ruote | |
class StorageParticipant | |
def query ( criterion, *args ) | |
method = :"by_#{criterion}" | |
raise ArgumentError.new('no valid query criterion') unless self.respond_to?(method) | |
self.send(method, *args) | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
your commit: http://github.com/anb/ruote-kit/commit/c5f95b0f025b48ffa560b00d1aa1e9a15f394169 | |
you're doing an 'or' between the query strings there. i'm unsure if it shouldn't be an 'and' | |
especially when combining participant and fields query | |
I think you're right |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def remote_definition_allowed!(true_or_false = true) | |
conf = @storage.get('configurations', 'engine') | |
conf['remote_definition_allowed'] = true_or_false | |
@storage.put(conf) | |
true_or_false | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-- | |
# Copyright (c) 2010, John Mettraux, [email protected] | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> pdef = Ruote.process_definition{sequence{workflow_step_one; workflow_step_two}} | |
=> ["define", {}, [["sequence", {}, [["workflow_step_one", {}, []], ["workflow_step_two", {}, []]]]]] | |
>> wfid = Ruote.engine.launch pdef | |
=> "20100127-beposopaya" | |
>> Ruote.engine.process(wfid) | |
=> == Ruote::ProcessStatus == | |
expressions : 3 | |
0!!20100127-beposopaya : #<Ruote::Exp::SequenceExpression:0xb6937d88> | |
0_0!!20100127-beposopaya : #<Ruote::Exp::SequenceExpression:0xb69375a4> | |
0_0_0!!20100127-beposopaya : #<Ruote::Exp::ParticipantExpression:0xb6936dc0> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/environment.rb | |
Rails::Initializer.run do |config| | |
config.gem 'yajl-ruby', | |
:lib => 'yajl' | |
config.gem 'ruote' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tsc@raisa:~/git/rk$ ruby -v | |
ruby 1.8.7 (2009-06-12 patchlevel 174) [i486-linux] | |
tsc@raisa:~/git/rk$ rake spec | |
(in /home/tsc/git/rk) | |
./spec/../lib/ruote-kit.rb:6: warning: already initialized constant VERSION | |
./spec/helpers/../../lib/ruote-kit.rb:6: warning: already initialized constant VERSION | |
./spec/views/../../lib/ruote-kit.rb:6: warning: already initialized constant VERSION | |
........................................................FF...............FFF.F..FFF........ | |
1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(in /home/tsc/git/ruote-kit) | |
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF~~ | |
parent gone for | |
{"wfid"=>"20100105-bopajojuta", "engine_id"=>"engine", "expid"=>"0_1"} | |
{"wfid"=>"20100105-bopajojuta", "engine_id"=>"engine", "expid"=>"0"} | |
["subprocess", {"_triggered"=>"on_cancel", "ref"=>"bail_out"}, []] | |
~~ | |
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF | |
1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# require all the libs we need | |
require 'rubygems' | |
require 'patron' # fast HTTP client using libcurl | |
require 'yajl/json_gem' # fast JSON parsing | |
require 'ruote-kit/client' # the most important bit of all of course ;-) | |
module RuoteKit | |
module Client |