ruote-amqp 2.1.5 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore DELETED
@@ -1,6 +0,0 @@
1
- *.swp
2
- work/
3
- logs/
4
- pkg/
5
- .yardoc
6
- doc/
data/Manifest.txt DELETED
@@ -1,24 +0,0 @@
1
- History.txt
2
- Manifest.txt
3
- PostInstall.txt
4
- README.rdoc
5
- Rakefile
6
- TODO.txt
7
- lib/ruote-amqp.rb
8
- lib/ruote-amqp/launchitem_listener.rb
9
- lib/ruote-amqp/workitem_listener.rb
10
- lib/ruote-amqp/participant.rb
11
- lib/spec/ruote.rb
12
- lib/spec/ruote_example_group.rb
13
- lib/spec/ruote_helpers.rb
14
- lib/spec/ruote_matchers.rb
15
- script/console
16
- script/destroy
17
- script/generate
18
- spec/launchitem_listener_spec.rb
19
- spec/workitem_listener_spec.rb
20
- spec/participant_spec.rb
21
- spec/ruote_amqp_spec.rb
22
- spec/spec.opts
23
- spec/spec_helper.rb
24
- tasks/rspec.rake
data/lib/spec/ruote.rb DELETED
@@ -1,5 +0,0 @@
1
- require File.dirname(__FILE__) + '/ruote_example_group.rb'
2
- require File.dirname(__FILE__) + '/ruote_matchers.rb'
3
- require File.dirname(__FILE__) + '/ruote_helpers.rb'
4
-
5
- Spec::Example::ExampleGroupFactory.register(:ruote, Spec::RuoteSpec::Example::RuoteExampleGroup)
@@ -1,8 +0,0 @@
1
- module Spec
2
- module RuoteSpec
3
- module Example
4
- class RuoteExampleGroup < Spec::Example::ExampleGroup
5
- end
6
- end
7
- end
8
- end
@@ -1,27 +0,0 @@
1
-
2
- module RuoteSpecHelpers
3
-
4
- def purge_engine
5
-
6
- #@engine.context.values.each do |s|
7
- # s.purge if s.respond_to?(:purge)
8
- #end
9
- end
10
-
11
- def run_definition( pdef )
12
-
13
- wfid = @engine.launch( pdef )
14
-
15
- @engine.context.logger.wait_for( wfid )
16
-
17
- @engine.should_not have_errors
18
- @engine.should_not have_remaining_expressions
19
-
20
- purge_engine
21
- end
22
-
23
- def noisy( on = true )
24
- @engine.context.logger.noisy = on
25
- end
26
- end
27
-
data/script/console DELETED
@@ -1,10 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # File: script/console
3
- irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb'
4
-
5
- libs = " -r irb/completion"
6
- # Perhaps use a console_lib to store any extra methods I may want available in the cosole
7
- # libs << " -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}"
8
- libs << " -r #{File.dirname(__FILE__) + '/../lib/ruote-amqp.rb'}"
9
- puts "Loading ruote-amqp gem"
10
- exec "#{irb} #{libs} --simple-prompt"
data/script/destroy DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
- APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
3
-
4
- begin
5
- require 'rubigen'
6
- rescue LoadError
7
- require 'rubygems'
8
- require 'rubigen'
9
- end
10
- require 'rubigen/scripts/destroy'
11
-
12
- ARGV.shift if ['--help', '-h'].include?(ARGV[0])
13
- RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
14
- RubiGen::Scripts::Destroy.new.run(ARGV)
data/script/generate DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
- APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
3
-
4
- begin
5
- require 'rubigen'
6
- rescue LoadError
7
- require 'rubygems'
8
- require 'rubigen'
9
- end
10
- require 'rubigen/scripts/generate'
11
-
12
- ARGV.shift if ['--help', '-h'].include?(ARGV[0])
13
- RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
14
- RubiGen::Scripts::Generate.new.run(ARGV)
data/spec/spec.opts DELETED
@@ -1 +0,0 @@
1
- --colour