ruote-beanstalk 2.1.11 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,9 @@
2
2
  = ruote-beanstalk - CHANGELOG.txt
3
3
 
4
4
 
5
+ == ruote-beanstalk 2.2.0 released 2011/03/03
6
+
7
+
5
8
  == ruote-beanstalk 2.1.11 released 2010/10/13
6
9
 
7
10
  - BsStorage -> Storage
@@ -1,5 +1,5 @@
1
1
 
2
- Copyright (c) 2010-2010, John Mettraux, jmettraux@gmail.com
2
+ Copyright (c) 2005-2011, John Mettraux, jmettraux@gmail.com
3
3
 
4
4
  Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  of this software and associated documentation files (the "Software"), to deal
data/Rakefile CHANGED
@@ -1,77 +1,92 @@
1
1
 
2
- $:.unshift('.') # ruby 1.9.2
2
+ $:.unshift('.') # 1.9.2
3
3
 
4
4
  require 'rubygems'
5
+
5
6
  require 'rake'
7
+ require 'rake/clean'
8
+ require 'rake/rdoctask'
6
9
 
7
- require 'lib/ruote/beanstalk/version.rb'
8
10
 
9
11
  #
10
- # CLEAN
12
+ # clean
11
13
 
12
- require 'rake/clean'
13
- CLEAN.include('pkg', 'tmp', 'html', 'rdoc')
14
- task :default => [ :clean ]
14
+ CLEAN.include('pkg', 'rdoc')
15
15
 
16
16
 
17
17
  #
18
- # GEM
18
+ # test / spec
19
+
20
+ task :test do
21
+
22
+ puts
23
+ puts "to test ruote-beanstalk, head to your ruote/ dir and run"
24
+ puts
25
+ puts " ruby test/test.rb -- --beanstalk"
26
+ puts
27
+ puts "but first, make sure your ruote-beanstalk/test/functional_connection.rb"
28
+ puts "is set correctly."
29
+ puts
30
+ end
31
+
32
+ task :default => [ :test ]
19
33
 
20
- require 'jeweler'
21
34
 
22
- Jeweler::Tasks.new do |gem|
35
+ #
36
+ # gem
23
37
 
24
- gem.version = Ruote::Beanstalk::VERSION
25
- gem.name = 'ruote-beanstalk'
26
- gem.summary = 'Beanstalk participant/receiver/storage for ruote (a Ruby workflow engine)'
27
- gem.description = %{
28
- Beanstalk participant/receiver/storage for ruote (a Ruby workflow engine)
29
- }.strip
30
- gem.email = 'jmettraux@gmail.com'
31
- gem.homepage = 'http://github.com/jmettraux/ruote-beanstalk'
32
- gem.authors = [ 'John Mettraux' ]
33
- gem.rubyforge_project = 'ruote'
38
+ GEMSPEC_FILE = Dir['*.gemspec'].first
39
+ GEMSPEC = eval(File.read(GEMSPEC_FILE))
40
+ GEMSPEC.validate
34
41
 
35
- gem.test_file = 'test/test.rb'
36
42
 
37
- gem.add_dependency 'ruote', ">= #{Ruote::Beanstalk::VERSION}"
38
- gem.add_dependency 'rufus-cloche', '>= 0.1.20'
39
- gem.add_dependency 'beanstalk-client', '>= 1.1.0'
40
- gem.add_development_dependency 'yard'
41
- gem.add_development_dependency 'rake'
42
- gem.add_development_dependency 'jeweler'
43
+ desc %{
44
+ builds the gem and places it in pkg/
45
+ }
46
+ task :build do
43
47
 
44
- # gemspec spec : http://www.rubygems.org/read/chapter/20
48
+ sh "gem build #{GEMSPEC_FILE}"
49
+ sh "mkdir pkg" rescue nil
50
+ sh "mv #{GEMSPEC.name}-#{GEMSPEC.version}.gem pkg/"
45
51
  end
46
- Jeweler::GemcutterTasks.new
47
52
 
53
+ desc %{
54
+ builds the gem and pushes it to rubygems.org
55
+ }
56
+ task :push => :build do
57
+
58
+ sh "gem push pkg/#{GEMSPEC.name}-#{GEMSPEC.version}.gem"
59
+ end
48
60
 
49
- #
50
- # DOC
51
61
 
52
62
  #
53
- # make sure to have rdoc 2.5.x to run that
63
+ # rdoc
54
64
  #
55
- require 'rake/rdoctask'
65
+ # make sure to have rdoc 2.5.x to run that
66
+
56
67
  Rake::RDocTask.new do |rd|
57
68
 
58
- rd.main = 'readme.rdoc'
59
- rd.rdoc_dir = 'rdoc/ruote-beanstalk_rdoc'
60
- rd.title = "ruote-beanstalk #{Ruote::Beanstalk::VERSION}"
69
+ rd.main = 'README.rdoc'
70
+ rd.rdoc_dir = 'rdoc'
61
71
 
62
72
  rd.rdoc_files.include(
63
- 'readme.rdoc', 'CHANGELOG.txt', 'CREDITS.txt', 'lib/**/*.rb')
73
+ 'README.rdoc', 'CHANGELOG.txt', 'CREDITS.txt', 'lib/**/*.rb')
74
+
75
+ rd.title = "#{GEMSPEC.name} #{GEMSPEC.version}"
64
76
  end
65
77
 
66
78
 
67
79
  #
68
- # TO THE WEB
80
+ # upload_rdoc
69
81
 
