alicorn 0.4.2.pre2 → 0.4.2
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.
- data/CHANGELOG.txt +9 -0
- data/alicorn.gemspec +2 -2
- data/lib/alicorn/version.rb +1 -1
- metadata +5 -5
data/CHANGELOG.txt
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
=== 0.4.2 / 2013-06-18
|
|
2
|
+
|
|
3
|
+
* Correcting two issues with the 0.4.0 and 0.4.1 releases. One issue was
|
|
4
|
+
improper parsing of listener-type and listener-address arguments,
|
|
5
|
+
causing alicorn to improperly use the defaults (which usually result in
|
|
6
|
+
a very over-provisioned unicorn). The other issue was improper arguments
|
|
7
|
+
for Raindrops::Linux.unix_listener_stats, causing a fatal error (but
|
|
8
|
+
prevented from occurring entirely by the former issue.
|
|
9
|
+
|
|
1
10
|
=== 0.4.1 / 2013-06-12
|
|
2
11
|
|
|
3
12
|
* Minor release to correct an issue with the 0.4.0 gemspec.
|
data/alicorn.gemspec
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "alicorn"
|
|
8
|
-
s.version = "0.4.2
|
|
8
|
+
s.version = "0.4.2"
|
|
9
9
|
|
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new("
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Ben Somers"]
|
|
12
12
|
s.date = "2013-06-18"
|
|
13
13
|
s.description = "Highly configurable dumb auto-scaler for managing unicorn web servers"
|
data/lib/alicorn/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alicorn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.2
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.4.2
|
|
5
|
+
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Ben Somers
|
|
@@ -173,13 +173,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
173
173
|
version: '0'
|
|
174
174
|
segments:
|
|
175
175
|
- 0
|
|
176
|
-
hash:
|
|
176
|
+
hash: 3456050264605022836
|
|
177
177
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
178
|
none: false
|
|
179
179
|
requirements:
|
|
180
|
-
- - ! '
|
|
180
|
+
- - ! '>='
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
|
-
version:
|
|
182
|
+
version: '0'
|
|
183
183
|
requirements: []
|
|
184
184
|
rubyforge_project:
|
|
185
185
|
rubygems_version: 1.8.25
|