guard-falcon 0.13.0 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f98b56715d37daed05a2164600824a56ebf6a60f6dd5eec37199e3a2b366f2a8
4
- data.tar.gz: 00fd7981ef51c713192edd6cb504597e603febd0d67caf02ca2154e37ebc5356
3
+ metadata.gz: 2429f5321a048be77d11a9ceded01b6a5ecceae7541d33e9e87f2acd3aeee759
4
+ data.tar.gz: 12135bb50118469a193935832c95b48599f72b5051eebc6ff7152d26306a2030
5
5
  SHA512:
6
- metadata.gz: c720d8413115fac695b01b06b0c622fd02db7b50a3339b131acd8edeeba8490d3620b5e7f5e46b78b75f566ca422f4ed025c541e2e3bbd42b85a22ea05400b30
7
- data.tar.gz: c2a71496c370e8abda2aa6a7d6de72d5c77bcf1064b0572137217f6e6527c547848759905686fb8135ad7f94027f04b3f8d180522c5cf86afd00e5da4d585fd4
6
+ metadata.gz: 82130f429075e607bbcb91d38c4d044bd9c43c3e2f325f102bf1c0d93a1beff4ebc693c65670e44d4b70b6ac3eabfca78bd9a967c5c9b18d19c180f42ee31536
7
+ data.tar.gz: e66a2343d9f846046c75d9a5cd84caa9f9c5211c66fcab08fd2a315ea1e410d003c36d88b7c9a55152e762b89ade012b04390ac2581a4fd0867cc1f4facb6ee3
checksums.yaml.gz.sig CHANGED
Binary file
@@ -1,89 +1,65 @@
1
- # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining a copy
4
- # of this software and associated documentation files (the "Software"), to deal
5
- # in the Software without restriction, including without limitation the rights
6
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- # copies of the Software, and to permit persons to whom the Software is
8
- # furnished to do so, subject to the following conditions:
9
- #
10
- # The above copyright notice and this permission notice shall be included in
11
- # all copies or substantial portions of the Software.
12
- #
13
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- # THE SOFTWARE.
1
+ # frozen_string_literal: true
20
2
 
21
- require 'guard/compat/plugin'
22
-
23
- require 'rack/builder'
3
+ # Released under the MIT License.
4
+ # Copyright, 2017-2024, by Samuel Williams.
5
+ # Copyright, 2018-2019, by Huba Nagy.
24
6
 
25
- require 'console/logger'
26
- require 'async/container'
7
+ require 'guard/compat/plugin'
27
8
 
28
- require 'falcon/server'
9
+ require 'falcon'
29
10
  require 'falcon/endpoint'
30
- require 'falcon/controller/serve'
11
+ require 'falcon/environment/rackup'
12
+ require 'falcon/environment/server'
13
+ require 'async/service'
14
+ require 'console'
31
15
 
32
16
  module Guard
33
17
  module Falcon
34
18
  class Plugin < Guard::Plugin
35
- DEFAULT_OPTIONS = {
36
- config: 'config.ru',
37
- count: 1,
38
- verbose: false,
39
- }
40
-
41
- def initialize(**options)
42
- super
19
+ module Environment
20
+ include ::Falcon::Environment::Server
21
+ include ::Falcon::Environment::Rackup
43
22
 
44
- @options = DEFAULT_OPTIONS.merge(options)
45
-
46
- @endpoint = nil
47
-
48
- @controller = ::Falcon::Controller::Serve.new(self)
49
- end
50
-
51
- def container_class
52
- Async::Container::Threaded
23
+ # The upstream endpoint that will handle incoming requests.
24
+ # @returns [Async::HTTP::Endpoint]
25
+ def endpoint
26
+ ::Falcon::Endpoint.parse(url).with(
27
+ reuse_address: true,
28
+ # reuse_port: true,
29
+ timeout: timeout,
30
+ )
31
+ end
53
32
  end
54
33
 
55
- def container_options
56
- {}
34
+ def self.default_environment(**options)
35
+ Async::Service::Environment.new(Environment).with(**options)
57
36
  end
58
37
 
59
- private def build_endpoint
60
- # Support existing use cases where only port: is specified.
61
- if @options[:endpoint]
62
- return @options[:endpoint]
38
+ def initialize(**options)
39
+ super
40
+
41
+ options[:root] ||= Dir.pwd
42
+ options[:name] ||= "falcon"
43
+
44
+ if paths = options[:paths]
45
+ @configuration = Async::Service::Configuration.load(paths)
63
46
  else
