polyphony 0.40 → 0.43.2

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 (115) 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 +29 -2
  6. data/Gemfile.lock +13 -10
  7. data/README.md +0 -1
  8. data/Rakefile +3 -3
  9. data/TODO.md +27 -97
  10. data/docs/_config.yml +56 -7
  11. data/docs/_sass/custom/custom.scss +6 -26
  12. data/docs/_sass/overrides.scss +0 -46
  13. data/docs/{user-guide → _user-guide}/all-about-timers.md +0 -0
  14. data/docs/_user-guide/index.md +9 -0
  15. data/docs/{user-guide → _user-guide}/web-server.md +0 -0
  16. data/docs/api-reference/fiber.md +2 -2
  17. data/docs/api-reference/index.md +9 -0
  18. data/docs/api-reference/polyphony-process.md +1 -1
  19. data/docs/api-reference/thread.md +1 -1
  20. data/docs/faq.md +21 -11
  21. data/docs/favicon.ico +0 -0
  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 +486 -0
  25. data/docs/getting-started/tutorial.md +27 -19
  26. data/docs/index.md +6 -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/docs/polyphony-logo.png +0 -0
  32. data/examples/adapters/redis_blpop.rb +12 -0
  33. data/examples/core/01-spinning-up-fibers.rb +1 -0
  34. data/examples/core/03-interrupting.rb +4 -1
  35. data/examples/core/04-handling-signals.rb +19 -0
  36. data/examples/core/xx-agent.rb +102 -0
  37. data/examples/core/xx-sleeping.rb +14 -6
  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 +15 -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 +725 -0
  50. data/ext/polyphony/libev_queue.c +217 -0
  51. data/ext/{gyro/gyro.c → polyphony/polyphony.c} +12 -37
  52. data/ext/polyphony/polyphony.h +90 -0
  53. data/ext/polyphony/polyphony_ext.c +21 -0
  54. data/ext/{gyro → polyphony}/thread.c +34 -151
  55. data/ext/{gyro → polyphony}/tracing.c +1 -1
  56. data/lib/polyphony.rb +19 -12
  57. data/lib/polyphony/adapters/irb.rb +1 -1
  58. data/lib/polyphony/adapters/postgres.rb +6 -5
  59. data/lib/polyphony/adapters/process.rb +5 -5
  60. data/lib/polyphony/adapters/redis.rb +3 -2
  61. data/lib/polyphony/adapters/trace.rb +28 -28
  62. data/lib/polyphony/core/channel.rb +3 -3
  63. data/lib/polyphony/core/exceptions.rb +1 -1
  64. data/lib/polyphony/core/global_api.rb +13 -11
  65. data/lib/polyphony/core/resource_pool.rb +3 -3
  66. data/lib/polyphony/core/sync.rb +2 -2
  67. data/lib/polyphony/core/thread_pool.rb +6 -6
  68. data/lib/polyphony/core/throttler.rb +13 -6
  69. data/lib/polyphony/event.rb +27 -0
  70. data/lib/polyphony/extensions/core.rb +22 -14
  71. data/lib/polyphony/extensions/fiber.rb +4 -4
  72. data/lib/polyphony/extensions/io.rb +59 -25
  73. data/lib/polyphony/extensions/openssl.rb +36 -16
  74. data/lib/polyphony/extensions/socket.rb +28 -10
  75. data/lib/polyphony/extensions/thread.rb +16 -9
  76. data/lib/polyphony/net.rb +9 -9
  77. data/lib/polyphony/version.rb +1 -1
  78. data/polyphony.gemspec +3 -3
  79. data/test/helper.rb +12 -1
  80. data/test/test_agent.rb +130 -0
  81. data/test/{test_async.rb → test_event.rb} +13 -7
  82. data/test/test_ext.rb +25 -4
  83. data/test/test_fiber.rb +19 -10
  84. data/test/test_global_api.rb +6 -6
  85. data/test/test_io.rb +46 -24
  86. data/test/test_queue.rb +74 -0
  87. data/test/test_signal.rb +3 -40
  88. data/test/test_socket.rb +34 -0
  89. data/test/test_thread.rb +37 -16
  90. data/test/test_trace.rb +6 -5
  91. metadata +39 -41
  92. data/docs/_includes/nav.html +0 -51
  93. data/docs/_includes/prevnext.html +0 -17
  94. data/docs/_layouts/default.html +0 -106
  95. data/docs/api-reference.md +0 -11
  96. data/docs/api-reference/gyro-async.md +0 -57
  97. data/docs/api-reference/gyro-child.md +0 -29
  98. data/docs/api-reference/gyro-queue.md +0 -44
  99. data/docs/api-reference/gyro-timer.md +0 -51
  100. data/docs/api-reference/gyro.md +0 -25
  101. data/docs/getting-started.md +0 -10
  102. data/docs/main-concepts.md +0 -10
  103. data/docs/user-guide.md +0 -10
  104. data/examples/core/forever_sleep.rb +0 -19
  105. data/ext/gyro/async.c +0 -132
  106. data/ext/gyro/child.c +0 -108
  107. data/ext/gyro/gyro.h +0 -158
  108. data/ext/gyro/gyro_ext.c +0 -33
  109. data/ext/gyro/io.c +0 -457
  110. data/ext/gyro/queue.c +0 -146
  111. data/ext/gyro/selector.c +0 -205
  112. data/ext/gyro/signal.c +0 -99
  113. data/ext/gyro/socket.c +0 -213
  114. data/ext/gyro/timer.c +0 -115
  115. data/test/test_timer.rb +0 -56
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2fac2ba159f62bc767c1c022a9ac84e0d682e9dc1cbb10f53e92ba53da376745
4
- data.tar.gz: 8d43be97359735d5b7ac6b9867716c06c420385bb41f14916edd0a2d2bbca454
3
+ metadata.gz: c7cf8c345b125c9a41ca7c0ad025ac21d001fc1f73dedb0b4968e426a096d8b6
4
+ data.tar.gz: 23b828449792dc3887c75ad54da3451696de66f6aceee255d8a1a5e9489bdf90
5
5
  SHA512:
