pauper 0.1.9 → 0.1.10
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/pauper.rb +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0a783b50cc1523225d57315f8e14e7c5e08c1246
|
|
4
|
+
data.tar.gz: 28aef07728592bb4075a095fefe2fe311eb61ea3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e633a155b4c530d7b2f985e515d15a4cf5eb9dd64ac2a6ac71888a353792802fbf3375ea2f689dfd14b348ddb4e545031fa4e4812c35d3aa7140ac39f0c8b232
|
|
7
|
+
data.tar.gz: 472bbff01d5cf69925bd831c628260aa78921786e233ba40087913ed399f58f60d30e90a73d7df8de78b8c40b856b431e6ee91b46296189154a632650b4c0d1e
|
data/lib/pauper.rb
CHANGED
|
@@ -129,6 +129,7 @@ class Pauper
|
|
|
129
129
|
client_erb = ERB.new <<EOF
|
|
130
130
|
node_name "<%= chef_node %>"
|
|
131
131
|
chef_server_url "<%= config[:chef_server_url] %>"
|
|
132
|
+
search_url "<%= config[:search_url] %>"
|
|
132
133
|
validation_client_name "<%= config[:validation_client_name] %>"
|
|
133
134
|
environment "<%= config[:chef_environment] %>"
|
|
134
135
|
verbose_logging false
|
|
@@ -1064,6 +1065,10 @@ end
|
|
|
1064
1065
|
@config[:chef_server_url] = url
|
|
1065
1066
|
end
|
|
1066
1067
|
|
|
1068
|
+
def search_url(url)
|
|
1069
|
+
@config[:search_url] = url
|
|
1070
|
+
end
|
|
1071
|
+
|
|
1067
1072
|
def validation_key_path(path)
|
|
1068
1073
|
@config[:validation_key_path] = File.expand_path(path)
|
|
1069
1074
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pauper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tyler McMullen
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-07-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: thor
|
|
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
103
|
version: '0'
|
|
104
104
|
requirements: []
|
|
105
105
|
rubyforge_project:
|
|
106
|
-
rubygems_version: 2.0.
|
|
106
|
+
rubygems_version: 2.0.3
|
|
107
107
|
signing_key:
|
|
108
108
|
specification_version: 4
|
|
109
109
|
summary: A semi-sane way to manage a multi-vm dev environment
|