64
- url = @options.fetch(:url, "https://localhost")
65
- port = @options.fetch(:port, 9292)
47
+ @configuration = Async::Service::Configuration.new
48
+
49
+ # Compatibility
50
+ if rackup_path = options.delete(:config)
51
+ warn "The :config option is deprecated, please use :rackup_path instead.", uplevel: 1
52
+ options[:rackup_path] = rackup_path
53
+ end
66
54
 
67
- return ::Falcon::Endpoint.parse(url, port: port)
55
+ @configuration.add(self.class.default_environment(**options))
68
56
  end
69
- end
70
-
71
- def endpoint
72
- @endpoint ||= build_endpoint
73
- end
74
-
75
- def load_app
76
- rack_app, options = Rack::Builder.parse_file(@options[:config])
77
57
 
78
- return ::Falcon::Server.middleware(rack_app, verbose: @options[:verbose])
79
- end
80
-
81
- # As discussed in https://github.com/guard/guard/issues/713
82
- def logger
83
- Async.logger
58
+ @controller = ::Async::Service::Controller.new(@configuration.services.to_a)
84
59
  end
85
60
 
86
61
  def start
62
+ Console.info(self, "Starting...")
87
63
  @controller.start
88
64
  end
89
65
 
@@ -92,10 +68,12 @@ module Guard
92
68
  end
93
69
 
94
70
  def reload
71
+ Console.info(self, "Reloading...")
95
72
  @controller.restart
96
73
  end
97
74
 
98
75
  def stop
76
+ Console.info(self, "Stopping...")
99
77
  @controller.stop
100
78
  end
101
79
 
@@ -1,25 +1,10 @@
1
- # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining a copy
4
- # of this software and associated documentation files (the "Software"), to deal
5
- # in the Software without restriction, including without limitation the rights
6
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- # copies of the Software, and to permit persons to whom the Software is
8
- # furnished to do so, subject to the following conditions:
9
- #
10
- # The above copyright notice and this permission notice shall be included in
11
- # all copies or substantial portions of the Software.
12
- #
13
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- # THE SOFTWARE.
1
+ # frozen_string_literal: true
2
+
3
+ # Released under the MIT License.
4
+ # Copyright, 2017-2024, by Samuel Williams.
20
5
 
21
6
  module Guard
22
7
  module Falcon
23
- VERSION = "0.13.0"
8
+ VERSION = "0.14.0"
24
9
  end
25
10
  end
data/lib/guard/falcon.rb CHANGED
@@ -1,22 +1,7 @@
1
- # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining a copy
4
- # of this software and associated documentation files (the "Software"), to deal
5
- # in the Software without restriction, including without limitation the rights
6
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- # copies of the Software, and to permit persons to whom the Software is
8
- # furnished to do so, subject to the following conditions:
9
- #
10
- # The above copyright notice and this permission notice shall be included in
11
- # all copies or substantial portions of the Software.
12
- #
13
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- # THE SOFTWARE.
1
+ # frozen_string_literal: true
2
+
3
+ # Released under the MIT License.
4
+ # Copyright, 2017-2024, by Samuel Williams.
20
5
 
21
6
  require_relative 'falcon/plugin'
22
7
 
@@ -25,10 +10,5 @@ module Guard
25
10
  def self.new(*arguments, **options)
26
11
  Plugin.new(*arguments, **options)
27
12
  end
28
-
29
- # Workaround for https://github.com/guard/guard/pull/872
30
- def self.superclass
31
- nil
32
- end
33
13
  end
