absolutely 1.1.1 → 1.1.2

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
- SHA1:
3
- metadata.gz: 9f3670433086431bcaa93e8108c2d89b8e1eb1f7
4
- data.tar.gz: 8579b1b3c6bb947b17a7e864e58b97e358b81a05
2
+ SHA256:
3
+ metadata.gz: a7c97a6f83461fbf9ae3f14ae28af40dc6385b4237224b57fa5450eabdc60a97
4
+ data.tar.gz: dcd8fc9c3ec0b2c59786ed36fdbc16b3dea55613138725e4e5607a411a366a62
5
5
  SHA512:
6
- metadata.gz: 28c92c6a1335e770d9bb43f8e5865cd8f9c77700ba2d22829d1f292a2bc2283e1e9f729815dd59eb1d994731c4848fc42a95a91b992222fe1a8bee8a6cd4460b
7
- data.tar.gz: 7618938f7334736a51ded015711031ccb89934335522ebbdcec8d930e5884913cd37692f2ad532fb8721b7998adc7f8854f64ac308dd085e1ebc32987ecb95bf
6
+ metadata.gz: 7eb3f3a83b2c3ea000bc12794c621e147303b27d453d226e974472ecffce60c3de979baade6073d199ca046aba09c8b649820e65033ef9b0d716a7ea4b8bd3a9
7
+ data.tar.gz: debf9c03a3c36d34ccd3d364bc4401c10a7b90ec77104d09aa574e75cfb45fc70bf48a4ee50c9f8ae54ce7974e4568cf22f4c0250977e8969d07f6baab1c8c42
@@ -1 +1 @@
1
- 2.4.4
1
+ 2.4.5
@@ -1,10 +1,12 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.4.4
4
- - 2.5.1
5
- cache: bundler
3
+ - 2.4.5
4
+ - 2.5.3
5
+ - 2.6.0
6
+ cache:
7
+ - bundler
6
8
  before_install:
7
- - gem install bundler
9
+ - gem install bundler -v '~> 1.17'
8
10
  before_script:
9
11
  - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
10
12
  - chmod +x ./cc-test-reporter
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.1.2 / 2019-01-03
4
+
5
+ - Expand supported Ruby versions to include 2.6 ([866d58a](https://github.com/jgarber623/absolutely/commit/866d58a)).
6
+
3
7
  ## 1.1.1 / 2018-11-11
4
8
 
5
9
  - Liberalizes dependency constraints ([e0bc056](https://github.com/jgarber623/absolutely/commit/e0bc056)).
@@ -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.4 and is additionally tested against Ruby 2.5.1 using [Travis CI](https://travis-ci.com/jgarber623/absolutely).
11
+ Absolutely is developed using Ruby 2.4.5 and is additionally tested against Ruby 2.5.3 and 2.6.0 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.4. 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.4 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.5. 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.5 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.4 and is additionally tested against Ruby 2.5.1 using [Travis CI](https://travis-ci.com/jgarber623/absolutely).
21
+ Absolutely is developed using Ruby 2.4.5 and is additionally tested against Ruby 2.5.3 and 2.6.0 using [Travis CI](https://travis-ci.com/jgarber623/absolutely).
22
22
 
23
23
  ## Installation
24
24
 
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'absolutely/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.required_ruby_version = ['>= 2.4', '< 2.6']
7
+ spec.required_ruby_version = ['>= 2.4', '< 2.7']
8
8
 
9
9
  spec.name = 'absolutely'
10
10
  spec.version = Absolutely::VERSION
@@ -23,8 +23,8 @@ Gem::Specification.new do |spec|
23
23
  spec.add_development_dependency 'bundler', '~> 1.17'
24
24
  spec.add_development_dependency 'rake', '~> 12.3'
25
25
  spec.add_development_dependency 'rspec', '~> 3.8'
26
- spec.add_development_dependency 'rubocop', '~> 0.60.0'
27
- spec.add_development_dependency 'rubocop-rspec', '~> 1.30'
26
+ spec.add_development_dependency 'rubocop', '~> 0.62.0'
27
+ spec.add_development_dependency 'rubocop-rspec', '~> 1.31'
28
28
  spec.add_development_dependency 'simplecov', '~> 0.16.1'
29
29
  spec.add_development_dependency 'simplecov-console', '~> 0.4.2'
30
30
 
@@ -1,3 +1,3 @@
1
1
  module Absolutely
2
- VERSION = '1.1.1'.freeze
2
+ VERSION = '1.1.2'.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: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Garber
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-11 00:00:00.000000000 Z
11
+ date: 2019-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -58,28 +58,28 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 0.60.0
61
+ version: 0.62.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.60.0
68
+ version: 0.62.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rubocop-rspec
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '1.30'
75
+ version: '1.31'
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.30'
82
+ version: '1.31'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: simplecov
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -163,15 +163,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
163
163
  version: '2.4'
164
164
  - - "<"
165
165
  - !ruby/object:Gem::Version
166
- version: '2.6'
166
+ version: '2.7'
167
167
  required_rubygems_version: !ruby/object:Gem::Requirement
168
168
  requirements:
169
169
  - - ">="
170
170
  - !ruby/object:Gem::Version
171
171
  version: '0'
172
172
  requirements: []
173
- rubyforge_project:
174
- rubygems_version: 2.6.14.1
173
+ rubygems_version: 3.0.2
175
174
  signing_key:
176
175
  specification_version: 4
177
176
  summary: Convert relative paths to absolute URIs.