rhebok 0.2.0 → 0.2.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 352364eef1390ca74ce23d703ef8b1e0c5f61973
4
- data.tar.gz: 124b53abfdbb2c8b3b419e1de3b19ef32d579ea7
3
+ metadata.gz: 886e07e01529cc5371bbca869048f569ec23c2b1
4
+ data.tar.gz: 9af6f543aa8af1c31d5a7844f061321a074460f0
5
5
  SHA512:
6
- metadata.gz: eb08e008694d337388b70d95d6d00bbe4e58df13c74818af1b9f5b4965e7129867cca5a84eac30b7bf46d233bcc7066d8aef9ef05d5b292a8af9c130b5d2f2fc
7
- data.tar.gz: 051d9924237070aa7745f2b3daec76738c851cbc3ae70ab543158d6cba6557d6c8369fb0bb19b11073d04f23c06b8a18da56f6669690cfdef1a4efc95085c867
6
+ metadata.gz: 0b9e5c8124a08ed80d565e886af090515613cf438a8d74595e7ef0b3f0f5b1b25aeba0c2aa58d7da3452727cf73b06466b740c619a8fc2b93b21064009e4363f
7
+ data.tar.gz: fcecc2575e1fc790b8a04670c4a1b28d3f8e372a6892acde185f59a06ac17be00917b9caab1467988f54ed3d6701350b5dff7cb75687e8f60ef1a2e69a6d81bd
@@ -6,4 +6,4 @@ install:
6
6
  rvm:
7
7
  - 2.0.0
8
8
  - 2.1.5
9
- - 2.2.0-rc1
9
+ - 2.2.0
data/Changes CHANGED
@@ -1,3 +1,7 @@
1
+ 0.2.1 2014-12-27T01:26:47Z
2
+
3
+ - fix segfault. header includes "\n"
4
+
1
5
  0.2.0 2014-12-26T11:40:23Z
2
6
 
3
7
  - support ConfigFile
data/README.md CHANGED
@@ -54,7 +54,7 @@ nginx.conf
54
54
 
55
55
  command line of running Rhebok
56
56
 
57
- $ start_server --path /path/to/app.sock --backlog 16384 -- rackup -s Rhebok \
57
+ $ rackup -s Rhebok -O Path=/path/to/app.sock \
58
58
  -O MaxWorkers=5 -O MaxRequestPerChild=1000 -E production config.ru
59
59
 
60
60
  ## Options
@@ -180,6 +180,7 @@ proc object. This block will be called by a worker process after forking
180
180
 
181
181
  - TERM: If the worker process received TERM, exit after finishing current request
182
182
 
183
+
183
184
  ## Benchmark
184
185
 
185
186
  Rhebok and Unicorn "Hello World" Benchmark (behind nginx reverse proxy)
@@ -177,7 +177,7 @@ static
177
177
  long find_lf(const char* v, ssize_t offset, ssize_t len)
178
178
  {
179
179
  ssize_t i;
180
- for ( i=offset; i != len; ++i) {
180
+ for ( i=offset; i < len; i++) {
181
181
  if (v[i] == 10) {
182
182
  return i;
183
183
  }
@@ -1,3 +1,3 @@
1
1
  class Rhebok
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rhebok
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masahiro Nagano