token-endpoint 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.ruby-version +1 -1
- data/.travis.yml +6 -4
- data/CHANGELOG.md +4 -0
- data/CONTRIBUTING.md +2 -2
- data/README.md +1 -1
- data/lib/token_endpoint/version.rb +1 -1
- data/token-endpoint.gemspec +3 -3
- metadata +8 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b7d10f17a134ef8a78197fccd2f5ed0c86f8a47a11fa31eef6ba73fbcd7bdaff
|
4
|
+
data.tar.gz: 51ea9b34d073921daf99479531ce8d6c58298c861379abc5bd307271afc88d65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e50cf96f463511f0d99a1bf3e15be28f3658172411e0451765255c0c7cb1707ed34de9ecf142f2c62fe6fe1ede6a8442dbdee9ad21b3a38276f58d59e5bd653
|
7
|
+
data.tar.gz: 876ecf5204cafc15ef7d17ee45b1e082436253197b488163845b76f6af1481e7761a584825a6b80fc91f7fc02499ed251f8540e1c87ed7b0c0cdf58565b51e2c
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.4.
|
1
|
+
2.4.5
|
data/.travis.yml
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
language: ruby
|
2
2
|
rvm:
|
3
|
-
- 2.4.
|
4
|
-
- 2.5.
|
5
|
-
|
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
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.1.3 / 2019-01-03
|
4
|
+
|
5
|
+
- Expand supported Ruby versions to include 2.6 ([cef61db](https://github.com/jgarber623/token-endpoint-ruby/commit/cef61db)).
|
6
|
+
|
3
7
|
## 0.1.2 / 2018-11-11
|
4
8
|
|
5
9
|
- Freeze mutable objects assigned to constants ([3c9488f](https://github.com/jgarber623/token-endpoint-ruby/commit/3c9488f)).
|
data/CONTRIBUTING.md
CHANGED
@@ -8,9 +8,9 @@ There are a couple ways you can help improve token-endpoint-ruby:
|
|
8
8
|
|
9
9
|
## Getting Started
|
10
10
|
|
11
|
-
token-endpoint-ruby is developed using Ruby 2.4.
|
11
|
+
token-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/token-endpoint-ruby).
|
12
12
|
|
13
|
-
Before making changes to token-endpoint-ruby, you'll want to install Ruby 2.4.
|
13
|
+
Before making changes to token-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 token-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
|
-
token-endpoint-ruby is developed using Ruby 2.4.
|
21
|
+
token-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/token-endpoint-ruby).
|
22
22
|
|
23
23
|
## Installation
|
24
24
|
|
data/token-endpoint.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require 'token_endpoint/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
|
-
spec.required_ruby_version = ['>= 2.4', '< 2.
|
7
|
+
spec.required_ruby_version = ['>= 2.4', '< 2.7']
|
8
8
|
|
9
9
|
spec.name = 'token-endpoint'
|
10
10
|
spec.version = TokenEndpoint::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.
|
27
|
-
spec.add_development_dependency 'rubocop-rspec', '~> 1.
|
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'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: token-endpoint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Garber
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
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.
|
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.
|
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.
|
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.
|
82
|
+
version: '1.31'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: simplecov
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -221,15 +221,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
221
221
|
version: '2.4'
|
222
222
|
- - "<"
|
223
223
|
- !ruby/object:Gem::Version
|
224
|
-
version: '2.
|
224
|
+
version: '2.7'
|
225
225
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
226
226
|
requirements:
|
227
227
|
- - ">="
|
228
228
|
- !ruby/object:Gem::Version
|
229
229
|
version: '0'
|
230
230
|
requirements: []
|
231
|
-
|
232
|
-
rubygems_version: 2.6.14.1
|
231
|
+
rubygems_version: 3.0.2
|
233
232
|
signing_key:
|
234
233
|
specification_version: 4
|
235
234
|
summary: Discover a URL’s token endpoint for use with Micropub and IndieAuth clients.
|