absolutely 3.0.0 → 3.0.1

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: 91566fb265c0b030b5014124f954e10d150482b0b2487d6e729191e3958cc732
4
- data.tar.gz: 6eea11bf5e67cb75cb33ccb21e0573aefa6899cfed505f4b864e46e643a0781a
3
+ metadata.gz: d87800dd408c148a8af36a68864e162df8fa187bd92acd9880d57b1e46c2d5c1
4
+ data.tar.gz: 6a7446bf703cb3edcfd2837aa26aea86869c0ed07ecd7805de7ff1139de18273
5
5
  SHA512:
6
- metadata.gz: 077d370aaef9a645222bdaf5297f6172f0f369bc6d93d336ede24999564126058d34cfcaea3c206ecb25f539b02b21f79fa5112e06be6e9dbc874ea3fe6925ba
7
- data.tar.gz: f201dc5e6ab3a7b24f95da4a0ccffa3452f63c13e779fe9533727e8ab9fdd41952ccb9ad6928323388db3536cff02254d70f25f371626c3fbc64dee486301e2e
6
+ metadata.gz: '09df9d6f0eb4bd99a11a1458197040bcb586bada2fededfcea51fc19eccc5024fa741f4d4adc9e715f24514640845f40123f1af6c81ca979ee7260d28bd6bb62'
7
+ data.tar.gz: 1400ee96f034346c2aa70ae0149faec35c2a608c2ba261c3936b59e88a6d969715506d716a7ae90422959b2f2bf9d45d489943d7c670d0df9bc7deec93a6d21e
@@ -1 +1 @@
1
- 2.4.6
1
+ 2.4.7
@@ -1,8 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.4.6
4
- - 2.5.5
5
- - 2.6.3
3
+ - 2.4
4
+ - 2.5
5
+ - 2.6
6
6
  cache:
7
7
  - bundler
