unicorn 0.93.0 → 0.93.1
Sign up to get free protection for your applications and to get access to all the features.
- data/GIT-VERSION-GEN +1 -1
- data/GNUmakefile +7 -2
- data/lib/unicorn/const.rb +1 -1
- metadata +2 -2
data/GIT-VERSION-GEN
CHANGED
data/GNUmakefile
CHANGED
@@ -223,24 +223,29 @@ $(release_notes):
|
|
223
223
|
|
224
224
|
# ensures we're actually on the tagged $(VERSION), only used for release
|
225
225
|
verify:
|
226
|
+
test x"$(shell umask)" = x0022
|
226
227
|
git rev-parse --verify refs/tags/v$(VERSION)^{}
|
227
228
|
git diff-index --quiet HEAD^0
|
228
229
|
test `git rev-parse --verify HEAD^0` = \
|
229
230
|
`git rev-parse --verify refs/tags/v$(VERSION)^{}`
|
230
231
|
|
232
|
+
fix-perms:
|
233
|
+
git ls-tree -r HEAD | awk '/^100644 / {print $$NF}' | xargs chmod 644
|
234
|
+
git ls-tree -r HEAD | awk '/^100755 / {print $$NF}' | xargs chmod 755
|
235
|
+
|
231
236
|
gem: $(pkggem)
|
232
237
|
|
233
238
|
install-gem: $(pkggem)
|
234
239
|
gem install $(CURDIR)/$<
|
235
240
|
|
236
|
-
$(pkggem): manifest
|
241
|
+
$(pkggem): manifest fix-perms
|
237
242
|
gem build $(rfpackage).gemspec
|
238
243
|
mkdir -p pkg
|
239
244
|
mv $(@F) $@
|
240
245
|
|
241
246
|
$(pkgtgz): distdir = $(basename $@)
|
242
247
|
$(pkgtgz): HEAD = v$(VERSION)
|
243
|
-
$(pkgtgz): manifest
|
248
|
+
$(pkgtgz): manifest fix-perms
|
244
249
|
@test -n "$(distdir)"
|
245
250
|
$(RM) -r $(distdir)
|
246
251
|
mkdir -p $(distdir)
|
data/lib/unicorn/const.rb
CHANGED
@@ -7,7 +7,7 @@ module Unicorn
|
|
7
7
|
# gave about a 3% to 10% performance improvement over using the strings directly.
|
8
8
|
# Symbols did not really improve things much compared to constants.
|
9
9
|
module Const
|
10
|
-
UNICORN_VERSION="0.93.
|
10
|
+
UNICORN_VERSION="0.93.1"
|
11
11
|
|
12
12
|
DEFAULT_HOST = "0.0.0.0" # default TCP listen host address
|
13
13
|
DEFAULT_PORT = 8080 # default TCP listen port
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unicorn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.93.
|
4
|
+
version: 0.93.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Wong
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-10-
|
12
|
+
date: 2009-10-03 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|