luban-rack 0.2.5 → 0.2.6
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 +7 -1
- data/lib/luban/deployment/applications/rack/base.rb +7 -0
- data/lib/luban/deployment/applications/rack/configurator.rb +1 -0
- data/lib/luban/deployment/applications/rack/controller.rb +1 -0
- data/lib/luban/deployment/applications/rack/publisher.rb +2 -0
- data/lib/luban/deployment/applications/rack/version.rb +1 -1
- data/lib/luban/deployment/applications/rack/web_server.rb +0 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e4dbb78382653dc3a7bd7810fd9a229f56c1ee88
|
|
4
|
+
data.tar.gz: 8c13742326db0c9346587c867a1914f2d9ccafc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6130e86d0ec042a4345e8f0d96f17e1430c1287dd6345e0b28538a4c58e73c8c8e9d38450ad67b4a3c8e9a3d1e34e935224c1e33279c0fa7bc97e143e471381b
|
|
7
|
+
data.tar.gz: 26f6b502fa09122af638e19c47389e36b15168311a389474d7ca2104fd9dd280208785a3628a6d5c0a6a5c851c860eee215e3f896088d54788f5c7de94a7ab74
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change log
|
|
2
2
|
|
|
3
|
+
## Version 0.2.6 (Sept 04, 2016)
|
|
4
|
+
|
|
5
|
+
Bug fixes:
|
|
6
|
+
* Overloaded #shell_command_prefix method in all worker classes
|
|
7
|
+
*
|
|
8
|
+
|
|
3
9
|
## Version 0.2.5 (Sept 01, 2016)
|
|
4
10
|
|
|
5
11
|
Minor enhancements:
|
|
@@ -75,4 +81,4 @@ New features:
|
|
|
75
81
|
|
|
76
82
|
New features:
|
|
77
83
|
* Initialized Luban deployment application for Rack
|
|
78
|
-
* Added support for web server Thin
|
|
84
|
+
* Added support for web server Thin
|
|
@@ -4,6 +4,13 @@ module Luban
|
|
|
4
4
|
class Rack < Luban::Deployment::Application
|
|
5
5
|
using Luban::CLI::CoreRefinements
|
|
6
6
|
|
|
7
|
+
module Common
|
|
8
|
+
def shell_command_prefix
|
|
9
|
+
@shell_command_prefix ||=
|
|
10
|
+
has_gemfile? ? (super << "#{bundle_executable} exec") : super
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
7
14
|
module Parameters
|
|
8
15
|
extend Luban::Deployment::Parameters::Base
|
|
9
16
|
|
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.6
|
|
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-09-
|
|
11
|
+
date: 2016-09-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: luban
|