micropub-endpoint 1.0.2 → 1.0.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/micropub/endpoint/version.rb +1 -1
- data/micropub-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: '087e08d9bb60ca8c9f34ee2ddc6bdf62de26c3d73750916a0f6e866021ce8196'
|
4
|
+
data.tar.gz: df204d71fb4c03bf67820bba549f9d7848d9a825c0d19aea97a5be2cd10ffd4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8bcd0fbda0b1376716aa874da26600cadef2eea9ab1cf509f6054292de1a2828ca251f053f8859b89b0ecff78b36eaffd2e47a712485a93dcf2d9c4727b8836c
|
7
|
+
data.tar.gz: d0974eb7f4ceaffa4832c91d5c658b0f7802f1af7ef1bff43916fd32f6047938f2260156ed81f58aeef1b1d22c6df896f6404f6c3cbb12a7c4422431823de5d0
|
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
|
+
## 1.0.3 / 2019-01-03
|
4
|
+
|
5
|
+
- Expand supported Ruby versions to include 2.6 ([86de073](https://github.com/jgarber623/micropub-endpoint-ruby/commit/86de073)).
|
6
|
+
|
3
7
|
## 1.0.2 / 2018-11-11
|
4
8
|
|
5
9
|
- Freeze mutable objects assigned to constants ([843e875](https://github.com/jgarber623/micropub-endpoint-ruby/commit/843e875)).
|
data/CONTRIBUTING.md
CHANGED
@@ -8,9 +8,9 @@ There are a couple ways you can help improve micropub-endpoint-ruby:
|
|
8
8
|
|
9
9
|
## Getting Started
|
10
10
|
|
11
|
-
micropub-endpoint-ruby is developed using Ruby 2.4.
|
11
|
+
micropub-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/micropub-endpoint-ruby).
|
12
12
|
|
13
|
-
Before making changes to micropub-endpoint-ruby, you'll want to install Ruby 2.4.
|
13
|
+
Before making changes to micropub-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 micropub-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
|
-
micropub-endpoint-ruby is developed using Ruby 2.4.
|
21
|
+
micropub-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/micropub-endpoint-ruby).
|
22
22
|
|
23
23
|
## Installation
|
24
24
|
|
data/micropub-endpoint.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require 'micropub/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 = 'micropub-endpoint'
|
10
10
|
spec.version = Micropub::Endpoint::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: micropub-endpoint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.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 Micropub endpoint.
|