switchvoxFix 0.1.3 → 0.1.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/lib/switchvoxFix/base.rb +2 -1
- data/lib/switchvoxFix/version.rb +1 -1
- data/lib/switchvoxFix.rb +1 -1
- data/switchvoxFix.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4721bf969a9eeea469d35547c057cb8b58424233
|
4
|
+
data.tar.gz: 87342815588b6b42f79e8d1502a3aba538fabc4e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9125d255c717a9928ed22728540faa5e35c4eb54aa6e9cef060a93033e8b5b2bd13f5ca6d52bf0f71a01a476990a0721a2462398f7ffa22a4e98f55db75a8323
|
7
|
+
data.tar.gz: 9987a1724a62bea20c5d02fa788d1a6e35a098c4ccb504c2cb33200054e13baac07371a69083b1b7f40fe2b38a694a979566bb1a1e6af4c795eb334e38307275
|
data/lib/switchvoxFix/base.rb
CHANGED
@@ -34,7 +34,7 @@ class Base
|
|
34
34
|
attr :debug, true
|
35
35
|
attr :auth_header, true
|
36
36
|
|
37
|
-
def initialize(host, user, pass, options={})
|
37
|
+
def initialize(host, user, pass, port, options={})
|
38
38
|
{:debug => false}.merge! options
|
39
39
|
@debug = options[:debug]
|
40
40
|
|
@@ -42,6 +42,7 @@ class Base
|
|
42
42
|
@user = user
|
43
43
|
@pass = pass
|
44
44
|
@url = URI.parse("https://" + @host + URL)
|
45
|
+
@url.port = port
|
45
46
|
@ssl = false
|
46
47
|
@ssl = true if @url.scheme == "https"
|
47
48
|
|
data/lib/switchvoxFix/version.rb
CHANGED
data/lib/switchvoxFix.rb
CHANGED
data/switchvoxFix.gemspec
CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Mitchell Thompson"]
|
10
10
|
spec.email = ["mthompson@unitas-inc.com"]
|
11
11
|
spec.summary = "Fixed issues with outdated gem"
|
12
|
-
spec.description = "
|
12
|
+
spec.description = "Updated a gem that no longer worked. Probably won't keep it updated though."
|
13
13
|
spec.homepage = "https://github.com/wrenchell/switchvoxFix"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: switchvoxFix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mitchell Thompson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,7 +38,8 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
|
-
description:
|
41
|
+
description: Updated a gem that no longer worked. Probably won't keep it updated
|
42
|
+
though.
|
42
43
|
email:
|
43
44
|
- mthompson@unitas-inc.com
|
44
45
|
executables: []
|