8
8
  before_install:
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.0.1 / 2019-08-31
4
+
5
+ - Update Addressable gem ([b257f75](https://github.com/jgarber623/absolutely/commit/b257f75)).
6
+ - Update project Ruby version to 2.4.7 ([a14d29b](https://github.com/jgarber623/absolutely/commit/a14d29b)).
7
+ - Update development dependencies.
8
+
3
9
  ## 3.0.0 / 2019-05-28
4
10
 
5
11
  - Return normalized `relative_uri` in `to_abs` when `relative_uri` is an absolute URL ([81261e9](https://github.com/jgarber623/absolutely/commit/81261e9)).
@@ -8,9 +8,9 @@ There are a couple ways you can help improve Absolutely:
8
8
 
9
9
  ## Getting Started
10
10
 
11
- Absolutely is developed using Ruby 2.4.6 and is additionally tested against Ruby 2.5.5 and 2.6.3 using [Travis CI](https://travis-ci.com/jgarber623/absolutely).
11
+ Absolutely is developed using Ruby 2.4.7 and is additionally tested against Ruby 2.5 and 2.6 using [Travis CI](https://travis-ci.com/jgarber623/absolutely).
12
12
 
13
- Before making changes to Absolutely, you'll want to install Ruby 2.4.6. It's recommended that you use a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm). Once you've installed Ruby 2.4.6 using your method of choice, install the project's gems by running:
13
+ Before making changes to Absolutely, you'll want to install Ruby 2.4.7. It's recommended that you use a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm). Once you've installed Ruby 2.4.7 using your method of choice, install the project's gems by running:
14
14
 
15
15
  ```sh
16
16
  bundle install
data/README.md CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  Before installing and using Absolutely, you'll want to have [Ruby](https://www.ruby-lang.org) 2.4 (or newer) installed. It's recommended that you use a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm).
20
20
 
21
- Absolutely is developed using Ruby 2.4.6 and is additionally tested against Ruby 2.5.5 and 2.6.3 using [Travis CI](https://travis-ci.com/jgarber623/absolutely).
21
+ Absolutely is developed using Ruby 2.4.7 and is additionally tested against Ruby 2.5 and 2.6 using [Travis CI](https://travis-ci.com/jgarber623/absolutely).
22
22
 
23
23
  ## Installation
24
24
 
@@ -67,7 +67,7 @@ Note that if the value passed as `relative` is determined to be an absolute URI,
67
67
  ```ruby
68
68
  require 'absolutely'
69
69
 
70
- uri = Absolute.to_abs(base: 'https://example.com', relative: 'https://example.com/foo')
70
+ uri = Absolutely.to_abs(base: 'https://example.com', relative: 'https://example.com/foo')
71
71
 
72
72
  puts uri # => 'https://example.com/foo'
73
73
  ```
@@ -28,11 +28,11 @@ Gem::Specification.new do |spec|
28
28
  spec.add_development_dependency 'rake', '~> 12.3'
29
29
  spec.add_development_dependency 'reek', '~> 5.4'
30
30
  spec.add_development_dependency 'rspec', '~> 3.8'
31
- spec.add_development_dependency 'rubocop', '~> 0.70.0'
32
- spec.add_development_dependency 'rubocop-performance', '~> 1.3'
33
- spec.add_development_dependency 'rubocop-rspec', '~> 1.33'
34
- spec.add_development_dependency 'simplecov', '~> 0.16.1'
31
+ spec.add_development_dependency 'rubocop', '~> 0.74.0'
32
+ spec.add_development_dependency 'rubocop-performance', '~> 1.4'
33
+ spec.add_development_dependency 'rubocop-rspec', '~> 1.35'
34
+ spec.add_development_dependency 'simplecov', '~> 0.17.0'
35
35
  spec.add_development_dependency 'simplecov-console', '~> 0.5.0'
36
36
 
37
- spec.add_runtime_dependency 'addressable', '~> 2.6'
37
+ spec.add_runtime_dependency 'addressable', '~> 2.7'
38
38
  end
@@ -1,3 +1,3 @@
1
1
  module Absolutely
2
- VERSION = '3.0.0'.freeze
2
+ VERSION = '3.0.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: absolutely
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Garber
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-29 00:00:00.000000000 Z
11
+ date: 2019-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -58,56 +58,56 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 0.70.0
61
+ version: 0.74.0
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 0.70.0
68
+ version: 0.74.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rubocop-performance
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '1.3'
75
+ version: '1.4'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '1.3'
82
+ version: '1.4'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rubocop-rspec
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '1.33'
89
+ version: '1.35'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '1.33'
96
+ version: '1.35'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: simplecov
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: 0.16.1
103
+ version: 0.17.0
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: 0.16.1
110
+ version: 0.17.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: simplecov-console
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -128,14 +128,14 @@ dependencies:
128
128
  requirements:
129
129
  - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: '2.6'
131
+ version: '2.7'
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
- version: '2.6'
138
+ version: '2.7'
139
139
  description: Convert relative paths to absolute URIs.
140
140
  email:
141
141
  - jason@sixtwothree.org
@@ -168,7 +168,7 @@ licenses:
168
168
  - MIT
169
169
  metadata:
170
170
  bug_tracker_uri: https://github.com/jgarber623/absolutely/issues
171
- changelog_uri: https://github.com/jgarber623/absolutely/blob/v3.0.0/CHANGELOG.md
171
+ changelog_uri: https://github.com/jgarber623/absolutely/blob/v3.0.1/CHANGELOG.md
172
172
  post_install_message:
173
173
  rdoc_options: []
174
174
  require_paths:
@@ -187,7 +187,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
187
187
  - !ruby/object:Gem::Version
188
188
  version: '0'
189
189
  requirements: []
190
- rubygems_version: 3.0.3
190
+ rubygems_version: 3.0.6
191
191
  signing_key:
192
192
  specification_version: 4
193
193
  summary: Convert relative paths to absolute URIs.