82
+ desc %{
83
+ upload the rdoc to rubyforge
84
+ }
70
85
  task :upload_rdoc => [ :clean, :rdoc ] do
71
86
 
72
87
  account = 'jmettraux@rubyforge.org'
73
88
  webdir = '/var/www/gforge-projects/ruote'
74
89
 
75
- sh "rsync -azv -e ssh rdoc/ruote-beanstalk_rdoc #{account}:#{webdir}/"
90
+ sh "rsync -azv -e ssh rdoc/#{GEMSPEC.name}_rdoc #{account}:#{webdir}/"
76
91
  end
77
92
 
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2005-2010, John Mettraux, jmettraux@gmail.com
2
+ # Copyright (c) 2005-2011, John Mettraux, jmettraux@gmail.com
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2005-2010, John Mettraux, jmettraux@gmail.com
2
+ # Copyright (c) 2005-2011, John Mettraux, jmettraux@gmail.com
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2005-2010, John Mettraux, jmettraux@gmail.com
2
+ # Copyright (c) 2005-2011, John Mettraux, jmettraux@gmail.com
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2005-2010, John Mettraux, jmettraux@gmail.com
2
+ # Copyright (c) 2005-2011, John Mettraux, jmettraux@gmail.com
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -137,7 +137,7 @@ module Beanstalk
137
137
 
138
138
  return r unless r.nil?
139
139
 
140
- doc['_rev'] =(doc['_rev'] || -1) + 1 if opts[:update_rev]
140
+ doc['_rev'] = (doc['_rev'] || -1) + 1 if opts[:update_rev]
141
141
 
142
142
  nil
143
143
  end
@@ -1,7 +1,8 @@
1
1
 
2
2
  module Ruote
3
3
  module Beanstalk
4
- VERSION = '2.1.11'
4
+
5
+ VERSION = '2.2.0'
5
6
  end
6
7
  end
7
8
 
@@ -1,88 +1,31 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
- # -*- encoding: utf-8 -*-
1
+ # encoding: utf-8
5
2
 
6
3
  Gem::Specification.new do |s|
