polyphony 0.36 → 0.42

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.
Files changed (118) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +11 -2
  3. data/.gitignore +2 -2
  4. data/.rubocop.yml +30 -0
  5. data/CHANGELOG.md +28 -2
  6. data/Gemfile +0 -11
  7. data/Gemfile.lock +15 -14
  8. data/README.md +2 -1
  9. data/Rakefile +7 -3
  10. data/TODO.md +28 -95
  11. data/docs/_config.yml +56 -7
  12. data/docs/_sass/custom/custom.scss +0 -30
  13. data/docs/_sass/overrides.scss +0 -46
  14. data/docs/{user-guide → _user-guide}/all-about-timers.md +0 -0
  15. data/docs/_user-guide/index.md +9 -0
  16. data/docs/{user-guide → _user-guide}/web-server.md +0 -0
  17. data/docs/api-reference/fiber.md +2 -2
  18. data/docs/api-reference/index.md +9 -0
  19. data/docs/api-reference/polyphony-process.md +1 -1
  20. data/docs/api-reference/thread.md +1 -1
  21. data/docs/faq.md +21 -11
  22. data/docs/getting-started/index.md +10 -0
  23. data/docs/getting-started/installing.md +2 -6
  24. data/docs/getting-started/overview.md +507 -0
  25. data/docs/getting-started/tutorial.md +27 -19
  26. data/docs/index.md +3 -2
  27. data/docs/main-concepts/concurrency.md +0 -5
  28. data/docs/main-concepts/design-principles.md +69 -21
  29. data/docs/main-concepts/extending.md +1 -1
  30. data/docs/main-concepts/index.md +9 -0
  31. data/examples/core/01-spinning-up-fibers.rb +1 -0
  32. data/examples/core/03-interrupting.rb +4 -1
  33. data/examples/core/04-handling-signals.rb +19 -0
  34. data/examples/core/xx-agent.rb +102 -0
  35. data/examples/core/xx-fork-cleanup.rb +22 -0
  36. data/examples/core/xx-sleeping.rb +14 -6
  37. data/examples/io/tunnel.rb +48 -0
  38. data/examples/io/xx-irb.rb +1 -1
  39. data/examples/performance/thread-vs-fiber/polyphony_mt_server.rb +7 -6
  40. data/examples/performance/thread-vs-fiber/polyphony_server.rb +13 -36
  41. data/examples/performance/thread-vs-fiber/polyphony_server_read_loop.rb +58 -0
  42. data/examples/performance/xx-array.rb +11 -0
  43. data/examples/performance/xx-fiber-switch.rb +9 -0
  44. data/examples/performance/xx-snooze.rb +15 -0
  45. data/ext/{gyro → polyphony}/extconf.rb +2 -2
  46. data/ext/{gyro → polyphony}/fiber.c +18 -22
  47. data/ext/{gyro → polyphony}/libev.c +0 -0
  48. data/ext/{gyro → polyphony}/libev.h +0 -0
  49. data/ext/polyphony/libev_agent.c +718 -0
  50. data/ext/polyphony/libev_queue.c +216 -0
  51. data/ext/{gyro/gyro.c → polyphony/polyphony.c} +16 -46
  52. data/ext/{gyro/gyro.h → polyphony/polyphony.h} +25 -39
  53. data/ext/polyphony/polyphony_ext.c +23 -0
  54. data/ext/{gyro → polyphony}/socket.c +21 -18
  55. data/ext/polyphony/thread.c +206 -0
  56. data/ext/{gyro → polyphony}/tracing.c +1 -1
  57. data/lib/polyphony.rb +40 -44
  58. data/lib/polyphony/adapters/fs.rb +1 -4
  59. data/lib/polyphony/adapters/irb.rb +1 -1
  60. data/lib/polyphony/adapters/postgres.rb +6 -5
  61. data/lib/polyphony/adapters/process.rb +27 -23
  62. data/lib/polyphony/adapters/trace.rb +110 -105
  63. data/lib/polyphony/core/channel.rb +35 -35
  64. data/lib/polyphony/core/exceptions.rb +29 -29
  65. data/lib/polyphony/core/global_api.rb +94 -91
  66. data/lib/polyphony/core/resource_pool.rb +83 -83
  67. data/lib/polyphony/core/sync.rb +16 -16
  68. data/lib/polyphony/core/thread_pool.rb +49 -37
  69. data/lib/polyphony/core/throttler.rb +30 -23
  70. data/lib/polyphony/event.rb +27 -0
  71. data/lib/polyphony/extensions/core.rb +25 -17
  72. data/lib/polyphony/extensions/fiber.rb +269 -267
  73. data/lib/polyphony/extensions/io.rb +56 -26
  74. data/lib/polyphony/extensions/openssl.rb +5 -9
  75. data/lib/polyphony/extensions/socket.rb +29 -10
  76. data/lib/polyphony/extensions/thread.rb +19 -12
  77. data/lib/polyphony/net.rb +64 -60
  78. data/lib/polyphony/version.rb +1 -1
  79. data/polyphony.gemspec +4 -7
  80. data/test/helper.rb +14 -1
  81. data/test/stress.rb +17 -12
  82. data/test/test_agent.rb +124 -0
  83. data/test/{test_async.rb → test_event.rb} +15 -7
  84. data/test/test_ext.rb +25 -4
  85. data/test/test_fiber.rb +19 -10
  86. data/test/test_global_api.rb +4 -4
  87. data/test/test_io.rb +46 -24
  88. data/test/test_queue.rb +74 -0
  89. data/test/test_signal.rb +3 -40
  90. data/test/test_socket.rb +33 -0
  91. data/test/test_thread.rb +38 -16
  92. data/test/test_thread_pool.rb +2 -2
  93. data/test/test_throttler.rb +0 -1
  94. data/test/test_trace.rb +6 -5
  95. metadata +41 -57
  96. data/docs/_includes/nav.html +0 -51
  97. data/docs/_includes/prevnext.html +0 -17
  98. data/docs/_layouts/default.html +0 -106
  99. data/docs/api-reference.md +0 -11
  100. data/docs/api-reference/gyro-async.md +0 -57
  101. data/docs/api-reference/gyro-child.md +0 -29
  102. data/docs/api-reference/gyro-queue.md +0 -44
  103. data/docs/api-reference/gyro-timer.md +0 -51
  104. data/docs/api-reference/gyro.md +0 -25
  105. data/docs/getting-started.md +0 -10
  106. data/docs/main-concepts.md +0 -10
  107. data/docs/user-guide.md +0 -10
  108. data/examples/core/forever_sleep.rb +0 -19
  109. data/ext/gyro/async.c +0 -148
  110. data/ext/gyro/child.c +0 -127
  111. data/ext/gyro/gyro_ext.c +0 -33
  112. data/ext/gyro/io.c +0 -474
  113. data/ext/gyro/queue.c +0 -142
  114. data/ext/gyro/selector.c +0 -205
  115. data/ext/gyro/signal.c +0 -118
  116. data/ext/gyro/thread.c +0 -298
  117. data/ext/gyro/timer.c +0 -134
  118. data/test/test_timer.rb +0 -56
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1baba43b46fa48ea13ec33667390b5b6dafb8323d250f2df5e5ee6930e939680
4
- data.tar.gz: 465c329841226252b1fe7fc3d48904b912323370083b4925d89531e45a4bd34d
3
+ metadata.gz: e284cae2a5eb2332bc8671090412bbe0cf7d57dbc163d68ba387f4d9635a8adf
4
+ data.tar.gz: 58eba5a2607df83c7471b1a6b72cc350aa468e9a562e3d1e8f7451eaae12d068
5
5
  SHA512:
