xnlogic 1.0.34 → 1.0.35
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/lib/xnlogic/man/xnlogic +1 -1
- data/lib/xnlogic/man/xnlogic.txt +1 -1
- data/lib/xnlogic/server_profile.rb +14 -5
- data/lib/xnlogic/templates/application/tasks/deploy.rb.tt +4 -0
- data/lib/xnlogic/templates/vagrant/config/vagrant.provision.tt +0 -3
- data/lib/xnlogic/version.rb +1 -1
- 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: e96ed5ea71515b4b8a91fe9f613205baf2206fa9
|
|
4
|
+
data.tar.gz: 36dab148e42ebaf0183a595f9efc5d7efbdc6622
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32d62c885d467422dfd102e63f62a788d87c1a54dab5f3704ea31d413eff19dd2a6d1e744af17176636cea6994fa2a0f42ea6bb28fe2a83fbf4c7ed33c9c4270
|
|
7
|
+
data.tar.gz: c0f52800b89f519ad980b580b66cee1516cb4222800b69835448ea8d38d6a8fffee9d8e2a89d64eab75122d212fe1567fd6fb383b48736e0833c68f32ea5e4b8
|
data/lib/xnlogic/man/xnlogic
CHANGED
data/lib/xnlogic/man/xnlogic.txt
CHANGED
|
@@ -11,8 +11,12 @@ class DeployConfig
|
|
|
11
11
|
|
|
12
12
|
# config_binding is the binding taken from the Capistrano configuration file
|
|
13
13
|
def apply_cap_config(config_binding)
|
|
14
|
-
roles.each
|
|
15
|
-
|
|
14
|
+
roles.each do |role, user|
|
|
15
|
+
config_binding.eval("role #{role.inspect}, #{user.inspect}")
|
|
16
|
+
end
|
|
17
|
+
variables.each do |name, val|
|
|
18
|
+
config_binding.eval("set #{name.inspect}, #{val.inspect}")
|
|
19
|
+
end
|
|
16
20
|
end
|
|
17
21
|
|
|
18
22
|
# Setters
|
|
@@ -82,10 +86,15 @@ if defined?(Capistrano)
|
|
|
82
86
|
end
|
|
83
87
|
|
|
84
88
|
# config_binding is the binding taken from the Capistrano configuration file
|
|
85
|
-
def
|
|
86
|
-
roles.each
|
|
87
|
-
|
|
89
|
+
def apply_cap_config(config_binding)
|
|
90
|
+
roles.each do |role, user|
|
|
91
|
+
config_binding.eval("role #{role.inspect}, #{user.inspect}")
|
|
92
|
+
end
|
|
93
|
+
variables.each do |name, val|
|
|
94
|
+
config_binding.eval("set #{name.inspect}, #{val.inspect}")
|
|
95
|
+
end
|
|
88
96
|
end
|
|
97
|
+
alias apply_config apply_cap_config
|
|
89
98
|
|
|
90
99
|
# Setters
|
|
91
100
|
|
|
@@ -57,9 +57,6 @@ rm xn.dev.tbz
|
|
|
57
57
|
cd xn.dev
|
|
58
58
|
source script/setup_stack
|
|
59
59
|
echo jruby-${jruby_version} > .ruby-version
|
|
60
|
-
cd fe/xn.js
|
|
61
|
-
npm install --loglevel silent
|
|
62
|
-
cd -
|
|
63
60
|
rake --quiet new_tb_version bundle_fe_server fresh_fe_config fe_server_db_init
|
|
64
61
|
|
|
65
62
|
if [ -d $HOME/$XN_CLIENT/assets ]; then
|
data/lib/xnlogic/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xnlogic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.35
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Darrick Wiebe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-03-
|
|
11
|
+
date: 2015-03-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|