union_station_hooks_core 1.0.0 → 1.0.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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YThkZmM0ZGI0ZTViOWUxODNkODE4ZDMxZTI1MjM0ZDYxYzk2ODdhNQ==
4
+ MmJiODdmYzU4ZGE4NDZmZjYyMDRiNGI4NmE4ZjE1Njk0MzE0OGVhNw==
5
5
  data.tar.gz: !binary |-
6
- M2Q5NjgyNzI5MGQxZDlkOGIwZGViYjcwMzllMDI2ZjA4YmNjMTkzYQ==
6
+ YzA4NDM4NGQzMWM5MWU0NzE4OTIyNDQ1MGMyMGNmZDFkYjQ4YjM1Mg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NzMxNjZiMDRjY2U3N2I5ZDYzZjcwZjIxMjVhNGM0YWU5ZWJiOGM0ZmI5MjA2
10
- NGU2NmFiMjMxMjdmY2ZmMTQ3MWRhMmM2ZDJkMjYxZjc2MzlhN2EyMjBlYmVm
11
- NGZkOTcyYmVkNDM2MjAwOTZiNDlkYzE1NzZlZTM3YTFhYTUyYTE=
9
+ YzZkYjIwYjI0MmJmYjRiMjU5Zjc4OTFlOTVmNWUwMzhiMzVhZDJkZjhmNGQ1
10
+ NGExMDI2ZDVjYmEwMDM1NDY0N2I5MDM0YjQ2YWUwNWFmNDk0ZmZlMjA3NmE1
11
+ MzZkNGYyMTUyYmU1NjI3YTA0YzVhNDIzZTI3NDYyOWIxYzg3MGU=
12
12
  data.tar.gz: !binary |-
13
- OGJiNTcwNzVlZjZjMzE4NmI1MDdhMjM0MjU3MDg1ZjJiMmI0MDBiNGI1YzVl
14
- N2NiNjJkOWU0ZTU0YmQwNzU0ZGQ3NGZhYTkwNWUxMzVjZjI0NDUxYjJkOTlj
15
- MGJlZTNhODA3NWQyNjMxMDc1ZGNmNWU1MmIyM2NiZmQwMTk2ZjY=
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`? Then be sure sure to follow the "Overriding Passenger's version" instructions in that gem's README, in addition to following the instructions below._**
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
 
@@ -39,6 +39,6 @@
39
39
  {
40
40
  :major => 1,
41
41
  :minor => 0,
42
- :tiny => 0,
43
- :string => '1.0.0'
42
+ :tiny => 1,
43
+ :string => '1.0.1'
44
44
  }
@@ -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.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