overlay 2.1.1 → 2.1.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 +4 -4
- data/README.rdoc +2 -0
- data/lib/overlay/github.rb +0 -6
- data/lib/overlay/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b99b4bd6bf5607973d495ab9b54856a980beee66
|
|
4
|
+
data.tar.gz: 858183f15a9cbce320a23da74f1748cdbd4a269e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00f81fb6a53e5c2dcad000d399883f950e4af5deb08c3860c19ffdf38f32fb1cfc0ba4bc8da432c6df58e9612913ffbdbb29575e04cf2128f418810970d4bc31
|
|
7
|
+
data.tar.gz: b696dd67de15284e33f953f53d46a80558f44ce258c67404a66801c45e810a5eeb6e6648d058ba2a4a6ee77f005b733d86fde6efc4ef49936932aa0aa7431f1a
|
data/README.rdoc
CHANGED
|
@@ -52,4 +52,6 @@ Usage
|
|
|
52
52
|
|
|
53
53
|
Once Overlay is configured, on startup, a process will be forked to run the initial pull-down of files from the repository. Overlay will update specific files on change in the repo through use of Github webhooks.
|
|
54
54
|
|
|
55
|
+
If you are using unicorn, you need to be sure to provide host_name and host_port if using self-subscription for Github webhooks.
|
|
56
|
+
|
|
55
57
|
This project rocks and uses MIT-LICENSE.
|
data/lib/overlay/github.rb
CHANGED
|
@@ -24,12 +24,6 @@ module Overlay
|
|
|
24
24
|
# This function should be called only at initialization time as it causes a
|
|
25
25
|
# full overlay to be run
|
|
26
26
|
def process_overlays
|
|
27
|
-
# This can be called in an application initializer which will
|
|
28
|
-
# load anytime the environment is loaded. Make sure we are prepared to run
|
|
29
|
-
# this.
|
|
30
|
-
#
|
|
31
|
-
return unless (config.host_port || ENV['SERVER_HOST_PORT'] || defined? Rails::Server)
|
|
32
|
-
|
|
33
27
|
Overlay.configuration.repositories.each do |repo_config|
|
|
34
28
|
next unless repo_config.class == GithubRepo
|
|
35
29
|
|
data/lib/overlay/version.rb
CHANGED