union_station_hooks_core 1.0.1 → 1.0.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.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZGU3MGNhZGUwZjEzYzZkMzM1OTk1ZmExZTg0MjQ3MzlmZTNjZDdkZQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZjY4NzI5MTJjZDIxOWJhZTQ2OWZiNTk2ZWYzYWUyODEyYzlkYTNhZQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ODk1YzBlZTM4ZmI4MjllMGZjODkxZTkzY2NkOTI2MTJhZjc5YjM4YjUxYjcy
|
10
|
+
MmVlZTI0MDBmZGZjOGFjNzgzN2NhMjRmNWZkMWI4NWNhZmY4YjhlNWRhZjcy
|
11
|
+
N2JlZDYzNGE2NGFhN2YwOTQ4NmJhZDc2ZWVlODcyODRlNWExMzI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ODQ1MDQ4MGRjNjhjMjBjMWUxMzliMTA5ODZjNDM5ODIxMzA0N2JmYTcxOTc0
|
14
|
+
ZjFmODdjMjcyYjZjZjQ5NzNiYWQ5YjMyNTc2OTg4Y2UzOGZhOGQ1NjgyMjRh
|
15
|
+
YTNhMGI1OTFmOGM0NDFhNTQ5YTc1ZDM4NjE3ZTg4YjVmZGI0MmY=
|
@@ -235,9 +235,9 @@ module UnionStationHooks
|
|
235
235
|
private
|
236
236
|
|
237
237
|
RANDOM_CHARS = %w(
|
238
|
-
|
239
|
-
|
240
|
-
|
238
|
+
a b c d e f g h i j k l m n o p q r s t u v w x y z
|
239
|
+
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
|
240
|
+
0 1 2 3 4 5 6 7 8 9
|
241
241
|
)
|
242
242
|
|
243
243
|
def connect
|
@@ -56,12 +56,8 @@ module UnionStationHooks
|
|
56
56
|
def find_passenger_config
|
57
57
|
passenger_config = ENV['PASSENGER_CONFIG']
|
58
58
|
if passenger_config.nil? || passenger_config.empty?
|
59
|
-
|
60
|
-
|
61
|
-
passenger_config = "#{path}/passenger-config"
|
62
|
-
break
|
63
|
-
end
|
64
|
-
end
|
59
|
+
passenger_config = find_passenger_config_vendor ||
|
60
|
+
find_passenger_config_in_path
|
65
61
|
end
|
66
62
|
if passenger_config.nil? || passenger_config.empty?
|
67
63
|
abort 'ERROR: The unit tests are to be run against a specific ' \
|
@@ -73,6 +69,28 @@ module UnionStationHooks
|
|
73
69
|
passenger_config
|
74
70
|
end
|
75
71
|
|
72
|
+
# Looks for the passenger-config command in PATH, returning nil
|
73
|
+
# if not found.
|
74
|
+
def find_passenger_config_in_path
|
75
|
+
ENV['PATH'].split(':').each do |path|
|
76
|
+
if File.exist?("#{path}/passenger-config")
|
77
|
+
return "#{path}/passenger-config"
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
# Checks whether this union_station_hooks installation is a copy that
|
83
|
+
# is vendored into Passenger, and if so, returns the full path to the
|
84
|
+
# containing Passenger's passenger-config command.
|
85
|
+
def find_passenger_config_vendor
|
86
|
+
path = "#{UnionStationHooks::ROOT}/../../../../../bin/passenger-config"
|
87
|
+
if File.exist?(path)
|
88
|
+
File.expand_path(path)
|
89
|
+
else
|
90
|
+
nil
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
76
94
|
# Uses `find_passenger_config` to lookup a Passenger installation, and
|
77
95
|
# loads the Passenger Ruby support library associated with that
|
78
96
|
# installation. All the constants defined in the Passenger Ruby support
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: union_station_hooks_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hongli Lai
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-09-
|
11
|
+
date: 2015-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Union Station Ruby hooks core code.
|
14
14
|
email: info@phusion.nl
|