falcon 0.34.2 → 0.34.3

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: e27ef3b325485067a1d263e9365adfde042abceab01919e19cb0de8393118f7d
4
- data.tar.gz: 3f64ed8607f6df9501438a97be2074ddcba3b54a261ac46f1977f1fdcd2d2fe1
3
+ metadata.gz: ab5e0190fc53293e70feae142083e0485e2de94c9898b1723bc707ba00fc7ffa
4
+ data.tar.gz: 26184cc3d3816d43cdeb375d4a0057b0d52c128a0febe4c8724de1cf4a85449f
5
5
  SHA512:
6
- metadata.gz: 75b5571a981eb452bf124ef06b562deb6865ae7da3062def8d88514d0db6a1d2d34ba7e79a0402d0122f1471dc04ea7b6d3f60d0f1e194c4702319e437f74cb3
7
- data.tar.gz: 360fbcdf64e10a0dabe2df35804172dabe595096932f6acedb188e161119d02cc84beab1d8b6ec71aabc22dae8946629c71b8fff2d69e6bb887696934ba07a89
6
+ metadata.gz: dbf2ef731d8a70da42014fe278139ed7b6e4cf06e367d44173bf232ed8d122666afd1428773db72dec098434f03391b4ab1aaf7bfa516fa41c3b9409fc014362
7
+ data.tar.gz: d573a2979a1f182fd42b4026863f21e1c8c19b81faab0f68c8393c232ecf52b2d9a89c080e105f24d79dee16e8213f481a6ce9df3fd3129b6ec98751b488682b
data/README.md CHANGED
@@ -294,6 +294,14 @@ If you want to donate to this project, you may do so using [BitCoin](https://www
294
294
 
295
295
  We take the security of our systems seriously, and we value input from the security community. The disclosure of security vulnerabilities helps us ensure the security and privacy of our users. If you believe you've found a security vulnerability in one of our products or platforms please [tell us via email](mailto:security@oriontransfer.net).
296
296
 
297
+ ## Websites using Falcon
298
+
299
+ Websites below are listed in alphabetical order.
300
+
301
+ - iCook - [https://icook.tw](https://icook.tw)
302
+
303
+ You're welcome to file a PR if you want to add your sites here.
304
+
297
305
  ## License
298
306
 
299
307
  Released under the MIT license.
File without changes
@@ -77,7 +77,7 @@ module Falcon
77
77
  http_key = "HTTP_#{key.upcase.tr('-', '_')}"
78
78
 
79
79
  if current_value = env[http_key]
80
- env[http_key] = "#{current_value}\n#{value}"
80
+ env[http_key] = "#{current_value};#{value}"
81
81
  else
82
82
  env[http_key] = value
83
83
  end
@@ -92,11 +92,6 @@ module Falcon
92
92
 
93
93
  def add(name, *parents, &block)
94
94
  raise KeyError.new("#{name} is already set", key: name) if @environments.key?(name)
95
-
96
- environments = parents.map{|name| @environments.fetch(name)}
97
-
98
- parent = Build::Environment.combine(*environments)
99
-
100
95
  @environments[name] = merge(name, *parents, &block)
101
96
  end
102
97
 
@@ -143,7 +138,7 @@ module Falcon
143
138
 
144
139
  parent = Build::Environment.combine(*environments)
145
140
 
146
- return Build::Environment.new(parent, name: name, &block)
141
+ Build::Environment.new(parent, name: name, &block)
147
142
  end
148
143
  end
149
144
  end
@@ -19,5 +19,5 @@
19
19
  # THE SOFTWARE.
20
20
 
21
21
  module Falcon
22
- VERSION = "0.34.2"
22
+ VERSION = "0.34.3"
23
23
  end
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.34.2
4
+ version: 0.34.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: 2019-08-11 00:00:00.000000000 Z
11
+ date: 2019-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async
@@ -316,7 +316,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
316
316
  - !ruby/object:Gem::Version
317
317
  version: '0'
318
318
  requirements: []
319
- rubygems_version: 3.0.3
319
+ rubygems_version: 3.0.4
320
320
  signing_key:
321
321
  specification_version: 4
322
322
  summary: A fast, asynchronous, rack-compatible web server.