luban-rack 0.2.3 → 0.2.4
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/CHANGELOG.md +6 -0
- data/lib/luban/deployment/applications/rack/base.rb +0 -2
- data/lib/luban/deployment/applications/rack/publisher.rb +22 -0
- data/lib/luban/deployment/applications/rack/version.rb +1 -1
- data/lib/luban/deployment/applications/rack.rb +1 -0
- data/luban-rack.gemspec +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d2b94d24a261808588fca9aac2dd5995346a2d3a
|
4
|
+
data.tar.gz: 41457a67d742b626ddda831c496385d11a4632cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72ed31acaee4770d592211e2fc5fd198ae496097459a1805e60f4d1359907d7e87930f9cf19134cc2774495092d13289acbb13d39c0e3b379f32fe8faac48eff
|
7
|
+
data.tar.gz: 39823dae4458b068cedaa2f92f22f9d29ff30af0b2d6c3f3574721a36c1fc38194f6c8cb2fe0b9fd0c5a3de8b353239a3d8322ac254760fe31bf980defbddb4e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
+
## Version 0.2.4 (Aug 30, 2016)
|
4
|
+
|
5
|
+
Minor enhancements:
|
6
|
+
* Changed linked_dirs/linked_files setup to Publisher
|
7
|
+
* As a result, bump up the gem dependency of Luban to version 0.7.5
|
8
|
+
|
3
9
|
## Version 0.2.3 (Aug 22, 2016)
|
4
10
|
|
5
11
|
Minor enhancements:
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module Luban
|
2
|
+
module Deployment
|
3
|
+
module Applications
|
4
|
+
class Rack
|
5
|
+
class Publisher < Luban::Deployment::Application::Publisher
|
6
|
+
protected
|
7
|
+
|
8
|
+
def init
|
9
|
+
super
|
10
|
+
linked_dirs.push('sockets')
|
11
|
+
linked_files.push('puma.rb', 'thin.yml')
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
data/luban-rack.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.require_paths = ["lib"]
|
21
21
|
|
22
22
|
spec.required_ruby_version = ">= 2.1.0"
|
23
|
-
spec.add_dependency 'luban', ">= 0.7.
|
23
|
+
spec.add_dependency 'luban', ">= 0.7.5"
|
24
24
|
|
25
25
|
spec.add_development_dependency "bundler", "~> 1.12"
|
26
26
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: luban-rack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rubyist Chi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: luban
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.7.
|
19
|
+
version: 0.7.5
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.7.
|
26
|
+
version: 0.7.5
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,6 +88,7 @@ files:
|
|
88
88
|
- lib/luban/deployment/applications/rack/configurator.rb
|
89
89
|
- lib/luban/deployment/applications/rack/controller.rb
|
90
90
|
- lib/luban/deployment/applications/rack/paths.rb
|
91
|
+
- lib/luban/deployment/applications/rack/publisher.rb
|
91
92
|
- lib/luban/deployment/applications/rack/templates/puma/puma.logrotate.erb
|
92
93
|
- lib/luban/deployment/applications/rack/templates/puma/puma.monitrc.erb
|
93
94
|
- lib/luban/deployment/applications/rack/templates/puma/puma.nginx.http.proxy.conf.erb
|