uri-builder 0.1.6 → 0.1.8

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: 544ce8ea2cb50a4f72aa039ef2c56966300f6cd2c67dddc02739ba9b6e3f3bf6
4
- data.tar.gz: 97aca8b3c2bacfbc3707d0f43f935ee67e75c07baa913aeda955a3d6441d4733
3
+ metadata.gz: 1c38b14bcda23d719520fbff41c9b080c9a7ee895391da9cba6f6febece54e0b
4
+ data.tar.gz: 7c95d5b847ffa2d43af8927f5a49962d0e5c5b322fa92676d7e41bd2d571086b
5
5
  SHA512:
6
- metadata.gz: a4c9d7c4925fce0b341529c232475dfd749125bb6b83e08c99876fd08e5f8e2af58eb451c2ffb2cbfb1ab8ee1d929a5d362253f116adf9fb5d088e3f9980f1fd
7
- data.tar.gz: 030f8126cdb7db9f0204f88ff8f3fd20274b90c9ca5812b35439cdbba9cf0d759bc1e68502d40039cd5b4d40c25217e8c8050acac95cc5c9badbe8328a4282ae
6
+ metadata.gz: 7e109a8c2fb79b0a512377e878da1f9b9c4c8b7475848d772367c1b360b2cc4d951e66860333908da43a169c8605d26202a756fcc201c47f1f29ddcdf6329381
7
+ data.tar.gz: 856eeb389865dc50d1e0f81b51d5d264b918b85787a740956521e112ba1ede7808ce35766892a553e1db3dbe588852d4f8cc073d15e4eb66bd40901d459c822d
data/Gemfile.lock CHANGED
@@ -1,30 +1,31 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- uri-builder (0.1.5)
4
+ uri-builder (0.1.8)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- diff-lcs (1.5.0)
10
- rake (13.0.6)
11
- rspec (3.10.0)
12
- rspec-core (~> 3.10.0)
13
- rspec-expectations (~> 3.10.0)
14
- rspec-mocks (~> 3.10.0)
15
- rspec-core (3.10.2)
16
- rspec-support (~> 3.10.0)
17
- rspec-expectations (3.10.2)
9
+ diff-lcs (1.5.1)
10
+ rake (13.1.0)
11
+ rspec (3.13.0)
12
+ rspec-core (~> 3.13.0)
13
+ rspec-expectations (~> 3.13.0)
14
+ rspec-mocks (~> 3.13.0)
15
+ rspec-core (3.13.0)
16
+ rspec-support (~> 3.13.0)
17
+ rspec-expectations (3.13.0)
18
18
  diff-lcs (>= 1.2.0, < 2.0)
19
- rspec-support (~> 3.10.0)
20
- rspec-mocks (3.10.3)
19
+ rspec-support (~> 3.13.0)
20
+ rspec-mocks (3.13.0)
21
21
  diff-lcs (>= 1.2.0, < 2.0)
22
- rspec-support (~> 3.10.0)
23
- rspec-support (3.10.3)
22
+ rspec-support (~> 3.13.0)
23
+ rspec-support (3.13.1)
24
24
 
25
25
  PLATFORMS
26
26
  arm64-darwin-21
27
27
  arm64-darwin-22
28
+ arm64-darwin-23
28
29
  x86_64-darwin-20
29
30
 
30
31
  DEPENDENCIES
data/LICENSE.md ADDED
@@ -0,0 +1,7 @@
1
+ Copyright © 2024 Bradley Gessler
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module URI
4
4
  module Build
5
- VERSION = "0.1.6"
5
+ VERSION = "0.1.8"
6
6
  end
7
7
  end
data/lib/uri/builder.rb CHANGED
@@ -57,6 +57,10 @@ module URI
57
57
  uri.to_s
58
58
  end
59
59
 
60
+ def to_str
61
+ uri.to_str
62
+ end
63
+
60
64
  private
61
65
  def wrap(property, value)
62
66
  @uri.send "#{property}=", value
@@ -7,10 +7,11 @@ Gem::Specification.new do |spec|
7
7
  spec.version = URI::Build::VERSION
8
8
  spec.authors = ["Brad Gessler"]
9
9
  spec.email = ["bradgessler@gmail.com"]
10
+ spec.licenses = ["MIT"]
10
11
 
11
12
  spec.summary = "Build URIs via chains"
12
13
  spec.description = spec.summary
13
- spec.homepage = "https://github.com/rubymonolith/url-builder"
14
+ spec.homepage = "https://github.com/rubymonolith/uri-builder"
14
15
  spec.required_ruby_version = ">= 2.6.0"
15
16
 
16
17
  spec.metadata["allowed_push_host"] = "https://rubygems.org"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uri-builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brad Gessler
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-05-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Build URIs via chains
14
14
  email:
@@ -20,6 +20,7 @@ files:
20
20
  - ".rspec"
21
21
  - Gemfile
22
22
  - Gemfile.lock
23
+ - LICENSE.md
23
24
  - README.md
24
25
  - Rakefile
25
26
  - lib/uri-builder.rb
@@ -27,13 +28,14 @@ files:
27
28
  - lib/uri/builder/version.rb
28
29
  - sig/uri/transform.rbs
29
30
  - uri-transform.gemspec
30
- homepage: https://github.com/rubymonolith/url-builder
31
- licenses: []
31
+ homepage: https://github.com/rubymonolith/uri-builder
32
+ licenses:
33
+ - MIT
32
34
  metadata:
33
35
  allowed_push_host: https://rubygems.org
34
- homepage_uri: https://github.com/rubymonolith/url-builder
35
- source_code_uri: https://github.com/rubymonolith/url-builder
36
- changelog_uri: https://github.com/rubymonolith/url-builder
36
+ homepage_uri: https://github.com/rubymonolith/uri-builder
37
+ source_code_uri: https://github.com/rubymonolith/uri-builder
38
+ changelog_uri: https://github.com/rubymonolith/uri-builder
37
39
  post_install_message:
38
40
  rdoc_options: []
39
41
  require_paths:
@@ -49,7 +51,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
51
  - !ruby/object:Gem::Version
50
52
  version: '0'
51
53
  requirements: []
52
- rubygems_version: 3.4.10
54
+ rubygems_version: 3.5.6
53
55
  signing_key:
54
56
  specification_version: 4
55
57
  summary: Build URIs via chains