7
- s.name = %q{ruote-beanstalk}
8
- s.version = "2.1.11"
9
4
 
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["John Mettraux"]
12
- s.date = %q{2010-10-13}
13
- s.description = %q{Beanstalk participant/receiver/storage for ruote (a Ruby workflow engine)}
14
- s.email = %q{jmettraux@gmail.com}
15
- s.extra_rdoc_files = [
16
- "LICENSE.txt",
17
- "README.md"
18
- ]
19
- s.files = [
20
- "CHANGELOG.txt",
21
- "CREDITS.txt",
22
- "LICENSE.txt",
23
- "README.md",
24
- "Rakefile",
25
- "TODO.txt",
26
- "doc/storages.graffle/QuickLook/Preview.pdf",
27
- "doc/storages.graffle/QuickLook/Thumbnail.tiff",
28
- "doc/storages.graffle/data.plist",
29
- "doc/storages.graffle/image3.png",
30
- "doc/storages.graffle/image4.png",
31
- "doc/storages.png",
32
- "lib/ruote-beanstalk.rb",
33
- "lib/ruote/beanstalk.rb",
34
- "lib/ruote/beanstalk/fork.rb",
35
- "lib/ruote/beanstalk/participant.rb",
36
- "lib/ruote/beanstalk/participant_proxy.rb",
37
- "lib/ruote/beanstalk/receiver.rb",
38
- "lib/ruote/beanstalk/storage.rb",
39
- "lib/ruote/beanstalk/version.rb",
40
- "readme.rdoc",
41
- "ruote-beanstalk.gemspec",
42
- "serve.rb",
43
- "test/functional/base.rb",
44
- "test/functional/ft_0_participant.rb",
45
- "test/functional/ft_1_receiver.rb",
46
- "test/functional/test.rb",
47
- "test/functional_connection.rb",
48
- "test/test.rb"
49
- ]
50
- s.homepage = %q{http://github.com/jmettraux/ruote-beanstalk}
51
- s.rdoc_options = ["--charset=UTF-8"]
52
- s.require_paths = ["lib"]
53
- s.rubyforge_project = %q{ruote}
54
- s.rubygems_version = %q{1.3.7}
55
- s.summary = %q{Beanstalk participant/receiver/storage for ruote (a Ruby workflow engine)}
56
- s.test_files = [
57
- "test/test.rb"
5
+ s.name = 'ruote-beanstalk'
6
+ s.version = File.read('lib/ruote/beanstalk/version.rb').match(/VERSION = '([^']+)'/)[1]
7
+ s.platform = Gem::Platform::RUBY
8
+ s.authors = [ 'John Mettraux' ]
9
+ s.email = [ 'jmettraux@gmail.com' ]
10
+ s.homepage = 'http://ruote.rubyforge.org'
11
+ s.rubyforge_project = 'ruote'
12
+ s.summary = 'Beanstalk participant/receiver/storage for ruote (a Ruby workflow engine)'
13
+ s.description = %q{
14
+ Beanstalk participant/receiver/storage for ruote (a Ruby workflow engine)
15
+ }
16
+
17
+ #s.files = `git ls-files`.split("\n")
18
+ s.files = Dir[
19
+ 'Rakefile',
20
+ 'lib/**/*.rb', 'spec/**/*.rb', 'test/**/*.rb',
21
+ '*.gemspec', '*.txt', '*.rdoc', '*.md'
58
22
  ]
59
23
 
60
- if s.respond_to? :specification_version then
61
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
62
- s.specification_version = 3
24
+ s.add_runtime_dependency 'beanstalk-client', '1.1.0'
25
+ s.add_runtime_dependency 'ruote', ">= #{s.version}"
26
+
27
+ s.add_development_dependency 'rake'
63
28
 
64
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
65
- s.add_runtime_dependency(%q<ruote>, [">= 2.1.11"])
66
- s.add_runtime_dependency(%q<rufus-cloche>, [">= 0.1.20"])
67
- s.add_runtime_dependency(%q<beanstalk-client>, [">= 1.1.0"])
68
- s.add_development_dependency(%q<yard>, [">= 0"])
69
- s.add_development_dependency(%q<rake>, [">= 0"])
70
- s.add_development_dependency(%q<jeweler>, [">= 0"])
71
- else
72
- s.add_dependency(%q<ruote>, [">= 2.1.11"])
73
- s.add_dependency(%q<rufus-cloche>, [">= 0.1.20"])
74
- s.add_dependency(%q<beanstalk-client>, [">= 1.1.0"])
75
- s.add_dependency(%q<yard>, [">= 0"])
76
- s.add_dependency(%q<rake>, [">= 0"])
77
- s.add_dependency(%q<jeweler>, [">= 0"])
78
- end
79
- else
80
- s.add_dependency(%q<ruote>, [">= 2.1.11"])
81
- s.add_dependency(%q<rufus-cloche>, [">= 0.1.20"])
82
- s.add_dependency(%q<beanstalk-client>, [">= 1.1.0"])
83
- s.add_dependency(%q<yard>, [">= 0"])
84
- s.add_dependency(%q<rake>, [">= 0"])
85
- s.add_dependency(%q<jeweler>, [">= 0"])
86
- end
29
+ s.require_path = 'lib'
87
30
  end
88
31
 
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 2
7
- - 1
8
- - 11
9
- version: 2.1.11
7
+ - 2
8
+ - 0
9
+ version: 2.2.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - John Mettraux
@@ -14,26 +14,26 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-10-13 00:00:00 +09:00
17
+ date: 2011-03-03 00:00:00 +09:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
- name: ruote
21
+ name: beanstalk-client
22
22
  prerelease: false
23
23
  requirement: &id001 !ruby/object:Gem::Requirement
24
24
  none: false
25
25
  requirements:
26
- - - ">="
26
+ - - "="
27
27
  - !ruby/object:Gem::Version
28
28
  segments:
29
- - 2
30
29
  - 1
31
- - 11
32
- version: 2.1.11
30
+ - 1
31
+ - 0
32
+ version: 1.1.0
33
33
  type: :runtime
34
34
  version_requirements: *id001
35
35
  - !ruby/object:Gem::Dependency
36
- name: rufus-cloche
36
+ name: ruote
37
37
  prerelease: false
38
38
  requirement: &id002 !ruby/object:Gem::Requirement
39
39
  none: false
@@ -41,57 +41,16 @@ dependencies:
41
41
  - - ">="
42
42
  - !ruby/object:Gem::Version
43
43
  segments:
44
+ - 2
45
+ - 2
44
46
  - 0
45
- - 1
46
- - 20
47
- version: 0.1.20
47
+ version: 2.2.0
48
48
  type: :runtime
49
49
  version_requirements: *id002
50
- - !ruby/object:Gem::Dependency
51
- name: beanstalk-client
52
- prerelease: false
53
- requirement: &id003 !ruby/object:Gem::Requirement
54
- none: false
55
- requirements:
56
- - - ">="
57
- - !ruby/object:Gem::Version
58
- segments:
59
- - 1
60
- - 1
61
- - 0
62
- version: 1.1.0
63
- type: :runtime
64
- version_requirements: *id003
65
- - !ruby/object:Gem::Dependency
66
- name: yard
67
- prerelease: false
68
- requirement: &id004 !ruby/object:Gem::Requirement
69
- none: false
70
- requirements:
71
- - - ">="
72
- - !ruby/object:Gem::Version
73
- segments:
74
- - 0
75
- version: "0"
76
- type: :development
77
- version_requirements: *id004
78
50
  - !ruby/object:Gem::Dependency
79
51
  name: rake
80
52
  prerelease: false
81
- requirement: &id005 !ruby/object:Gem::Requirement
82
- none: false
83
- requirements:
84
- - - ">="
85
- - !ruby/object:Gem::Version
86
- segments:
87
- - 0
88
- version: "0"
89
- type: :development
90
- version_requirements: *id005
91
- - !ruby/object:Gem::Dependency
92
- name: jeweler
93
- prerelease: false
94
- requirement: &id006 !ruby/object:Gem::Requirement
53
+ requirement: &id003 !ruby/object:Gem::Requirement
95
54
  none: false
96
55
  requirements:
97
56
  - - ">="
@@ -100,53 +59,47 @@ dependencies:
100
59
  - 0
101
60
  version: "0"
102
61
  type: :development
103
- version_requirements: *id006
104
- description: Beanstalk participant/receiver/storage for ruote (a Ruby workflow engine)
105
- email: jmettraux@gmail.com
62
+ version_requirements: *id003
63
+ description: "\n\
64
+ Beanstalk participant/receiver/storage for ruote (a Ruby workflow engine)\n"
65
+ email:
66
+ - jmettraux@gmail.com
106
67
  executables: []
107
68
 
108
69
  extensions: []
109
70
 
110
- extra_rdoc_files:
111
- - LICENSE.txt
112
- - README.md
71
+ extra_rdoc_files: []
72
+
113
73
  files:
114
- - CHANGELOG.txt
115
- - CREDITS.txt
116
- - LICENSE.txt
117
- - README.md
118
74
  - Rakefile
119
- - TODO.txt
120
- - doc/storages.graffle/QuickLook/Preview.pdf
121
- - doc/storages.graffle/QuickLook/Thumbnail.tiff
122
- - doc/storages.graffle/data.plist
123
- - doc/storages.graffle/image3.png
124
- - doc/storages.graffle/image4.png
125
- - doc/storages.png
126
- - lib/ruote-beanstalk.rb
127
- - lib/ruote/beanstalk.rb
128
75
  - lib/ruote/beanstalk/fork.rb
129
76
  - lib/ruote/beanstalk/participant.rb
130
77
  - lib/ruote/beanstalk/participant_proxy.rb
131
78
  - lib/ruote/beanstalk/receiver.rb
132
79
  - lib/ruote/beanstalk/storage.rb
133
80
  - lib/ruote/beanstalk/version.rb
134
- - readme.rdoc
135
- - ruote-beanstalk.gemspec
136
- - serve.rb
81
+ - lib/ruote/beanstalk.rb
82
+ - lib/ruote-beanstalk.rb
137
83
  - test/functional/base.rb
138
84
  - test/functional/ft_0_participant.rb
139
85
  - test/functional/ft_1_receiver.rb
140
86
  - test/functional/test.rb
141
87
  - test/functional_connection.rb
142
88
  - test/test.rb
89
+ - ruote-beanstalk.gemspec
90
+ - CHANGELOG.txt
91
+ - CREDITS.txt
92
+ - LICENSE.txt
93
+ - TODO.txt
94
+ - readme.rdoc
95
+ - README.md
143
96
  has_rdoc: true
144
- homepage: http://github.com/jmettraux/ruote-beanstalk
97
+ homepage: http://ruote.rubyforge.org
145
98
  licenses: []
146
99
 
147
100
  post_install_message:
148
- rdoc_options:
149
- - --charset=UTF-8
101
+ rdoc_options: []
102
+
150
103
  require_paths:
151
104
  - lib
152
105
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -172,5 +125,5 @@ rubygems_version: 1.3.7
172
125
  signing_key:
173
126
  specification_version: 3
174
127
  summary: Beanstalk participant/receiver/storage for ruote (a Ruby workflow engine)
175
- test_files:
176
- - test/test.rb
128
+ test_files: []
129
+
@@ -1,811 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>ActiveLayerIndex</key>
6
- <integer>0</integer>
7
- <key>ApplicationVersion</key>
8
- <array>
9
- <string>com.omnigroup.OmniGraffle</string>
10
- <string>138.17.0.133677</string>
11
- </array>
12
- <key>AutoAdjust</key>
13
- <true/>
14
- <key>BackgroundGraphic</key>
15
- <dict>
16
- <key>Bounds</key>
17
- <string>{{0, 0}, {559, 783}}</string>
18
- <key>Class</key>
19
- <string>SolidGraphic</string>
20
- <key>ID</key>
21
- <integer>2</integer>
22
- <key>Style</key>
23
- <dict>
24
- <key>shadow</key>
25
- <dict>
26
- <key>Draws</key>
27
- <string>NO</string>
28
- </dict>
29
- <key>stroke</key>
30
- <dict>
31
- <key>Draws</key>
32
- <string>NO</string>
33
- </dict>
34
- </dict>
35
- </dict>
36
- <key>CanvasOrigin</key>
37
- <string>{0, 0}</string>
38
- <key>ColumnAlign</key>
39
- <integer>1</integer>
40
- <key>ColumnSpacing</key>
41
- <real>36</real>
42
- <key>CreationDate</key>
43
- <string>2010-06-14 14:29:55 +0900</string>
44
- <key>Creator</key>
45
- <string>John Mettraux</string>
46
- <key>DisplayScale</key>
47
- <string>1 0/72 in = 1.0000 in</string>
48
- <key>GraphDocumentVersion</key>
49
- <integer>6</integer>
50
- <key>GraphicsList</key>
51
- <array>
52
- <dict>
53
- <key>Bounds</key>
54
- <string>{{29, 26}, {484, 65}}</string>
55
- <key>Class</key>
56
- <string>ShapedGraphic</string>
57
- <key>ID</key>
58
- <integer>17</integer>
59
- <key>ImageID</key>
60
- <integer>4</integer>
61
- <key>Shape</key>
62
- <string>Rectangle</string>
63
- <key>Style</key>
64
- <dict>
65
- <key>fill</key>
66
- <dict>
67
- <key>Draws</key>
68
- <string>NO</string>
69
- </dict>
70
- <key>stroke</key>
71
- <dict>
72
- <key>Draws</key>
73
- <string>NO</string>
74
- </dict>
75
- </dict>
76
- </dict>
77
- <dict>
78
- <key>Bounds</key>
79
- <string>{{29, 331}, {395, 108}}</string>
80
- <key>Class</key>
81
- <string>ShapedGraphic</string>
82
- <key>ID</key>
83
- <integer>16</integer>
84
- <key>ImageID</key>
85
- <integer>3</integer>
86
- <key>Shape</key>
87
- <string>Rectangle</string>
88
- <key>Style</key>
89
- <dict>
90
- <key>fill</key>
91
- <dict>
92
- <key>Draws</key>
93
- <string>NO</string>
94
- </dict>
95
- <key>stroke</key>
96
- <dict>
97
- <key>Draws</key>
98
- <string>NO</string>
99
- </dict>
100
- </dict>
101
- </dict>
102
- <dict>
103
- <key>Class</key>
104
- <string>LineGraphic</string>
105
- <key>FontInfo</key>
106
- <dict>
107
- <key>Font</key>
108
- <string>Helvetica</string>
109
- <key>Size</key>
110
- <real>12</real>
111
- </dict>
112
- <key>Head</key>
113
- <dict>
114
- <key>ID</key>
115
- <integer>3</integer>
116
- </dict>
117
- <key>ID</key>
118
- <integer>9</integer>
119
- <key>Points</key>
120
- <array>
121
- <string>{425.495, 198.67}</string>
122
- <string>{403.937, 160.868}</string>
123
- </array>
124
- <key>Style</key>
125
- <dict>
126
- <key>shadow</key>
127
- <dict>
128
- <key>Draws</key>
129
- <string>YES</string>
130
- </dict>
131
- <key>stroke</key>
132
- <dict>
133
- <key>HeadArrow</key>
134
- <string>FilledArrow</string>
135
- <key>LineType</key>
136
- <integer>1</integer>
137
- <key>TailArrow</key>
138
- <string>0</string>
139
- </dict>
140
- </dict>
141
- <key>Tail</key>
142
- <dict>
143
- <key>ID</key>
144
- <integer>4</integer>
145
- </dict>
146
- </dict>
147
- <dict>
148
- <key>Class</key>
149
- <string>LineGraphic</string>
150
- <key>FontInfo</key>
151
- <dict>
152
- <key>Font</key>
153
- <string>Helvetica</string>
154
- <key>Size</key>
155
- <real>12</real>
156
- </dict>
157
- <key>Head</key>
158
- <dict>
159
- <key>ID</key>
160
- <integer>3</integer>
161
- </dict>
162
- <key>ID</key>
163
- <integer>8</integer>
164
- <key>Points</key>
165
- <array>
166
- <string>{196.083, 172.348}</string>
167
- <string>{348.649, 144.137}</string>
168
- </array>
169
- <key>Style</key>
170
- <dict>
171
- <key>shadow</key>
172
- <dict>
173
- <key>Draws</key>
174
- <string>YES</string>
175
- </dict>
176
- <key>stroke</key>
177
- <dict>
178
- <key>HeadArrow</key>
179
- <string>FilledArrow</string>
180
- <key>LineType</key>
181
- <integer>1</integer>
182
- <key>TailArrow</key>
183
- <string>0</string>
184
- </dict>
185
- </dict>
186
- <key>Tail</key>
187
- <dict>
188
- <key>ID</key>
189
- <integer>5</integer>
190
- </dict>
191
- </dict>
192
- <dict>
193
- <key>Bounds</key>
194
- <string>{{114, 234}, {88, 79}}</string>
195
- <key>Class</key>
196
- <string>ShapedGraphic</string>
197
- <key>FontInfo</key>
198
- <dict>
199
- <key>Color</key>
200
- <dict>
201
- <key>w</key>
202
- <string>0</string>
203
- </dict>
204
- <key>Font</key>
205
- <string>HelveticaNeue</string>
206
- <key>NSKern</key>
207
- <real>0.0</real>
208
- <key>Size</key>
209
- <real>12</real>
210
- </dict>
211
- <key>ID</key>
212
- <integer>7</integer>
213
- <key>Shape</key>
214
- <string>Circle</string>
215
- <key>Style</key>
216
- <dict>
217
- <key>fill</key>
218
- <dict>
219
- <key>GradientColor</key>
220
- <dict>
221
- <key>w</key>
222
- <string>1</string>
223
- </dict>
224
- <key>MiddleFraction</key>
225
- <real>0.13492070138454437</real>
226
- </dict>
227
- <key>stroke</key>
228
- <dict>
229
- <key>Cap</key>
230
- <integer>0</integer>
231
- <key>Color</key>
232
- <dict>
233
- <key>b</key>
234
- <string>0.494118</string>
235
- <key>g</key>
236
- <string>0.494118</string>
237
- <key>r</key>
238
- <string>0.494118</string>
239
- </dict>
240
- <key>Join</key>
241
- <integer>0</integer>
242
- <key>Width</key>
243
- <real>2</real>
244
- </dict>
245
- </dict>
246
- <key>Text</key>
247
- <dict>
248
- <key>Text</key>
249
- <string>{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf320
250
- {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;}
251
- {\colortbl;\red255\green255\blue255;}
252
- \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
253
-
254
- \f0\fs24 \cf0 Engine}</string>
255
- <key>VerticalPad</key>
256
- <integer>0</integer>
257
- </dict>
258
- </dict>
259
- <dict>
260
- <key>Bounds</key>
261
- <string>{{65, 194}, {88, 79}}</string>
262
- <key>Class</key>
263
- <string>ShapedGraphic</string>
264
- <key>FontInfo</key>
265
- <dict>
266
- <key>Color</key>
267
- <dict>
268
- <key>w</key>
269
- <string>0</string>
270
- </dict>
271
- <key>Font</key>
272
- <string>HelveticaNeue</string>
273
- <key>NSKern</key>
274
- <real>0.0</real>
275
- <key>Size</key>
276
- <real>12</real>
277
- </dict>
278
- <key>ID</key>
279
- <integer>6</integer>
280
- <key>Shape</key>
281
- <string>Circle</string>
282
- <key>Style</key>
283
- <dict>
284
- <key>fill</key>
285
- <dict>
286
- <key>GradientColor</key>
287
- <dict>
288
- <key>w</key>
289
- <string>1</string>
290
- </dict>
291
- <key>MiddleFraction</key>
292
- <real>0.13492070138454437</real>
293
- </dict>
294
- <key>stroke</key>
295
- <dict>
296
- <key>Cap</key>
297
- <integer>0</integer>
298
- <key>Color</key>
299
- <dict>
300
- <key>b</key>
301
- <string>0.494118</string>
302
- <key>g</key>
303
- <string>0.494118</string>
304
- <key>r</key>
305
- <string>0.494118</string>
306
- </dict>
307
- <key>Join</key>
308
- <integer>0</integer>
309
- <key>Width</key>
310
- <real>2</real>
311
- </dict>
312
- </dict>
313
- <key>Text</key>
314
- <dict>
315
- <key>Text</key>
316
- <string>{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf320
317
- {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;}
318
- {\colortbl;\red255\green255\blue255;}
319
- \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
320
-
321
- \f0\fs24 \cf0 Worker}</string>
322
- <key>VerticalPad</key>
323
- <integer>0</integer>
324
- </dict>
325
- </dict>
326
- <dict>
327
- <key>Bounds</key>
328
- <string>{{108, 141}, {88, 79}}</string>
329
- <key>Class</key>
330
- <string>ShapedGraphic</string>
331
- <key>FontInfo</key>
332
- <dict>
333
- <key>Color</key>
334
- <dict>
335
- <key>w</key>
336
- <string>0</string>
337
- </dict>
338
- <key>Font</key>
339
- <string>HelveticaNeue</string>
340
- <key>NSKern</key>
341
- <real>0.0</real>
342
- <key>Size</key>
343
- <real>12</real>
344
- </dict>
345
- <key>ID</key>
346
- <integer>5</integer>
347
- <key>Shape</key>
348
- <string>Circle</string>
349
- <key>Style</key>
350
- <dict>
351
- <key>fill</key>
352
- <dict>
353
- <key>GradientColor</key>
354
- <dict>
355
- <key>w</key>
356
- <string>1</string>
357
- </dict>
358
- <key>MiddleFraction</key>
359
- <real>0.13492070138454437</real>
360
- </dict>
361
- <key>stroke</key>
362
- <dict>
363
- <key>Cap</key>
364
- <integer>0</integer>
365
- <key>Color</key>
366
- <dict>
367
- <key>b</key>
368
- <string>0.494118</string>
369
- <key>g</key>
370
- <string>0.494118</string>
371
- <key>r</key>
372
- <string>0.494118</string>
373
- </dict>
374
- <key>Join</key>
375
- <integer>0</integer>
376
- <key>Width</key>
377
- <real>2</real>
378
- </dict>
379
- </dict>
380
- <key>Text</key>
381
- <dict>
382
- <key>Text</key>
383
- <string>{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf320
384
- {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;}
385
- {\colortbl;\red255\green255\blue255;}
386
- \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
387
-
388
- \f0\fs24 \cf0 Beanstalk::Storage}</string>
389
- <key>VerticalPad</key>
390
- <integer>0</integer>
391
- </dict>
392
- </dict>
393
- <dict>
394
- <key>Bounds</key>
395
- <string>{{397, 196}, {99, 79}}</string>
396
- <key>Class</key>
397
- <string>ShapedGraphic</string>
398
- <key>FontInfo</key>
399
- <dict>
400
- <key>Color</key>
401
- <dict>
402
- <key>w</key>
403
- <string>0</string>
404
- </dict>
405
- <key>Font</key>
406
- <string>HelveticaNeue</string>
407
- <key>NSKern</key>
408
- <real>0.0</real>
409
- <key>Size</key>
410
- <real>12</real>
411
- </dict>
412
- <key>ID</key>
413
- <integer>4</integer>
414
- <key>Shape</key>
415
- <string>Circle</string>
416
- <key>Style</key>
417
- <dict>
418
- <key>fill</key>
419
- <dict>
420
- <key>GradientColor</key>
421
- <dict>
422
- <key>w</key>
423
- <string>1</string>
424
- </dict>
425
- <key>MiddleFraction</key>
426
- <real>0.13492070138454437</real>
427
- </dict>
428
- <key>stroke</key>
429
- <dict>
430
- <key>Cap</key>
431
- <integer>0</integer>
432
- <key>Color</key>
433
- <dict>
434
- <key>b</key>
435
- <string>0.494118</string>
436
- <key>g</key>
437
- <string>0.494118</string>
438
- <key>r</key>
439
- <string>0.494118</string>
440
- </dict>
441
- <key>Join</key>
442
- <integer>0</integer>
443
- <key>Width</key>
444
- <real>2</real>
445
- </dict>
446
- </dict>
447
- <key>Text</key>
448
- <dict>
449
- <key>Text</key>
450
- <string>{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf320
451
- {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;}
452
- {\colortbl;\red255\green255\blue255;}
453
- \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
454
-
455
- \f0\fs24 \cf0 Beanstalk::\
456
- Storage\
457
- :fork =&gt; true}</string>
458
- <key>VerticalPad</key>
459
- <integer>0</integer>
460
- </dict>
461
- </dict>
462
- <dict>
463
- <key>Bounds</key>
464
- <string>{{349, 113}, {82, 47}}</string>
465
- <key>Class</key>
466
- <string>ShapedGraphic</string>
467
- <key>FontInfo</key>
468
- <dict>
469
- <key>Color</key>
470
- <dict>
471
- <key>w</key>
472
- <string>0</string>
473
- </dict>
474
- <key>Font</key>
475
- <string>HelveticaNeue</string>
476
- <key>NSKern</key>
477
- <real>0.0</real>
478
- <key>Size</key>
479
- <real>12</real>
480
- </dict>
481
- <key>ID</key>
482
- <integer>3</integer>
483
- <key>Shape</key>
484
- <string>RoundRect</string>
485
- <key>Style</key>
486
- <dict>
487
- <key>fill</key>
488
- <dict>
489
- <key>GradientColor</key>
490
- <dict>
491
- <key>w</key>
492
- <string>1</string>
493
- </dict>
494
- <key>MiddleFraction</key>
495
- <real>0.13492070138454437</real>
496
- </dict>
497
- <key>stroke</key>
498
- <dict>
499
- <key>Cap</key>
500
- <integer>0</integer>
501
- <key>Color</key>
502
- <dict>
503
- <key>b</key>
504
- <string>0.494118</string>
505
- <key>g</key>
506
- <string>0.494118</string>
507
- <key>r</key>
508
- <string>0.494118</string>
509
- </dict>
510
- <key>Join</key>
511
- <integer>0</integer>
512
- <key>Width</key>
513
- <real>2</real>
514
- </dict>
515
- </dict>
516
- <key>Text</key>
517
- <dict>
518
- <key>Text</key>
519
- <string>{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf320
520
- {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;}
521
- {\colortbl;\red255\green255\blue255;}
522
- \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
523
-
524
- \f0\fs24 \cf0 beanstalk}</string>
525
- <key>VerticalPad</key>
526
- <integer>0</integer>
527
- </dict>
528
- </dict>
529
- <dict>
530
- <key>Bounds</key>
531
- <string>{{363, 87}, {149, 206}}</string>
532
- <key>Class</key>
533
- <string>ShapedGraphic</string>
534
- <key>FontInfo</key>
535
- <dict>
536
- <key>Color</key>
537
- <dict>
538
- <key>w</key>
539
- <string>0</string>
540
- </dict>
541
- <key>Font</key>
542
- <string>HelveticaNeue</string>
543
- <key>NSKern</key>
544
- <real>0.0</real>
545
- <key>Size</key>
546
- <real>12</real>
547
- </dict>
548
- <key>ID</key>
549
- <integer>11</integer>
550
- <key>Shape</key>
551
- <string>Rectangle</string>
552
- <key>Style</key>
553
- <dict>
554
- <key>fill</key>
555
- <dict>
556
- <key>Draws</key>
557
- <string>NO</string>
558
- <key>GradientColor</key>
559
- <dict>
560
- <key>w</key>
561
- <string>1</string>
562
- </dict>
563
- <key>MiddleFraction</key>
564
- <real>0.13492070138454437</real>
565
- </dict>
566
- <key>stroke</key>
567
- <dict>
568
- <key>Cap</key>
569
- <integer>0</integer>
570
- <key>Color</key>
571
- <dict>
572
- <key>b</key>
573
- <string>0.494118</string>
574
- <key>g</key>
575
- <string>0.494118</string>
576
- <key>r</key>
577
- <string>0.494118</string>
578
- </dict>
579
- <key>Join</key>
580
- <integer>0</integer>
581
- </dict>
582
- </dict>
583
- <key>Text</key>
584
- <dict>
585
- <key>Align</key>
586
- <integer>0</integer>
587
- <key>VerticalPad</key>
588
- <integer>0</integer>
589
- </dict>
590
- </dict>
591
- <dict>
592
- <key>Bounds</key>
593
- <string>{{29, 130}, {195, 201}}</string>
594
- <key>Class</key>
595
- <string>ShapedGraphic</string>
596
- <key>FontInfo</key>
597
- <dict>
598
- <key>Color</key>
599
- <dict>
600
- <key>w</key>
601
- <string>0</string>
602
- </dict>
603
- <key>Font</key>
604
- <string>HelveticaNeue</string>
605
- <key>NSKern</key>
606
- <real>0.0</real>
607
- <key>Size</key>
608
- <real>12</real>
609
- </dict>
610
- <key>ID</key>
611
- <integer>12</integer>
612
- <key>Shape</key>
613
- <string>Rectangle</string>
614
- <key>Style</key>
615
- <dict>
616
- <key>fill</key>
617
- <dict>
618
- <key>Draws</key>
619
- <string>NO</string>
620
- <key>GradientColor</key>
621
- <dict>
622
- <key>w</key>
623
- <string>1</string>
624
- </dict>
625
- <key>MiddleFraction</key>
626
- <real>0.13492070138454437</real>
627
- </dict>
628
- <key>stroke</key>
629
- <dict>
630
- <key>Cap</key>
631
- <integer>0</integer>
632
- <key>Color</key>
633
- <dict>
634
- <key>b</key>
635
- <string>0.494118</string>
636
- <key>g</key>
637
- <string>0.494118</string>
638
- <key>r</key>
639
- <string>0.494118</string>
640
- </dict>
641
- <key>Join</key>
642
- <integer>0</integer>
643
- </dict>
644
- </dict>
645
- <key>Text</key>
646
- <dict>
647
- <key>Align</key>
648
- <integer>0</integer>
649
- <key>VerticalPad</key>
650
- <integer>0</integer>
651
- </dict>
652
- </dict>
653
- </array>
654
- <key>GridInfo</key>
655
- <dict/>
656
- <key>GuidesLocked</key>
657
- <string>NO</string>
658
- <key>GuidesVisible</key>
659
- <string>YES</string>
660
- <key>HPages</key>
661
- <integer>1</integer>
662
- <key>ImageCounter</key>
663
- <integer>5</integer>
664
- <key>ImageLinkBack</key>
665
- <array>
666
- <dict/>
667
- <dict/>
668
- </array>
669
- <key>ImageList</key>
670
- <array>
671
- <string>image4.png</string>
672
- <string>image3.png</string>
673
- </array>
674
- <key>KeepToScale</key>
675
- <false/>
676
- <key>Layers</key>
677
- <array>
678
- <dict>
679
- <key>Lock</key>
680
- <string>NO</string>
681
- <key>Name</key>
682
- <string>Layer 1</string>
683
- <key>Print</key>
684
- <string>YES</string>
685
- <key>View</key>
686
- <string>YES</string>
687
- </dict>
688
- </array>
689
- <key>LayoutInfo</key>
690
- <dict>
691
- <key>Animate</key>
692
- <string>NO</string>
693
- <key>circoMinDist</key>
694
- <real>18</real>
695
- <key>circoSeparation</key>
696
- <real>0.0</real>
697
- <key>layoutEngine</key>
698
- <string>dot</string>
699
- <key>neatoSeparation</key>
700
- <real>0.0</real>
701
- <key>twopiSeparation</key>
702
- <real>0.0</real>
703
- </dict>
704
- <key>LinksVisible</key>
705
- <string>NO</string>
706
- <key>MagnetsVisible</key>
707
- <string>NO</string>
708
- <key>MasterSheets</key>
709
- <array/>
710
- <key>ModificationDate</key>
711
- <string>2010-10-06 23:04:24 +0900</string>
712
- <key>Modifier</key>
713
- <string>John Mettraux</string>
714
- <key>NotesVisible</key>
715
- <string>NO</string>
716
- <key>Orientation</key>
717
- <integer>2</integer>
718
- <key>OriginVisible</key>
719
- <string>NO</string>
720
- <key>PageBreaks</key>
721
- <string>YES</string>
722
- <key>PrintInfo</key>
723
- <dict>
724
- <key>NSBottomMargin</key>
725
- <array>
726
- <string>float</string>
727
- <string>41</string>
728
- </array>
729
- <key>NSLeftMargin</key>
730
- <array>
731
- <string>float</string>
732
- <string>18</string>
733
- </array>
734
- <key>NSPaperSize</key>
735
- <array>
736
- <string>size</string>
737
- <string>{595, 842}</string>
738
- </array>
739
- <key>NSRightMargin</key>
740
- <array>
741
- <string>float</string>
742
- <string>18</string>
743
- </array>
744
- <key>NSTopMargin</key>
745
- <array>
746
- <string>float</string>
747
- <string>18</string>
748
- </array>
749
- </dict>
750
- <key>PrintOnePage</key>
751
- <false/>
752
- <key>ReadOnly</key>
753
- <string>NO</string>
754
- <key>RowAlign</key>
755
- <integer>1</integer>
756
- <key>RowSpacing</key>
757
- <real>36</real>
758
- <key>SheetTitle</key>
759
- <string>Canvas 1</string>
760
- <key>SmartAlignmentGuidesActive</key>
761
- <string>YES</string>
762
- <key>SmartDistanceGuidesActive</key>
763
- <string>YES</string>
764
- <key>UniqueID</key>
765
- <integer>1</integer>
766
- <key>UseEntirePage</key>
767
- <false/>
768
- <key>VPages</key>
769
- <integer>1</integer>
770
- <key>WindowInfo</key>
771
- <dict>
772
- <key>CurrentSheet</key>
773
- <integer>0</integer>
774
- <key>ExpandedCanvases</key>
775
- <array>
776
- <dict>
777
- <key>name</key>
778
- <string>Canvas 1</string>
779
- </dict>
780
- </array>
781
- <key>Frame</key>
782
- <string>{{585, 86}, {1140, 1070}}</string>
783
- <key>ListView</key>
784
- <true/>
785
- <key>OutlineWidth</key>
786
- <integer>142</integer>
787
- <key>RightSidebar</key>
788
- <false/>
789
- <key>ShowRuler</key>
790
- <true/>
791
- <key>Sidebar</key>
792
- <true/>
793
- <key>SidebarWidth</key>
794
- <integer>120</integer>
795
- <key>VisibleRegion</key>
796
- <string>{{-223, -66}, {1005, 916}}</string>
797
- <key>Zoom</key>
798
- <real>1</real>
799
- <key>ZoomValues</key>
800
- <array>
801
- <array>
802
- <string>Canvas 1</string>
803
- <real>1</real>
804
- <real>1</real>
805
- </array>
806
- </array>
807
- </dict>
808
- <key>saveQuickLookFiles</key>
809
- <string>YES</string>
810
- </dict>
811
- </plist>
Binary file
data/serve.rb DELETED
@@ -1,11 +0,0 @@
1
-
2
- $:.unshift('../ruote/lib')
3
- $:.unshift('lib')
4
-
5
- require 'fileutils'
6
- FileUtils.rm_rf('ruote_work')
7
-
8
- require 'ruote/beanstalk'
9
-
10
- Ruote::Beanstalk::Storage.new(':11300', 'ruote_work', :fork => true)
11
-