34
- end
14
+ end
data/license.md ADDED
@@ -0,0 +1,23 @@
1
+ # MIT License
2
+
3
+ Copyright, 2017-2024, by Samuel Williams.
4
+ Copyright, 2018-2019, by Huba Nagy.
5
+ Copyright, 2020, by Olle Jonsson.
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE.
data/readme.md ADDED
@@ -0,0 +1,44 @@
1
+ # Guard::Falcon
2
+
3
+ Efficiently runs a asynchronous Falcon server, restarting it as required by guard.
4
+
5
+ [![Development Status](https://github.com/socketry/guard-falcon/workflows/Test/badge.svg)](https://github.com/socketry/guard-falcon/actions?workflow=Test)
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ``` ruby
12
+ gem 'guard-falcon'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ ## Usage
20
+
21
+ Falcon can restart very quickly and is ideal for use with guard. In your `Guardfile`:
22
+
23
+ ``` ruby
24
+ guard :falcon do
25
+ end
26
+ ```
27
+
28
+ ## Contributing
29
+
30
+ We welcome contributions to this project.
31
+
32
+ 1. Fork it.
33
+ 2. Create your feature branch (`git checkout -b my-new-feature`).
34
+ 3. Commit your changes (`git commit -am 'Add some feature'`).
35
+ 4. Push to the branch (`git push origin my-new-feature`).
36
+ 5. Create new Pull Request.
37
+
38
+ ### Developer Certificate of Origin
39
+
40
+ This project uses the [Developer Certificate of Origin](https://developercertificate.org/). All contributors to this project must agree to this document to have their contributions accepted.
41
+
42
+ ### Contributor Covenant
43
+
44
+ This project is governed by the [Contributor Covenant](https://www.contributor-covenant.org/). All contributors and participants agree to abide by its terms.
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-falcon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
@@ -12,48 +12,35 @@ bindir: bin
12
12
  cert_chain:
13
13
  - |
14
14
  -----BEGIN CERTIFICATE-----
15
- MIIEhDCCAuygAwIBAgIBATANBgkqhkiG9w0BAQsFADA3MTUwMwYDVQQDDCxzYW11
16
- ZWwud2lsbGlhbXMvREM9b3Jpb250cmFuc2Zlci9EQz1jby9EQz1uejAeFw0yMTA4
17
- MTYwNjMzNDRaFw0yMjA4MTYwNjMzNDRaMDcxNTAzBgNVBAMMLHNhbXVlbC53aWxs
18
- aWFtcy9EQz1vcmlvbnRyYW5zZmVyL0RDPWNvL0RDPW56MIIBojANBgkqhkiG9w0B
19
- AQEFAAOCAY8AMIIBigKCAYEAyXLSS/cw+fXJ5e7hi+U/TeChPWeYdwJojDsFY1xr
20
- xvtqbTTL8gbLHz5LW3QD2nfwCv3qTlw0qI3Ie7a9VMJMbSvgVEGEfQirqIgJXWMj
21
- eNMDgKsMJtC7u/43abRKx7TCURW3iWyR19NRngsJJmaR51yGGGm2Kfsr+JtKKLtL
22
- L188Wm3f13KAx7QJU8qyuBnj1/gWem076hzdA7xi1DbrZrch9GCRz62xymJlrJHn
23
- 9iZEZ7AxrS7vokhMlzSr/XMUihx/8aFKtk+tMLClqxZSmBWIErWdicCGTULXCBNb
24
- E/mljo4zEVKhlTWpJklMIhr55ZRrSarKFuW7en0+tpJrfsYiAmXMJNi4XAYJH7uL
25
- rgJuJwSaa/dMz+VmUoo7VKtSfCoOI+6v5/z0sK3oT6sG6ZwyI47DBq2XqNC6tnAj
26
- w+XmCywiTQrFzMMAvcA7rPI4F0nU1rZId51rOvvfxaONp+wgTi4P8owZLw0/j0m4
27
- 8C20DYi6EYx4AHDXiLpElWh3AgMBAAGjgZowgZcwCQYDVR0TBAIwADALBgNVHQ8E
28
- BAMCBLAwHQYDVR0OBBYEFB6ZaeWKxQjGTI+pmz7cKRmMIywwMC4GA1UdEQQnMCWB
29
- I3NhbXVlbC53aWxsaWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MC4GA1UdEgQnMCWB
30
- I3NhbXVlbC53aWxsaWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MA0GCSqGSIb3DQEB
31
- CwUAA4IBgQBVoM+pu3dpdUhZM1w051iw5GfiqclAr1Psypf16Tiod/ho//4oAu6T
32
- 9fj3DPX/acWV9P/FScvqo4Qgv6g4VWO5ZU7z2JmPoTXZtYMunRAmQPFL/gSUc6aK
33
- vszMHIyhtyzRc6DnfW2AiVOjMBjaYv8xXZc9bduniRVPrLR4J7ozmGLh4o4uJp7w
34
- x9KCFaR8Lvn/r0oJWJOqb/DMAYI83YeN2Dlt3jpwrsmsONrtC5S3gOUle5afSGos
35
- bYt5ocnEpKSomR9ZtnCGljds/aeO1Xgpn2r9HHcjwnH346iNrnHmMlC7BtHUFPDg
36
- Ts92S47PTOXzwPBDsrFiq3VLbRjHSwf8rpqybQBH9MfzxGGxTaETQYOd6b4e4Ag6
37
- y92abGna0bmIEb4+Tx9rQ10Uijh1POzvr/VTH4bbIPy9FbKrRsIQ24qDbNJRtOpE
38
- RAOsIl+HOBTb252nx1kIRN5hqQx272AJCbCjKx8egcUQKffFVVCI0nye09v5CK+a
39
- HiLJ8VOFx6w=
15
+ MIIE2DCCA0CgAwIBAgIBATANBgkqhkiG9w0BAQsFADBhMRgwFgYDVQQDDA9zYW11
16
+ ZWwud2lsbGlhbXMxHTAbBgoJkiaJk/IsZAEZFg1vcmlvbnRyYW5zZmVyMRIwEAYK
17
+ CZImiZPyLGQBGRYCY28xEjAQBgoJkiaJk/IsZAEZFgJuejAeFw0yMjA4MDYwNDUz
18
+ MjRaFw0zMjA4MDMwNDUzMjRaMGExGDAWBgNVBAMMD3NhbXVlbC53aWxsaWFtczEd
19
+ MBsGCgmSJomT8ixkARkWDW9yaW9udHJhbnNmZXIxEjAQBgoJkiaJk/IsZAEZFgJj
20
+ bzESMBAGCgmSJomT8ixkARkWAm56MIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIB
21
+ igKCAYEAomvSopQXQ24+9DBB6I6jxRI2auu3VVb4nOjmmHq7XWM4u3HL+pni63X2
22
+ 9qZdoq9xt7H+RPbwL28LDpDNflYQXoOhoVhQ37Pjn9YDjl8/4/9xa9+NUpl9XDIW
23
+ sGkaOY0eqsQm1pEWkHJr3zn/fxoKPZPfaJOglovdxf7dgsHz67Xgd/ka+Wo1YqoE
24
+ e5AUKRwUuvaUaumAKgPH+4E4oiLXI4T1Ff5Q7xxv6yXvHuYtlMHhYfgNn8iiW8WN
25
+ XibYXPNP7NtieSQqwR/xM6IRSoyXKuS+ZNGDPUUGk8RoiV/xvVN4LrVm9upSc0ss
26
+ RZ6qwOQmXCo/lLcDUxJAgG95cPw//sI00tZan75VgsGzSWAOdjQpFM0l4dxvKwHn
27
+ tUeT3ZsAgt0JnGqNm2Bkz81kG4A2hSyFZTFA8vZGhp+hz+8Q573tAR89y9YJBdYM
28
+ zp0FM4zwMNEUwgfRzv1tEVVUEXmoFCyhzonUUw4nE4CFu/sE3ffhjKcXcY//qiSW
29
+ xm4erY3XAgMBAAGjgZowgZcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O
30
+ BBYEFO9t7XWuFf2SKLmuijgqR4sGDlRsMC4GA1UdEQQnMCWBI3NhbXVlbC53aWxs
31
+ aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MC4GA1UdEgQnMCWBI3NhbXVlbC53aWxs
32
+ aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MA0GCSqGSIb3DQEBCwUAA4IBgQB5sxkE
33
+ cBsSYwK6fYpM+hA5B5yZY2+L0Z+27jF1pWGgbhPH8/FjjBLVn+VFok3CDpRqwXCl
34
+ xCO40JEkKdznNy2avOMra6PFiQyOE74kCtv7P+Fdc+FhgqI5lMon6tt9rNeXmnW/
35
+ c1NaMRdxy999hmRGzUSFjozcCwxpy/LwabxtdXwXgSay4mQ32EDjqR1TixS1+smp
36
+ 8C/NCWgpIfzpHGJsjvmH2wAfKtTTqB9CVKLCWEnCHyCaRVuKkrKjqhYCdmMBqCws
37
+ JkxfQWC+jBVeG9ZtPhQgZpfhvh+6hMhraUYRQ6XGyvBqEUe+yo6DKIT3MtGE2+CP
38
+ eX9i9ZWBydWb8/rvmwmX2kkcBbX0hZS1rcR593hGc61JR6lvkGYQ2MYskBveyaxt
39
+ Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
40
+ voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
40
41
  -----END CERTIFICATE-----
41
- date: 2022-08-06 00:00:00.000000000 Z
42
+ date: 2024-06-26 00:00:00.000000000 Z
42
43
  dependencies:
43
- - !ruby/object:Gem::Dependency
44
- name: async-container
45
- requirement: !ruby/object:Gem::Requirement
46
- requirements:
47
- - - "~>"
48
- - !ruby/object:Gem::Version
49
- version: '0.16'
50
- type: :runtime
51
- prerelease: false
52
- version_requirements: !ruby/object:Gem::Requirement
53
- requirements:
54
- - - "~>"
55
- - !ruby/object:Gem::Version
56
- version: '0.16'
57
44
  - !ruby/object:Gem::Dependency
58
45
  name: console
59
46
  requirement: !ruby/object:Gem::Requirement
@@ -110,62 +97,6 @@ dependencies:
110
97
  - - "~>"
111
98
  - !ruby/object:Gem::Version
112
99
  version: '1.2'
113
- - !ruby/object:Gem::Dependency
114
- name: bake-bundler
115
- requirement: !ruby/object:Gem::Requirement
116
- requirements:
117
- - - ">="
118
- - !ruby/object:Gem::Version
119
- version: '0'
120
- type: :development
121
- prerelease: false
122
- version_requirements: !ruby/object:Gem::Requirement
123
- requirements:
124
- - - ">="
125
- - !ruby/object:Gem::Version
126
- version: '0'
127
- - !ruby/object:Gem::Dependency
128
- name: bundler
129
- requirement: !ruby/object:Gem::Requirement
130
- requirements:
131
- - - ">="
132
- - !ruby/object:Gem::Version
133
- version: '0'
134
- type: :development
135
- prerelease: false
136
- version_requirements: !ruby/object:Gem::Requirement
137
- requirements:
138
- - - ">="
139
- - !ruby/object:Gem::Version
140
- version: '0'
141
- - !ruby/object:Gem::Dependency
142
- name: covered
143
- requirement: !ruby/object:Gem::Requirement
144
- requirements:
145
- - - ">="
146
- - !ruby/object:Gem::Version
147
- version: '0'
148
- type: :development
149
- prerelease: false
150
- version_requirements: !ruby/object:Gem::Requirement
151
- requirements:
152
- - - ">="
153
- - !ruby/object:Gem::Version
154
- version: '0'
155
- - !ruby/object:Gem::Dependency
156
- name: rspec
157
- requirement: !ruby/object:Gem::Requirement
158
- requirements:
159
- - - "~>"
160
- - !ruby/object:Gem::Version
161
- version: '3.6'
162
- type: :development
163
- prerelease: false
164
- version_requirements: !ruby/object:Gem::Requirement
165
- requirements:
166
- - - "~>"
167
- - !ruby/object:Gem::Version
168
- version: '3.6'
169
100
  description:
170
101
  email:
171
102
  executables: []
@@ -176,10 +107,13 @@ files:
176
107
  - lib/guard/falcon/plugin.rb
177
108
  - lib/guard/falcon/templates/Guardfile
178
109
  - lib/guard/falcon/version.rb
110
+ - license.md
111
+ - readme.md
179
112
  homepage: https://github.com/socketry/guard-falcon
180
113
  licenses:
181
114
  - MIT
182
- metadata: {}
115
+ metadata:
116
+ source_code_uri: https://github.com/socketry/guard-falcon.git
183
117
  post_install_message:
184
118
  rdoc_options: []
185
119
  require_paths:
@@ -188,14 +122,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
188
122
  requirements:
189
123
  - - ">="
190
124
  - !ruby/object:Gem::Version
191
- version: '0'
125
+ version: '3.1'
192
126
  required_rubygems_version: !ruby/object:Gem::Requirement
193
127
  requirements:
194
128
  - - ">="
195
129
  - !ruby/object:Gem::Version
196
130
  version: '0'
197
131
  requirements: []
198
- rubygems_version: 3.3.7
132
+ rubygems_version: 3.5.11
199
133
  signing_key:
200
134
  specification_version: 4
201
135
  summary: A guard plugin to run an instance of the falcon web server.
metadata.gz.sig CHANGED
Binary file