authorization-endpoint 0.1.3 → 0.1.4

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
- SHA1:
3
- metadata.gz: d52a69666afb10e769ed8c43f741537022a746d8
4
- data.tar.gz: 2cc2af056643882e1f0928c72cb4b5a810f89c3e
2
+ SHA256:
3
+ metadata.gz: d3d37c2ce9033b1a2c9c2071795972eec14d264be788be457397a01f1be8c517
4
+ data.tar.gz: ec18dbf74df72de2ce8bd71140822f850fe178ca12c605e3ec42a815085d0407
5
5
  SHA512:
6
- metadata.gz: f6c548b0b0c43dcfa1fb1e17e462a088f3450c1d3ea727d7e8c3865cc4a3a3c1648033468e00d3ce089f63b0ee83f6457600b33fb33b32c3e60e18c17cb864fd
7
- data.tar.gz: 1d2f357f473f6b45e02eab0a4aaf22dfa03c61229282cbd41dd5e9d0aeeca534043053e15fbfe7d698d09aeca781b3dfe618051daca637372004d6fd75bf21d0
6
+ metadata.gz: ab7177704cd2d0fdb3e87395a8a1fda15bf6fb6ad367144e4af7a2c64097bc2153515f0e106701b21a3483ecc63ad145f1d35de3e1f319471466945c2fb28186
7
+ data.tar.gz: a67d10b42f6f1659b48ce55a0dc0254d97b235a6c254bccb4985cfcc75d75f4f358a4e5b9d36edef198f67dc6b51f8936545f821d3cde9e4fd11268fb0496f4d
@@ -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
+ ## 0.1.4 / 2019-01-03
4
+
5
+ - Expand supported Ruby versions to include 2.6 ([30b9b24](https://github.com/jgarber623/authorization-endpoint-ruby/commit/30b9b24)).
6
+
3
7
  ## 0.1.3 / 2018-11-11
4
8
 
5
9
  - Liberalize webmock gem constraint ([b658f2d](https://github.com/jgarber623/authorization-endpoint-ruby/commit/b658f2d)).
@@ -8,9 +8,9 @@ There are a couple ways you can help improve authorization-endpoint-ruby:
8
8
 
9
9
  ## Getting Started
10
10
 
11
- authorization-endpoint-ruby is developed using Ruby 2.4.4 and is additionally tested against Ruby 2.5.1 using [Travis CI](https://travis-ci.com/jgarber623/authorization-endpoint-ruby).
11
+ authorization-endpoint-ruby 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/authorization-endpoint-ruby).
12
12
 
13
- Before making changes to authorization-endpoint-ruby, 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 authorization-endpoint-ruby, 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 authorization-endpoint-ruby, 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
- authorization-endpoint-ruby is developed using Ruby 2.4.4 and is additionally tested against Ruby 2.5.1 using [Travis CI](https://travis-ci.com/jgarber623/authorization-endpoint-ruby).
21
+ authorization-endpoint-ruby 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/authorization-endpoint-ruby).
22
22
 
23
23
  ## Installation
24
24
 
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'authorization_endpoint/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 = 'authorization-endpoint'
10
10
  spec.version = AuthorizationEndpoint::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
  spec.add_development_dependency 'webmock', '~> 3.4'
@@ -1,3 +1,3 @@
1
1
  module AuthorizationEndpoint
2
- VERSION = '0.1.3'.freeze
2
+ VERSION = '0.1.4'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authorization-endpoint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
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
@@ -222,15 +222,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
222
222
  version: '2.4'
223
223
  - - "<"
224
224
  - !ruby/object:Gem::Version
225
- version: '2.6'
225
+ version: '2.7'
226
226
  required_rubygems_version: !ruby/object:Gem::Requirement
227
227
  requirements:
228
228
  - - ">="
229
229
  - !ruby/object:Gem::Version
230
230
  version: '0'
231
231
  requirements: []
232
- rubyforge_project:
233
- rubygems_version: 2.6.14.1
232
+ rubygems_version: 3.0.2
234
233
  signing_key:
235
234
  specification_version: 4
236
235
  summary: Discover a URL’s authorization endpoint for use with Micropub and IndieAuth