falcon 0.35.2 → 0.35.3

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 (72) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -0
  3. data/Rakefile +2 -0
  4. data/examples/beer/config.ru +1 -0
  5. data/examples/beer/falcon.rb +1 -0
  6. data/examples/benchmark/config.ru +1 -0
  7. data/examples/benchmark/falcon.rb +1 -0
  8. data/examples/csv/config.ru +1 -0
  9. data/examples/google/falcon.rb +1 -0
  10. data/examples/hello/config.ru +1 -0
  11. data/examples/hello/falcon.rb +1 -0
  12. data/examples/hello/preload.rb +1 -0
  13. data/examples/internet/config.ru +1 -0
  14. data/examples/memory/allocations.rb +1 -0
  15. data/examples/memory/config.ru +1 -0
  16. data/examples/push/client.rb +1 -0
  17. data/examples/push/config.ru +1 -0
  18. data/examples/redis/Gemfile +1 -0
  19. data/examples/redis/config.ru +1 -0
  20. data/examples/sinatra/Gemfile +2 -0
  21. data/examples/sinatra/config.ru +1 -0
  22. data/examples/trailers/config.ru +1 -0
  23. data/examples/trailers/falcon.rb +1 -0
  24. data/falcon.gemspec +1 -0
  25. data/lib/falcon.rb +2 -0
  26. data/lib/falcon/adapters/early_hints.rb +2 -0
  27. data/lib/falcon/adapters/input.rb +2 -0
  28. data/lib/falcon/adapters/output.rb +2 -0
  29. data/lib/falcon/adapters/rack.rb +2 -0
  30. data/lib/falcon/adapters/response.rb +2 -0
  31. data/lib/falcon/adapters/rewindable.rb +2 -0
  32. data/lib/falcon/command.rb +2 -0
  33. data/lib/falcon/command/host.rb +2 -0
  34. data/lib/falcon/command/paths.rb +2 -0
  35. data/lib/falcon/command/proxy.rb +2 -0
  36. data/lib/falcon/command/redirect.rb +2 -0
  37. data/lib/falcon/command/serve.rb +2 -0
  38. data/lib/falcon/command/supervisor.rb +4 -0
  39. data/lib/falcon/command/top.rb +2 -0
  40. data/lib/falcon/command/virtual.rb +2 -0
  41. data/lib/falcon/configuration.rb +2 -0
  42. data/lib/falcon/configuration/application.rb +2 -0
  43. data/lib/falcon/configuration/lets_encrypt_tls.rb +2 -0
  44. data/lib/falcon/configuration/proxy.rb +2 -0
  45. data/lib/falcon/configuration/rack.rb +2 -0
  46. data/lib/falcon/configuration/self_signed_tls.rb +2 -0
  47. data/lib/falcon/configuration/supervisor.rb +2 -0
  48. data/lib/falcon/configuration/tls.rb +2 -0
  49. data/lib/falcon/controller/host.rb +2 -0
  50. data/lib/falcon/controller/proxy.rb +2 -0
  51. data/lib/falcon/controller/redirect.rb +2 -0
  52. data/lib/falcon/controller/serve.rb +2 -0
  53. data/lib/falcon/controller/virtual.rb +2 -0
  54. data/lib/falcon/endpoint.rb +2 -0
  55. data/lib/falcon/extensions/openssl.rb +2 -0
  56. data/lib/falcon/middleware/proxy.rb +2 -0
  57. data/lib/falcon/middleware/redirect.rb +2 -0
  58. data/lib/falcon/proxy_endpoint.rb +2 -0
  59. data/lib/falcon/server.rb +2 -0
  60. data/lib/falcon/service/application.rb +2 -0
  61. data/lib/falcon/service/generic.rb +2 -0
  62. data/lib/falcon/service/proxy.rb +2 -0
  63. data/lib/falcon/service/supervisor.rb +2 -0
  64. data/lib/falcon/services.rb +2 -0
  65. data/lib/falcon/tls.rb +2 -0
  66. data/lib/falcon/verbose.rb +2 -0
  67. data/lib/falcon/version.rb +3 -1
  68. data/lib/rack/handler/falcon.rb +1 -0
  69. data/recipes/falcon/supervisor.rb +7 -0
  70. data/server.rb +1 -0
  71. data/tasks/benchmark.rake +1 -0
  72. metadata +17 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 84729edbb46df1f126e27c5fafa8ed0a0b2c1d77a2ede824e393a5173ab9357c
4
- data.tar.gz: 90d270d1eaab2d940d2857687e6b6cfd14e8b3e1248f2cd235689629f9a4c24f
3
+ metadata.gz: df502988a195ba883a12db2e5cd5b33ed5ecb8ac29a8976642ad90adad498ce4
4
+ data.tar.gz: abf7216bff0ded981b69f53b15821286465fd0c48d0812be7b32741e9dd869fa
5
5
  SHA512:
6
- metadata.gz: 4293a8089492159826f925719245f55cbade158866b8875ef1877c3b006b266c11775a389246d7732b5fcf44b5bd74ac1044d9297d12f47fac2fdf765d38d571
7
- data.tar.gz: 13d568ff2665262daf06c6504d87c88c6c4102a0c27bf33575516de771ca0235ef5537d4a7c59bcc00eb1f22a9f028a9b5c7c21e979d9f3546b29295d6eded16
6
+ metadata.gz: 04f7770d6c0c6d6dba5a290dcfabed26f02f7c5fcaf0dacb8267fe7cba7e2c655a01c467e7a63b5ff3eb2c354c70830c33a77aec4adf0763bcea386d489e9b05
7
+ data.tar.gz: b331342da5022cf534e39016711a6c2d1383231fbb8038a83dc886cd02c79272cbf9a44db96e369530682bb34b057ff21bd6250ffdcb5167e39fc7c9f3309255
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "bundler/gem_tasks"
2
4
  require "rspec/core/rake_task"
3
5
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env falcon --verbose serve -c
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'rack'
4
5
  require 'cgi'
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env falcon-host
2
+ # frozen_string_literal: true
2
3
 
3
4
  load :rack, :self_signed_tls, :supervisor
4
5
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env falcon --verbose serve -c
2
+ # frozen_string_literal: true
2
3
 
3
4
  class Benchmark
4
5
  def initialize(app)
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env -S ./bin/falcon virtual
2
+ # frozen_string_literal: true
2
3
 
3
4
  load :rack, :self_signed_tls, :supervisor
4
5
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env falcon --verbose serve -c
2
+ # frozen_string_literal: true
2
3
 
3
4
  class MyApp
4
5
  def initialize(app)
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env falcon-host
2
+ # frozen_string_literal: true
2
3
 
3
4
  load :proxy, :self_signed_tls, :supervisor
4
5
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env falcon --verbose serve -c
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'async'
4
5
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env falcon-host
2
+ # frozen_string_literal: true
2
3
 
3
4
  load :rack, :self_signed_tls, :supervisor
4
5
 
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  if GC.respond_to?(:compact)
3
4
  Async.logger.warn(self, "Compacting the mainframe...")
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  require 'async'
3
4
  require 'async/http/internet'
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  class Allocations
3
4
  def initialize(app)
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  require_relative 'allocations'
3
4
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'async'
4
5
  require 'async/http/endpoint'
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env falcon --verbose serve --concurrency 1 --config
2
+ # frozen_string_literal: true
2
3
 
3
4
  class EarlyHints
4
5
  def initialize(app)
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  # A sample Gemfile
3
4
  source "https://rubygems.org"
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  require 'sinatra/base'
3
4
  require 'async/redis'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # A sample Gemfile
2
4
  source "https://rubygems.org"
3
5
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env falcon --verbose serve -c
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Save this as `config.ru`, make it executable and then run it (or run falcon serve by hand)
4
5
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env falcon --verbose serve -c
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'async'
4
5
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env falcon-host
2
+ # frozen_string_literal: true
2
3
 
3
4
  load :rack, :self_signed_tls, :supervisor
4
5
 
@@ -36,6 +36,7 @@ Gem::Specification.new do |spec|
36
36
  spec.add_development_dependency "async-websocket", "~> 0.12.0"
37
37
  spec.add_development_dependency "async-process", "~> 1.1"
38
38
 
39
+ spec.add_development_dependency "bake"
39
40
  spec.add_development_dependency "covered", "~> 0.10"
40
41
  spec.add_development_dependency "bundler"
41
42
  spec.add_development_dependency "rspec", "~> 3.6"
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -21,6 +23,8 @@
21
23
  require 'samovar'
22
24
  require 'async'
23
25
  require 'json'
26
+
27
+ require 'async/io/stream'
24
28
  require 'async/io/unix_endpoint'
25
29
 
26
30
  module Falcon
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 201, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -19,5 +21,5 @@
19
21
  # THE SOFTWARE.
20
22
 
21
23
  module Falcon
22
- VERSION = "0.35.2"
24
+ VERSION = "0.35.3"
23
25
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  require 'rack/handler'
3
4
 
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ recipe :restart, description: 'Restart the application server via the supervisor.' do
4
+ require_relative '../../lib/falcon/command/supervisor'
5
+
6
+ Falcon::Command::Supervisor["restart"].call
7
+ end
data/server.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env -S ./bin/falcon virtual --bind-insecure http://[::]:1080 --bind-secure https://[::]:1443
2
+ # frozen_string_literal: true
2
3
 
3
4
  # You will want edit your `/etc/hosts`, adding the following:
4
5
  # 127.0.0.1 benchmark.localhost beer.localhost hello.localhost
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  namespace :benchmark do
3
4
  task :hello do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: falcon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.2
4
+ version: 0.35.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-02 00:00:00.000000000 Z
11
+ date: 2020-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async
@@ -178,6 +178,20 @@ dependencies:
178
178
  - - "~>"
179
179
  - !ruby/object:Gem::Version
180
180
  version: '1.1'
181
+ - !ruby/object:Gem::Dependency
182
+ name: bake
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
181
195
  - !ruby/object:Gem::Dependency
182
196
  name: covered
183
197
  requirement: !ruby/object:Gem::Requirement
@@ -328,6 +342,7 @@ files:
328
342
  - logo-square.afdesign
329
343
  - logo.afdesign
330
344
  - logo.svg
345
+ - recipes/falcon/supervisor.rb
331
346
  - server.rb
332
347
  - tasks/benchmark.rake
333
348
  homepage: https://github.com/socketry/falcon