6
- metadata.gz: 0350c4dbee7ad72ba68dfff4fc431870481f43a763d9e265e05ade0ce9545456adef2a79c5efd98ce7fc28b2314ab5558a9e69f9e9ef92759e5ae320c78435be
7
- data.tar.gz: 7c7774de233962a1b06bac02623a6127f9b716e36852bc6e5849227db80fc0e910549756c83441f6d40dd75a22c26253fcfeef7e50d62482c1cc7603f6c4b2f3
6
+ metadata.gz: a35a60f273a1989d31155a0d9c6d0a3685794dc363cb60fbf77cce4f8d4f15f7c16c6489d63d4534dc20b281fe0a9aa65f036ffa478e689d119679db48d7a52f
7
+ data.tar.gz: 8de219230c3a1ae3a6c7b618d271a58c54abe8ab5208a338e935c823056b6edebf6d311b4d90748ca9aad238f6b67643a3ac71036a60700920859bcffde56acd
@@ -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, macos-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,30 @@
1
+ ## 0.43.2 2020-07-07
2
+
3
+ * Fix sending Redis commands with array arguments (#21)
4
+
5
+ ## 0.43.1 2020-06
6
+
7
+ * Fix compiling C-extension on MacOS (#20)
8
+
9
+ ## 0.43 2020-07-05
10
+
11
+ * Add IO#read_loop
12
+ * Fix OpenSSL extension
13
+ * More work on docs
14
+
15
+ ## 0.42 2020-07-03
16
+
17
+ * Improve documentation
18
+ * Fix backtrace on SIGINT
19
+ * Implement LibevAgent#accept_loop, #read_loop
20
+ * Move ref counting from thread to agent
21
+ * Short circuit switchpoint if continuing with the same fiber
22
+ * Always do a switchpoint in #read, #write, #accept
23
+
24
+ ## 0.41 2020-06-27
25
+
26
+ * Introduce System Agent design, remove all `Gyro` classes
27
+
1
28
  ## 0.40 2020-05-04
2
29
 
3
30
  * More improvements to stability after fork
@@ -21,13 +48,13 @@
21
48
 
22
49
  * Rename `Fiber#cancel!` to `Fiber#cancel`
23
50
  * Rename `Gyro::Async#signal!` to `Gyro::Async#signal`
24
- * Use `Fiber#auto_async` in thread pool, thread extension
51
+ * Use `Fiber#auto_watcher` in thread pool, thread extension
25
52
  * Implement `Fiber#auto_io` for reusing IO watcher instances
26
53
  * Refactor C code
27
54
 
28
55
  ## 0.34 2020-03-25
29
56
 
30
- * Add `Fiber#auto_async` mainly for use in places like `Gyro::Queue#shift`
57
+ * Add `Fiber#auto_watcher` mainly for use in places like `Gyro::Queue#shift`
31
58
  * Refactor C extension
32
59
  * Improved GC'ing for watchers
33
60
  * Implement process supervisor (`Polyphony::ProcessSupervisor`)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- polyphony (0.40)
4
+ polyphony (0.43.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -27,7 +27,6 @@ GEM
27
27
  multi_xml (>= 0.5.2)
28
28
  i18n (0.9.5)
29
29
  concurrent-ruby (~> 1.0)
30
- jaro_winkler (1.5.4)
31
30
  jekyll (3.8.6)
32
31
  addressable (~> 2.4)
33
32
  colorator (~> 1.0)
@@ -52,10 +51,10 @@ GEM
52
51
  jekyll-watch (2.2.1)
53
52
  listen (~> 3.0)
54
53
  json (2.3.0)
55
- just-the-docs (0.2.7)
56
- jekyll (~> 3.8.5)
54
+ just-the-docs (0.3.0)
55
+ jekyll (>= 3.8.5)
57
56
  jekyll-seo-tag (~> 2.0)
58
- rake (~> 12.3.1)
57
+ rake (>= 12.3.1, < 13.1.0)
59
58
  kramdown (1.17.0)
60
59
  liquid (4.0.3)
61
60
  listen (3.2.1)
@@ -88,16 +87,20 @@ GEM
88
87
  rb-inotify (0.10.1)
89
88
  ffi (~> 1.0)
90
89
  redis (4.1.0)
90
+ regexp_parser (1.7.1)
91
91
  rexml (3.2.4)
92
92
  rouge (3.15.0)
93
- rubocop (0.80.0)
94
- jaro_winkler (~> 1.5.1)
93
+ rubocop (0.85.1)
95
94
  parallel (~> 1.10)
96
95
  parser (>= 2.7.0.1)
97
96
  rainbow (>= 2.2.2, < 4.0)
97
+ regexp_parser (>= 1.7)
98
98
  rexml
99
+ rubocop-ast (>= 0.0.3)
99
100
  ruby-progressbar (~> 1.7)
100
- 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)
101
104
  ruby-progressbar (1.10.1)
102
105
  rubyzip (2.0.0)
103
106
  safe_yaml (1.0.5)
@@ -123,7 +126,7 @@ DEPENDENCIES
123
126
  jekyll (~> 3.8.6)
124
127
  jekyll-remote-theme (~> 0.4.1)
125
128
  jekyll-seo-tag (~> 2.6.1)
126
- just-the-docs (~> 0.2.7)
129
+ just-the-docs (~> 0.3.0)
127
130
  localhost (= 1.1.4)
128
131
  minitest (= 5.13.0)
129
132
  minitest-reporters (= 1.4.2)
@@ -131,7 +134,7 @@ DEPENDENCIES
131
134
  polyphony!
132
135
  rake-compiler (= 1.0.5)
133
136
  redis (= 4.1.0)
134
- rubocop (= 0.80.0)
137
+ rubocop (= 0.85.1)
135
138
  simplecov (= 0.17.1)
136
139
 
137
140
  BUNDLED WITH
data/README.md CHANGED
@@ -1,6 +1,5 @@
1
1
  # Polyphony - Fine-Grained Concurrency for Ruby
2
2
 
3
-
4
3
  [![Gem Version](https://badge.fury.io/rb/polyphony.svg)](http://rubygems.org/gems/polyphony)
5
4
  [![Modulation Test](https://github.com/digital-fabric/polyphony/workflows/Tests/badge.svg)](https://github.com/digital-fabric/polyphony/actions?query=workflow%3ATests)
6
5
  [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/digital-fabric/polyphony/blob/master/LICENSE)
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]
@@ -20,7 +20,7 @@ task :stress_test do
20
20
  end
21
21
 
22
22
  task :docs do
23
- 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'
24
24
  end
25
25
 
26
26
  CLEAN.include "**/*.o", "**/*.so", "**/*.bundle", "**/*.jar", "pkg", "tmp"
data/TODO.md CHANGED
@@ -1,42 +1,9 @@
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.43
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
-
36
-
37
-
38
-
39
- ## 0.40 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
40
7
 
41
8
  - Debugging
42
9
  - Eat your own dogfood: need a good tool to check what's going on when some
@@ -148,13 +115,12 @@
148
115
  - links to the interesting stuff
149
116
  - benchmarks
150
117
  - explain difference between `sleep` and `suspend`
151
- - add explanation about async vs sync, blocking vs non-blocking
152
118
  - discuss using `snooze` for ensuring responsiveness when executing CPU-bound work
153
119
 
154
- - Check why first call to `#sleep` returns too early in tests. Check the
155
- sleep behaviour in a spawned thread.
156
120
 
157
- ## 0.41 Sinatra / Sidekiq
121
+ ## 0.44
122
+
123
+ ### Some more API work, more docs
158
124
 
159
125
  - sintra app with database access (postgresql)
160
126
 
@@ -164,13 +130,16 @@
164
130
  - test performance
165
131
  - proceed from there
166
132
 
167
- ## 0.42 Testing && Docs
133
+
134
+ ## 0.45
135
+
136
+ ### Sinatra / Sidekiq
168
137
 
169
138
  - Pull out redis/postgres code, put into new `polyphony-xxx` gems
170
139
 
171
- ## 0.43 Integration
140
+ ## 0.46
172
141
 
173
- ## 0.44 Real IO#gets and IO#read
142
+ ### Testing && Docs
174
143
 
175
144
  - More tests
176
145
  - Implement some basic stuff missing:
@@ -180,11 +149,11 @@
180
149
  - `IO.foreach`
181
150
  - `Process.waitpid`
182
151
 
183
- ## 0.45 Rails
152
+ ## 0.47
184
153
 
185
- - Rails?
154
+ ### Real IO#gets and IO#read
186
155
 
187
- ## 0.46 DNS
156
+ ## 0.48 DNS
188
157
 
189
158
  ### DNS client
190
159
 
@@ -217,56 +186,17 @@ Prior art:
217
186
 
218
187
  - https://github.com/socketry/async-dns
219
188
 
220
- ### Work on API
221
-
222
- - Introduce mailbox limiting:
223
- - add API for limiting mailbox size:
224
-
225
- ```ruby
226
- Fiber.current.mailbox_limit = 1000
227
- ```
228
-
229
- - Add the limit for `Gyro::Queue`
230
-
231
- ```ruby
232
- Gyro::Queue.new(1000)
233
- ```
234
-
235
- - Pushing to a limited queue will block if limit is reached
236
-
237
- - Introduce selective receive:
238
-
239
- ```ruby
240
- # returns (or waits for) the first message for which the block returns true
241
- (_, item) = receive { |msg| msg.first == ref }
242
- ```
243
-
244
- Possible implementation:
245
-
246
- ```ruby
247
- def receive
248
- return @mailbox.shift unless block_given?
249
-
250
- loop
251
- msg = @mailbox.shift
252
- return msg if yield(msg)
253
-
254
- # message didn't match condition, put it back in queue
255
- @mailbox.push msg
256
- end
257
- end
258
- ```
189
+ ## Work on API
259
190
 
260
191
  - Add option for setting the exception raised on cancelling using `#cancel_after`:
261
192
 
262
- ```ruby
263
- cancel_after(3, with_error: MyErrorClass) do
264
- do_my_thing
265
- end
266
-
267
- # or a RuntimeError with message
268
- cancel_after(3, with_error: 'Cancelling due to timeout') do
269
- do_my_thing
270
- end
271
- ```
193
+ ```ruby
194
+ cancel_after(3, with_error: MyErrorClass) do
195
+ do_my_thing
196
+ end
197
+ # or a RuntimeError with message
198
+ cancel_after(3, with_error: 'Cancelled due to timeout') do
199
+ do_my_thing
200
+ end
201
+ ```
272
202
 
@@ -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; 2020 Sharon Rosner. Distributed by an <a href=\"https://github.com/digital-fabric/polyphony/tree/master/LICENSE\">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/docs" # 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