6
- metadata.gz: d9b863d0231a5ccea65aa015d5a1d3432d0b513be1a60b2d20040bd06ed9d253c6be8391176ceba472300beac8059e27c334aca3bb6bafd51c3dabfd1e105301
7
- data.tar.gz: 29eba3a894084f20d21bab00840cef76a5094f73aee4521947685883dc717811a274ed723deb72433cc0f358715549d79215286aad0ba62d14ee97308ee1415b
6
+ metadata.gz: 10b7bcf9240ea8f7355c75d025bd6c5e1bd00c86e7985f71440091cc149c629279b16eaf1c863d85de29e278739926b499625c77238db8eb803aa235395771a4
7
+ data.tar.gz: 9001df441fdc058a3234bca05f6cca55d3a27edcf0b5b0d126a9c371d37bd0ffecc4d13d8f13c614d9b7182630f94d54481035f6d83fb044aebdf3238f83b03a
@@ -4,12 +4,21 @@ on: [push]
4
4
 
5
5
  jobs:
6
6
  build:
7
- runs-on: ubuntu-latest
7
+ strategy:
8
+ fail-fast: false
9
+ matrix:
10
+ os: [ubuntu-latest]
11
+ ruby: [2.6, 2.7]
12
+
13
+ name: >-
14
+ ${{matrix.os}}, ${{matrix.ruby}}
15
+
16
+ runs-on: ${{matrix.os}}
8
17
  steps:
