runcible 2.6.0 → 2.7.0
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/runcible/models/iso_distributor.rb +4 -2
- data/lib/runcible/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4ad096ea03cb206fe4e61a0fda1068c06eb6556
|
4
|
+
data.tar.gz: a020b43e9e6704ee1a0094b5ac9ee4d8d8a785f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5bd9a7ce0fa576d94065d415ce97a81a2fb7716889d807d3b328a5e765cf6f46de4896e1546137728613b451e867431cc29f6f604b0ab7db0a7388e09b47061
|
7
|
+
data.tar.gz: 9b1f955c1f5d931620cafcb250afc3299f77cb5173210674c849ace47164737bc2711a4f467ce8b0659ffaf3d2709a0a34975c984dafe4347d37ecd341d8743d
|
@@ -5,14 +5,16 @@ module Runcible
|
|
5
5
|
module Models
|
6
6
|
class IsoDistributor < Distributor
|
7
7
|
#required attributes
|
8
|
-
attr_accessor 'serve_http', 'serve_https'
|
8
|
+
attr_accessor 'relative_url', 'serve_http', 'serve_https'
|
9
9
|
|
10
10
|
# Instantiates an iso distributor
|
11
11
|
#
|
12
|
+
# @param [path] relative URL
|
12
13
|
# @param [boolean] http serve the contents over http
|
13
14
|
# @param [boolean] https serve the contents over https
|
14
15
|
# @return [Runcible::Extensions::IsoDistributor]
|
15
|
-
def initialize(http, https, options = {})
|
16
|
+
def initialize(relative_url, http, https, options = {})
|
17
|
+
@relative_url = relative_url
|
16
18
|
@serve_http = http
|
17
19
|
@serve_https = https
|
18
20
|
super(options)
|
data/lib/runcible/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: runcible
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric D Helms, Justin Sherrill
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -206,9 +206,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
206
206
|
version: '0'
|
207
207
|
requirements: []
|
208
208
|
rubyforge_project:
|
209
|
-
rubygems_version: 2.4.
|
209
|
+
rubygems_version: 2.4.6
|
210
210
|
signing_key:
|
211
211
|
specification_version: 4
|
212
212
|
summary: ''
|
213
213
|
test_files: []
|
214
|
-
has_rdoc:
|