union_station_hooks_core 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +1 -1
- data/lib/union_station_hooks_core/version_data.rb +2 -2
- data/union_station_hooks_core.gemspec +23 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MmJiODdmYzU4ZGE4NDZmZjYyMDRiNGI4NmE4ZjE1Njk0MzE0OGVhNw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YzA4NDM4NGQzMWM5MWU0NzE4OTIyNDQ1MGMyMGNmZDFkYjQ4YjM1Mg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YzZkYjIwYjI0MmJmYjRiMjU5Zjc4OTFlOTVmNWUwMzhiMzVhZDJkZjhmNGQ1
|
10
|
+
NGExMDI2ZDVjYmEwMDM1NDY0N2I5MDM0YjQ2YWUwNWFmNDk0ZmZlMjA3NmE1
|
11
|
+
MzZkNGYyMTUyYmU1NjI3YTA0YzVhNDIzZTI3NDYyOWIxYzg3MGU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTkyNzY1OWYwYjJlNDA5Y2NjZWE1ZGM3YWU1YzVlMzU1MGQwODZjNGJkODhm
|
14
|
+
NWZhMGE2NmJkOGU0YjJjMzE0Mzk5MjJiZTQ1ZTJlZjYzNmQ4ZDQ0M2Y4ODI5
|
15
|
+
ZGUwYWUyNDVjMzliNDViMDcwNTZmMTQ1Mzc1YWE0MGMzMTg5N2Y=
|
data/README.md
CHANGED
@@ -72,7 +72,7 @@ When you have this call in place, enable Union Station support in Passenger. Her
|
|
72
72
|
|
73
73
|
### Overriding Passenger's version
|
74
74
|
|
75
|
-
**_Note: Are you using `union_station_hooks_rails`?
|
75
|
+
**_Note: Are you using `union_station_hooks_rails`? Read [these instructions](https://github.com/phusion/union_station_hooks_rails#overriding-passengers-version) instead._**
|
76
76
|
|
77
77
|
Each version of Passenger bundles its own version of the `union_station_hooks_core` gem. The Passenger maintainers regularly update their bundled version with the latest version. Sometimes, you may wish to use a specific version of `union_station_hooks_core`, overriding the version that came bundled with Passenger. For example, we have may published a new version of `union_station_hooks_core` with some bug fixes, even though Passenger hasn't been updated yet.
|
78
78
|
|
@@ -0,0 +1,23 @@
|
|
1
|
+
version_file = File.expand_path('lib/union_station_hooks_core/version_data.rb', File.dirname(__FILE__))
|
2
|
+
version_data = eval(File.read(version_file))
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = "union_station_hooks_core"
|
6
|
+
s.version = version_data[:string]
|
7
|
+
s.authors = ["Hongli Lai"]
|
8
|
+
s.description = "Union Station Ruby hooks core code."
|
9
|
+
s.summary = "Union Station Ruby hooks core code"
|
10
|
+
s.email = "info@phusion.nl"
|
11
|
+
s.license = "MIT"
|
12
|
+
s.files = Dir[
|
13
|
+
"README.md",
|
14
|
+
"LICENSE.md",
|
15
|
+
"*.gemspec",
|
16
|
+
"lib/**/*"
|
17
|
+
]
|
18
|
+
s.homepage = "https://github.com/phusion/union_station_hooks_core"
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
|
21
|
+
# DO NOT ADD ANY FURTHER DEPENDENCIES! See hacking/Vendoring.md,
|
22
|
+
# section "No dependencies", for more information.
|
23
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hongli Lai
|
@@ -36,6 +36,7 @@ files:
|
|
36
36
|
- lib/union_station_hooks_core/utils.rb
|
37
37
|
- lib/union_station_hooks_core/version.rb
|
38
38
|
- lib/union_station_hooks_core/version_data.rb
|
39
|
+
- union_station_hooks_core.gemspec
|
39
40
|
homepage: https://github.com/phusion/union_station_hooks_core
|
40
41
|
licenses:
|
41
42
|
- MIT
|