jekyll-importmap 0.1.3 → 0.1.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ead9e5ef88119687765f61cdfd463ee731c94b78864a29f63220ea3ecc694336
4
- data.tar.gz: b0844196067dbb1cd631738fcbdb1d909c118827bafe441fee55dfc74e8412f1
3
+ metadata.gz: f4d3e32e67c8bbd4f9c741fac224eed261d9a2de798f70b3d4c5ed7614ae8f7e
4
+ data.tar.gz: df0448d2695ae924457b9f02cbe9fbb81a3d007e35efb12c4956f7f3ae3db0f8
5
5
  SHA512:
6
- metadata.gz: ebfa452243f27acd9b091051d57b9ef21f670c979e06b5257f2b5384d7bb32901c4efc098341313c708adf0036822495753a2c877cd51a32ffc7cd6e82038c5a
7
- data.tar.gz: ef39d2ea8b94d535658dd910c11daef2856e222c5a07aa5babc5a51ee7efa47266f6086015633c6284c2aaa02b2ebe2b0e4b55d6df111c2d61144bcc507f00d0
6
+ metadata.gz: a844ed6530e64213327adce53c34f6f7590760c531d3d8e234aa52497e4b9d7ac661c49a0cf76f0f9e11d84a17a183c55760d27a452b92891760c7eef179c53d
7
+ data.tar.gz: 457bc63b81735fc0355eeff51fc5e903a9392183afc7687ffecfdb6b6fca4915ea27a532602217015f36310c11555215af73ddfb23dbe833d38e1198f192f32a
@@ -10,7 +10,7 @@ module Jekyll::Importmap
10
10
  if Jekyll.configuration['url']
11
11
  Jekyll.configuration['url']
12
12
  else
13
- Jekyll.configuration['host']
13
+ Jekyll.configuration['host'] + ':' + Jekyll.configuration['port']
14
14
  end
15
15
  end
16
16
  def self.base_url
@@ -20,16 +20,17 @@ module Jekyll::Importmap
20
20
  ''
21
21
  end
22
22
  end
23
- def self.port
24
- if Jekyll.configuration['port'] && Jekyll.configuration['port'].length > 0
25
- ':' + Jekyll.configuration['port']
26
- else
27
- ''
28
- end
29
- end
23
+ #def self.port
24
+ #if Jekyll.configuration['port'] && Jekyll.configuration['port'].length > 0
25
+ #':' + Jekyll.configuration['port']
26
+ #else
27
+ #''
28
+ #end
29
+ #end
30
30
 
31
31
  def self.url
32
- self.host_or_url + self.port + self.base_url
32
+ #self.host_or_url + self.port + self.base_url
33
+ self.host_or_url + self.base_url
33
34
  end
34
35
  end
35
36
  end
@@ -5,6 +5,6 @@ module Liquid; class Tag; end; end
5
5
 
6
6
  module Jekyll
7
7
  class ImportmapTag < Liquid::Tag
8
- VERSION = "0.1.3"
8
+ VERSION = "0.1.5"
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-importmap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Kidd