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
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
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
Exception in thread "Thread-1" java.lang.NullPointerException | |
at org.jruby.RubyFile.flock(RubyFile.java:297) | |
at org.jruby.RubyFile$i_method_1_0$RUBYINVOKER$flock.call(org/jruby/RubyFile$i_method_1_0$RUBYINVOKER$flock.gen) | |
at org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:147) | |
at org.jruby.ast.CallOneArgNode.interpret(CallOneArgNode.java:57) | |
at org.jruby.ast.IfNode.interpret(IfNode.java:119) | |
at org.jruby.ast.NewlineNode.interpret(NewlineNode.java:104) | |
at org.jruby.ast.RescueNode.executeBody(RescueNode.java:225) | |
at org.jruby.ast.RescueNode.interpretWithJavaExceptions(RescueNode.java:147) | |
at org.jruby.ast.RescueNode.interpret(RescueNode.java:110) |
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
source :gemcutter | |
gem 'ruote-kit' |
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
........../home/tsc/.rvm/gems/ree-1.8.7-2010.01@ruote-kit/gems/ruote-2.1.10/lib/ruote/error_handler.rb:48:in `msg_handle': undefined method `[]' for nil:NilClass (NoMethodError) | |
from /home/tsc/.rvm/gems/ree-1.8.7-2010.01@ruote-kit/gems/ruote-2.1.10/lib/ruote/worker.rb:232:in `process' | |
from /home/tsc/.rvm/gems/ree-1.8.7-2010.01@ruote-kit/gems/ruote-2.1.10/lib/ruote/worker.rb:155:in `step' | |
from /home/tsc/.rvm/gems/ree-1.8.7-2010.01@ruote-kit/gems/ruote-2.1.10/lib/ruote/worker.rb:70:in `run' | |
from /home/tsc/.rvm/gems/ree-1.8.7-2010.01@ruote-kit/gems/ruote-2.1.10/lib/ruote/worker.rb:81:in `run_in_thread' | |
from /home/tsc/.rvm/gems/ree-1.8.7-2010.01@ruote-kit/gems/ruote-2.1.10/lib/ruote/worker.rb:81:in `initialize' | |
from /home/tsc/.rvm/gems/ree-1.8.7-2010.01@ruote-kit/gems/ruote-2.1.10/lib/ruote/worker.rb:81:in `new' | |
from /home/tsc/.rvm/gems/ree-1.8.7-2010.01@ruote-kit/gems/ruote-2.1.10/lib/ruote/worker.rb:81:in `run_in_thread' | |
from ./spec/views/../spec_helper.rb:59 | |
from /home/tsc/.rvm/gems/ree-1.8.7-2010.01@ |
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
ruby-1.9.1-p378@ruote-kit tsc@raisa:~/git/ruote-kit$ rake spec | |
(in /home/tsc/git/ruote-kit) | |
....FF..FF....FF..........FF..............FF........FF................................................... | |
1) | |
NoMethodError in 'GET /_ruote/expressions/wfid without running processes should 404 correctly (HTML)' | |
undefined method `[]' for nil:NilClass | |
/home/tsc/.rvm/gems/ruby-1.9.1-p378@ruote-kit/gems/sinatra-1.0/lib/sinatra/base.rb:865:in `call' | |
/home/tsc/.rvm/gems/ruby-1.9.1-p378@ruote-kit/gems/sinatra-1.0/lib/sinatra/base.rb:865:in `block in route' | |
/home/tsc/.rvm/gems/ruby-1.9.1-p378@ruote-kit/gems/sinatra-1.0/lib/sinatra/base.rb:521:in `instance_eval' |
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 File.dirname(__FILE__) + '/../spec_helper' | |
describe "GET /_ruote/participants" do | |
after :each do | |
unless RuoteKit.engine.nil? | |
RuoteKit.engine.storage.purge! unless RuoteKit.engine.storage.nil? | |
RuoteKit.shutdown_engine( true ) | |
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
participant = ImageParticipant.new(opts) | |
# with error when reply_to_engine is not called | |
participant.should_receive(:reply_to_engine) | |
# if you know how the workitems instance should look like when passed to reply_to_engine: | |
participant.should_receive(:reply_to_engine).with(expected_workitem) | |
# if you don't care if reply_to_engine is actually called | |
participant.stub(:reply_to_engine) |
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
# make changes when needed | |
# | |
# you may use another persistent storage for example or include a worker so that | |
# you don't have to run it in a separate instance | |
require 'ruote/storage/fs_storage' | |
RUOTE_STORAGE = { | |
:klass => Ruote::FsStorage, | |
:args => ["ruote_work_#{Rails.env}"] |