bridgetown-paginate 0.21.2 → 0.21.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45369a416f343109e2bdc1ffe5a67996100127813567b0874c207dd10ff86282
4
- data.tar.gz: a7ef8b903febea7709b7e7af642e98b454bf464a50acc7f2a6c09f068d5b8431
3
+ metadata.gz: 04d94f97eb062654a42ae01347d17218c0415ad79ab66d057c9edf2443e4d689
4
+ data.tar.gz: 4d558f3739429dc5d4b118d9b0e2cc5017bd4c33a4657a19f79e0fba0dceaeb1
5
5
  SHA512:
6
- metadata.gz: 0b719ca33f468ee9f8ba22d372c96810076d6b729d96f0e95bcdd0efad982ec9a168c0c9026c5b6556d77826ac684441a5759a84afd4b45b55acc9cc3ab80e84
7
- data.tar.gz: 1347ab6fb4fa5ab2ee4fceed385fbf5feb03b7d536556bb300d146397aef37656de164f7f6d066355265a338564c7b5c675344d40464d8edb266d9c982818815
6
+ metadata.gz: 1f43513cabe783023538e01a54c3dbb3cbd4ad80743b7e4ac62ada8e96cd77f9302b94f9d6c1961e55788f943247e91d4db536162db74ca6e61fc87976c703f7
7
+ data.tar.gz: 29b7cf579f0af84d1632e7f57ad4194196242c6c76057ff4c12401a4294b8c3343fd60f91cee0212a42cec4c96c3bb2dc3c1daba286694c2092f019455987418
@@ -340,7 +340,9 @@ module Bridgetown
340
340
  else
341
341
  template.dir
342
342
  end
343
- first_index_page_url = Utils.ensure_trailing_slash(first_index_page_url)
343
+ first_index_page_url = Utils.ensure_trailing_slash(
344
+ Utils.remove_double_slash(first_index_page_url)
345
+ )
344
346
  paginated_page_url = File.join(first_index_page_url, paginated_page_url)
345
347
 
346
348
  # 3. Create the paginator logic for this page, pass in the prev and next
@@ -36,9 +36,8 @@ module Bridgetown
36
36
  # If the input already has a dot in position zero, it will be
37
37
  # returned unchanged.
38
38
  #
39
- # path - a String path
40
- #
41
- # Returns the path with a leading slash
39
+ # @param path [String]
40
+ # @return [String] the path with a leading slash
42
41
  def self.ensure_leading_dot(path)
43
42
  path[0..0] == "." ? path : ".#{path}"
44
43
  end
@@ -47,29 +46,26 @@ module Bridgetown
47
46
  # If the input already has a forward slash in position zero, it will be
48
47
  # returned unchanged.
49
48
  #
50
- # path - a String path
51
- #
52
- # Returns the path with a leading slash
49
+ # @param path [String]
50
+ # @return [String] the path with a leading slash
53
51
  def self.ensure_leading_slash(path)
54
52
  path[0..0] == "/" ? path : "/#{path}"
55
53
  end
56
54
 
57
- # Static: Return a String version of the input without a leading slash.
55
+ # Static: Return a String version of the input with only one leading slash.
58
56
  #
59
- # path - a String path
60
- #
61
- # Returns the input without the leading slash
62
- def self.remove_leading_slash(path)
63
- path[0..0] == "/" ? path[1..-1] : path
57
+ # @param path [String]
58
+ # @return [String] the input without the leading slash
59
+ def self.remove_double_slash(path)
60
+ path[0..1] == "//" ? path[1..-1] : path
64
61
  end
65
62
 
66
63
  # Static: Return a String version of the input which has a trailing slash.
67
64
  # If the input already has a forward slash at the end, it will be
68
65
  # returned unchanged.
69
66
  #
70
- # path - a String path
71
- #
72
- # Returns the path with a trailing slash
67
+ # @param path [String]
68
+ # @return [String] the path with a trailing slash
73
69
  def self.ensure_trailing_slash(path)
74
70
  path[-1] == "/" ? path : "#{path}/"
75
71
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bridgetown-paginate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.2
4
+ version: 0.21.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bridgetown Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-21 00:00:00.000000000 Z
11
+ date: 2021-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bridgetown-core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.21.2
19
+ version: 0.21.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.21.2
26
+ version: 0.21.3
27
27
  description:
28
28
  email: maintainers@bridgetownrb.com
29
29
  executables: []