9
18
  - uses: actions/checkout@v1
10
19
  - uses: actions/setup-ruby@v1
11
20
  with:
12
- ruby-version: 2.6.5
21
+ ruby-version: ${{matrix.ruby}}
13
22
  - name: Install dependencies
14
23
  run: |
15
24
  gem install bundler
data/.gitignore CHANGED
@@ -52,8 +52,8 @@ build-iPhoneSimulator/
52
52
  test.rb
53
53
  .vscode
54
54
 
55
- lib/gyro_ext.bundle
56
- lib/gyro_ext.so
55
+ lib/*.bundle
56
+ lib/*.so
57
57
 
58
58
  _site
59
59
  .sass-cache
@@ -143,3 +143,33 @@ Style/HashTransformKeys:
143
143
 
144
144
  Style/HashTransformValues:
145
145
  Enabled: true
146
+
147
+ Layout/EmptyLinesAroundAttributeAccessor:
148
+ Enabled: true
149
+
150
+ Layout/SpaceAroundMethodCallOperator:
151
+ Enabled: true
152
+
153
+ Lint/DeprecatedOpenSSLConstant:
154
+ Enabled: true
155
+
156
+ Lint/MixedRegexpCaptureTypes:
157
+ Enabled: true
158
+
159
+ Lint/RaiseException:
160
+ Enabled: true
161
+
162
+ Lint/StructNewOverride:
163
+ Enabled: true
164
+
165
+ Style/ExponentialNotation:
166
+ Enabled: true
167
+
168
+ Style/RedundantRegexpCharacterClass:
169
+ Enabled: true
170
+
171
+ Style/RedundantRegexpEscape:
172
+ Enabled: true
173
+
174
+ Style/SlicingWithRange:
175
+ Enabled: true
@@ -1,3 +1,29 @@
1
+ ## 0.42 2020-07-03
2
+
3
+ * Improve documentation
4
+ * Fix backtrace on SIGINT
5
+ * Implement LibevAgent#accept_loop, #read_loop
6
+ * Move ref counting from thread to agent
7
+ * Short circuit switchpoint if continuing with the same fiber
8
+ * Always do a switchpoint in #read, #write, #accept
9
+
10
+ ## 0.41 2020-06-27
11
+
12
+ * Introduce System Agent design, remove all `Gyro` classes
13
+
14
+ ## 0.40 2020-05-04
15
+
16
+ * More improvements to stability after fork
17
+
18
+ ## 0.38 2020-04-13
19
+
20
+ * Fix post-fork segfault if parent process has multiple threads with active watchers
21
+
22
+ ## 0.37 2020-04-07
23
+
24
+ * Explicitly kill threads on exit to prevent possible segfault
25
+ * Remove Modulation dependency
26
+
1
27
  ## 0.36 2020-03-31
2
28
 
3
29
  * More docs
@@ -8,13 +34,13 @@
8
34
 
9
35
  * Rename `Fiber#cancel!` to `Fiber#cancel`
10
36
  * Rename `Gyro::Async#signal!` to `Gyro::Async#signal`
11
- * Use `Fiber#auto_async` in thread pool, thread extension
37
+ * Use `Fiber#auto_watcher` in thread pool, thread extension
12
38
  * Implement `Fiber#auto_io` for reusing IO watcher instances
13
39
  * Refactor C code
14
40
 
15
41
  ## 0.34 2020-03-25
16
42
 
17
- * Add `Fiber#auto_async` mainly for use in places like `Gyro::Queue#shift`
43
+ * Add `Fiber#auto_watcher` mainly for use in places like `Gyro::Queue#shift`
18
44
  * Refactor C extension
19
45
  * Improved GC'ing for watchers
20
46
  * Implement process supervisor (`Polyphony::ProcessSupervisor`)
data/Gemfile CHANGED
@@ -1,14 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
-
5
- # gem "jekyll", "~> 3.8.6"
6
- # gem "jekyll-remote-theme"
7
- # gem "jekyll-seo-tag"
8
- # gem "just-the-docs"
9
-
10
- # # gem "github-pages", group: :jekyll_plugins
11
-
12
- # group :jekyll_plugins do
13
- # gem "jekyll-feed", "~> 0.6"
14
- # end
@@ -1,8 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- polyphony (0.36)
5
- modulation (~> 1.0)
4
+ polyphony (0.42)
6
5
 
7
6
  GEM
8
7
  remote: https://rubygems.org/
@@ -28,7 +27,6 @@ GEM
28
27
  multi_xml (>= 0.5.2)
29
28
  i18n (0.9.5)
30
29
  concurrent-ruby (~> 1.0)
31
- jaro_winkler (1.5.4)
32
30
  jekyll (3.8.6)
33
31
  addressable (~> 2.4)
34
32
  colorator (~> 1.0)
@@ -53,10 +51,10 @@ GEM
53
51
  jekyll-watch (2.2.1)
54
52
  listen (~> 3.0)
55
53
  json (2.3.0)
56
- just-the-docs (0.2.7)
57
- jekyll (~> 3.8.5)
54
+ just-the-docs (0.3.0)
55
+ jekyll (>= 3.8.5)
58
56
  jekyll-seo-tag (~> 2.0)
59
- rake (~> 12.3.1)
57
+ rake (>= 12.3.1, < 13.1.0)
60
58
  kramdown (1.17.0)
61
59
  liquid (4.0.3)
62
60
  listen (3.2.1)
@@ -73,14 +71,13 @@ GEM
73
71
  builder
74
72
  minitest (>= 5.0)
75
73
  ruby-progressbar
76
- modulation (1.0)
77
74
  multi_xml (0.6.0)
78
75
  parallel (1.19.1)
79
76
  parser (2.7.0.2)
80
77
  ast (~> 2.4.0)
81
78
  pathutil (0.16.2)
82
79
  forwardable-extended (~> 2.6)
83
- pg (1.1.3)
80
+ pg (1.1.4)
84
81
  public_suffix (4.0.3)
85
82
  rainbow (3.0.0)
86
83
  rake (12.3.3)
@@ -90,16 +87,20 @@ GEM
90
87
  rb-inotify (0.10.1)
91
88
  ffi (~> 1.0)
92
89
  redis (4.1.0)
90
+ regexp_parser (1.7.1)
93
91
  rexml (3.2.4)
94
92
  rouge (3.15.0)
95
- rubocop (0.80.0)
96
- jaro_winkler (~> 1.5.1)
93
+ rubocop (0.85.1)
97
94
  parallel (~> 1.10)
98
95
  parser (>= 2.7.0.1)
99
96
  rainbow (>= 2.2.2, < 4.0)
97
+ regexp_parser (>= 1.7)
100
98
  rexml
99
+ rubocop-ast (>= 0.0.3)
101
100
  ruby-progressbar (~> 1.7)
102
- unicode-display_width (>= 1.4.0, < 1.7)
101
+ unicode-display_width (>= 1.4.0, < 2.0)
102
+ rubocop-ast (0.0.3)
103
+ parser (>= 2.7.0.1)
103
104
  ruby-progressbar (1.10.1)
104
105
  rubyzip (2.0.0)
105
106
  safe_yaml (1.0.5)
@@ -125,15 +126,15 @@ DEPENDENCIES
125
126
  jekyll (~> 3.8.6)
126
127
  jekyll-remote-theme (~> 0.4.1)
127
128
  jekyll-seo-tag (~> 2.6.1)
128
- just-the-docs (~> 0.2.7)
129
+ just-the-docs (~> 0.3.0)
129
130
  localhost (= 1.1.4)
130
131
  minitest (= 5.13.0)
131
132
  minitest-reporters (= 1.4.2)
132
- pg (= 1.1.3)
133
+ pg (= 1.1.4)
133
134
  polyphony!
134
135
  rake-compiler (= 1.0.5)
135
136
  redis (= 4.1.0)
136
- rubocop (= 0.80.0)
137
+ rubocop (= 0.85.1)
137
138
  simplecov (= 0.17.1)
138
139
 
139
140
  BUNDLED WITH
data/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # Polyphony - Fine-Grained Concurrency for Ruby
2
2
 
3
+
3
4
  [![Gem Version](https://badge.fury.io/rb/polyphony.svg)](http://rubygems.org/gems/polyphony)
4
5
  [![Modulation Test](https://github.com/digital-fabric/polyphony/workflows/Tests/badge.svg)](https://github.com/digital-fabric/polyphony/actions?query=workflow%3ATests)
5
6
  [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/digital-fabric/polyphony/blob/master/LICENSE)
@@ -46,4 +47,4 @@ The complete documentation for Polyphony could be found on the
46
47
 
47
48
  Issues and pull requests will be gladly accepted. Please use the [Polyphony git
48
49
  repository](https://github.com/digital-fabric/polyphony) as your primary point
49
- of departure for contributing.
50
+ of departure for contributing.
data/Rakefile CHANGED
@@ -4,8 +4,8 @@ require "bundler/gem_tasks"
4
4
  require "rake/clean"
5
5
 
6
6
  require "rake/extensiontask"
7
- Rake::ExtensionTask.new("gyro_ext") do |ext|
8
- ext.ext_dir = "ext/gyro"
7
+ Rake::ExtensionTask.new("polyphony_ext") do |ext|
8
+ ext.ext_dir = "ext/polyphony"
9
9
  end
10
10
 
11
11
  task :recompile => [:clean, :compile]
@@ -15,8 +15,12 @@ task :test do
15
15
  exec 'ruby test/run.rb'
16
16
  end
17
17
 
18
+ task :stress_test do
19
+ exec 'ruby test/stress.rb'
20
+ end
21
+
18
22
  task :docs do
19
- exec 'RUBYOPT=-W0 jekyll serve -s docs'
23
+ exec 'RUBYOPT=-W0 jekyll serve -s docs -H ec2-35-158-110-38.eu-central-1.compute.amazonaws.com'
20
24
  end
21
25
 
22
26
  CLEAN.include "**/*.o", "**/*.so", "**/*.bundle", "**/*.jar", "pkg", "tmp"
data/TODO.md CHANGED
@@ -1,39 +1,11 @@
1
- - Would it be possible to spin up a fiber on another thread?
2
-
3
- The use case is being able to supervise fibers that run on separate threads.
4
- This might be useful for distributing jobs (such as handling HTTP connections)
5
- over multiple threads.
1
+ ## 0.42
6
2
 
7
- For this we need:
8
-
9
- - A way to communicate to a thread that it needs to spin up a fiber, the
10
- simplest solution is to start a fiber accepting spin requests for each
11
- thread (in `Thread#initialize`).
12
- - An API:
13
-
14
- ```ruby
15
- spin(on_thread: thread) { do_something_important }
16
- ```
17
-
18
- An alternative is to turn the main fiber of spawned threads into a child of
19
- the spawning fiber. But since a lot of people might start threads without any
20
- regard to fibers, it might be better to implement this in a new API. An
21
- example of the top of my head for threads that shouldn't be children of the
22
- spawning fiber is our own test helper, which kills all child fibers after each
23
- test. MiniTest has some threads it spawns for running tests in parallel, and
24
- we don't want to stop them after each test!
25
-
26
- So, a good solution would be:
27
-
28
- ```ruby
29
- t = Thread.new { do_stuff }
30
- t.parent_fiber = Fiber.current
31
- # or otherwise:
32
- Fiber.current.add_child_fiber(t.main_fiber)
33
- ```
34
-
35
- ## 0.36 Some more API work, more docs
3
+ - Reimplement ResourcePool, Channel, Mutex using LibevQueue
4
+ -- Add `Fiber#schedule_with_priority` method, aliased by `Fiber#wakeup`
5
+ - Implement agent interface is virtual function table
6
+ - Implement proxy agent for plugging in a user-provided agent class
36
7
 
8
+ ## 0.43
37
9
  - Debugging
38
10
  - Eat your own dogfood: need a good tool to check what's going on when some
39
11
  test fails
@@ -142,17 +114,14 @@
142
114
  - Docs
143
115
  - landing page:
144
116
  - links to the interesting stuff
145
- - concurrency overview
146
- - faq
147
117
  - benchmarks
148
118
  - explain difference between `sleep` and `suspend`
149
- - add explanation about async vs sync
150
119
  - discuss using `snooze` for ensuring responsiveness when executing CPU-bound work
151
120
 
152
- - Check why first call to `#sleep` returns too early in tests. Check the
153
- sleep behaviour in a spawned thread.
154
121
 
155
- ## 0.37 Sinatra / Sidekiq
122
+ ## 0.44
123
+
124
+ ### Some more API work, more docs
156
125
 
157
126
  - sintra app with database access (postgresql)
158
127
 
@@ -162,13 +131,16 @@
162
131
  - test performance
163
132
  - proceed from there
164
133
 
165
- ## 0.38 Testing && Docs
134
+
135
+ ## 0.45
136
+
137
+ ### Sinatra / Sidekiq
166
138
 
167
139
  - Pull out redis/postgres code, put into new `polyphony-xxx` gems
168
140
 
169
- ## 0.39 Integration
141
+ ## 0.46
170
142
 
171
- ## 0.40 Real IO#gets and IO#read
143
+ ### Testing && Docs
172
144
 
173
145
  - More tests
174
146
  - Implement some basic stuff missing:
@@ -178,11 +150,11 @@
178
150
  - `IO.foreach`
179
151
  - `Process.waitpid`
180
152
 
181
- ## 0.41 Rails
153
+ ## 0.47
182
154
 
183
- - Rails?
155
+ ### Real IO#gets and IO#read
184
156
 
185
- ## 0.42 DNS
157
+ ## 0.48 DNS
186
158
 
187
159
  ### DNS client
188
160
 
@@ -215,56 +187,17 @@ Prior art:
215
187
 
216
188
  - https://github.com/socketry/async-dns
217
189
 
218
- ### Work on API
219
-
220
- - Introduce mailbox limiting:
221
- - add API for limiting mailbox size:
222
-
223
- ```ruby
224
- Fiber.current.mailbox_limit = 1000
225
- ```
226
-
227
- - Add the limit for `Gyro::Queue`
228
-
229
- ```ruby
230
- Gyro::Queue.new(1000)
231
- ```
232
-
233
- - Pushing to a limited queue will block if limit is reached
234
-
235
- - Introduce selective receive:
236
-
237
- ```ruby
238
- # returns (or waits for) the first message for which the block returns true
239
- (_, item) = receive { |msg| msg.first == ref }
240
- ```
241
-
242
- Possible implementation:
243
-
244
- ```ruby
245
- def receive
246
- return @mailbox.shift unless block_given?
247
-
248
- loop
249
- msg = @mailbox.shift
250
- return msg if yield(msg)
251
-
252
- # message didn't match condition, put it back in queue
253
- @mailbox.push msg
254
- end
255
- end
256
- ```
190
+ ## Work on API
257
191
 
258
192
  - Add option for setting the exception raised on cancelling using `#cancel_after`:
259
193
 
260
- ```ruby
261
- cancel_after(3, with_error: MyErrorClass) do
262
- do_my_thing
263
- end
264
-
265
- # or a RuntimeError with message
266
- cancel_after(3, with_error: 'Cancelling due to timeout') do
267
- do_my_thing
268
- end
269
- ```
194
+ ```ruby
195
+ cancel_after(3, with_error: MyErrorClass) do
196
+ do_my_thing
197
+ end
198
+ # or a RuntimeError with message
199
+ cancel_after(3, with_error: 'Cancelled due to timeout') do
200
+ do_my_thing
201
+ end
202
+ ```
270
203
 
@@ -1,15 +1,64 @@
1
1
  title: "Polyphony"
2
+ description: Fine-grained concurrency for Ruby
2
3
 
4
+ plugins:
5
+ - jekyll-remote-theme
6
+
7
+ permalink: pretty
3
8
  remote_theme: pmarsceill/just-the-docs
4
- color_scheme: nil
9
+ color_scheme: light
5
10
 
6
11
  search_enabled: true
7
- # Enable support for hyphenated search words:
8
- search_tokenizer_separator: /[\s/]+/
9
-
10
- plugins:
11
- - jekyll-remote-theme
12
+ search:
13
+ # Split pages into sections that can be searched individually
14
+ # Supports 1 - 6, default: 2
15
+ heading_level: 2
16
+ # Maximum amount of previews per search result
17
+ # Default: 3
18
+ previews: 3
19
+ # Maximum amount of words to display before a matched word in the preview
20
+ # Default: 5
21
+ preview_words_before: 5
22
+ # Maximum amount of words to display after a matched word in the preview
23
+ # Default: 10
24
+ preview_words_after: 10
25
+ # Set the search token separator
26
+ # Default: /[\s\-/]+/
27
+ # Example: enable support for hyphenated search words
28
+ tokenizer_separator: /[\s/]+/
29
+ # Display the relative url in search results
30
+ # Supports true (default) or false
31
+ rel_url: true
32
+ # Enable or disable the search button that appears in the bottom right corner of every page
33
+ # Supports true or false (default)
34
+ button: false
12
35
 
13
36
  aux_links:
14
37
  "Polyphony on GitHub":
15
- - "//github.com/digital-fabric/polyphony"
38
+ - "//github.com/digital-fabric/polyphony"
39
+
40
+ # Makes Aux links open in a new tab. Default is false
41
+ aux_links_new_tab: false
42
+
43
+ # Enable or disable heading anchors
44
+ heading_anchors: true
45
+
46
+ back_to_top: true
47
+ back_to_top_text: "Back to top"
48
+
49
+ footer_content: "Copyright &copy; 2018-2020 Sharon Rosner. Distributed by an <a href=\"https://github.com/digital-fabric/polyphony/tree/master/LICENSE.txt\">MIT license.</a>"
50
+
51
+ # Footer "Edit this page on GitHub" link text
52
+ gh_edit_link: true # show or hide edit this page link
53
+ gh_edit_link_text: "Edit this page on GitHub"
54
+ gh_edit_repository: "https://github.com/digital-fabric/polyphony" # the github URL for your repo
55
+ gh_edit_branch: "master" # the branch that your docs is served from
56
+ gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately
57
+
58
+ compress_html:
59
+ clippings: all
60
+ comments: all
61
+ endings: all
62
+ startings: []
63
+ blanklines: false
64
+ profile: false