stalin 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 +5 -5
- data/VERSION +1 -1
- data/lib/stalin/adapter/unicorn.rb +1 -1
- data/stalin.gemspec +4 -5
- metadata +3 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f573c1d3fa4d4b5247495ab63ef77a0c1f90471e5ab6efb232285c8321b33c82
|
4
|
+
data.tar.gz: 928cfad72a40b1f72b810520c42cc0e30a4f50d95da1cef3978892efada8dad5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8120043d4aeab951066cb0ecc172d437e58072313feacbe2ba6442c7b69a25bb205c4d6c2f7802933ea67eac097c3c1cafa79bcc961adb0fde1d517e25aee0c8
|
7
|
+
data.tar.gz: ea0707661dbb0fcdb7efa233fd3950a219e59c53667bbaccaeb10e611b8fba8a07d597b7aaa76fa7d5bc8cb36ab444eee92cb38d705d13b92e85ebd5d9359e63
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
@@ -9,7 +9,7 @@ module Stalin::Adapter
|
|
9
9
|
# @param [Integer] cycle how frequently to check memory consumption (# requests)
|
10
10
|
# @param [Boolean] verbose log extra information
|
11
11
|
def initialize(app, min=1024**3, max=2*1024**3, cycle=16, verbose=false)
|
12
|
-
super(app, :
|
12
|
+
super(app, :TERM, :QUIT, min, max, cycle, verbose)
|
13
13
|
end
|
14
14
|
end
|
15
15
|
end
|
data/stalin.gemspec
CHANGED
@@ -2,20 +2,19 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: stalin 0.2.
|
5
|
+
# stub: stalin 0.2.1 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "stalin"
|
9
|
-
s.version = "0.2.
|
9
|
+
s.version = "0.2.1"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["Tony Spataro"]
|
14
|
-
s.date = "
|
14
|
+
s.date = "2020-06-11"
|
15
15
|
s.description = "Kill Web application workers based on arbitrary conditions."
|
16
16
|
s.email = "xeger@xeger.net"
|
17
17
|
s.extra_rdoc_files = [
|
18
|
-
"CHANGELOG.md",
|
19
18
|
"LICENSE",
|
20
19
|
"README.md"
|
21
20
|
]
|
@@ -40,7 +39,7 @@ Gem::Specification.new do |s|
|
|
40
39
|
s.homepage = "https://github.com/xeger/stalin"
|
41
40
|
s.licenses = ["MIT"]
|
42
41
|
s.required_ruby_version = Gem::Requirement.new("~> 2.0")
|
43
|
-
s.rubygems_version = "2.
|
42
|
+
s.rubygems_version = "2.5.1"
|
44
43
|
s.summary = "Kill rack"
|
45
44
|
|
46
45
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stalin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tony Spataro
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jeweler
|
@@ -80,26 +80,11 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '1.6'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: puma
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - "~>"
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '2.11'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - "~>"
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '2.11'
|
97
83
|
description: Kill Web application workers based on arbitrary conditions.
|
98
84
|
email: xeger@xeger.net
|
99
85
|
executables: []
|
100
86
|
extensions: []
|
101
87
|
extra_rdoc_files:
|
102
|
-
- CHANGELOG.md
|
103
88
|
- LICENSE
|
104
89
|
- README.md
|
105
90
|
files:
|
@@ -138,8 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
138
123
|
- !ruby/object:Gem::Version
|
139
124
|
version: '0'
|
140
125
|
requirements: []
|
141
|
-
|
142
|
-
rubygems_version: 2.4.5
|
126
|
+
rubygems_version: 3.1.2
|
143
127
|
signing_key:
|
144
128
|
specification_version: 4
|
145
129
|
summary: Kill rack
|