textlint-ruby 0.1.0 → 0.1.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: dad83d3a7ac022d06493719fa2cdf9d1eb601d44dc5623c6ee7df9c653f1e7ec
4
- data.tar.gz: 36cf1cc9bf08a768ec79fd805f2e510dbabac2daf69a3cad7c557d0188416093
3
+ metadata.gz: 34fcdaa79b17b3ea92addafa5125e0d28f4cd114fb338d0f6ec97d243070bdd1
4
+ data.tar.gz: 28cd88e7d364424b8c75889f6c57fa92e03d02c2756f70974ac2d395a59e301b
5
5
  SHA512:
6
- metadata.gz: 8f75e3aeb4c5dff45f7c45ca740e6a69ec79a21fb40e4a40c8c327671aa083c9045127aa4c336b580c498f46495e58c6c7b42a8f147590324a8627ac73c36527
7
- data.tar.gz: c5cdcd705da25d6b2a679e2aec3679ae50612dd60bbda58c63ccb3a13adacd1e3c461f422936f9490fab8cbec41bf52ab7a6afa297d786d58a0590e5407cbbf7
6
+ metadata.gz: e4b43a0e423cef7b375202b4b20f144563bd16434dd279bd991b1d29ab696f1852bb71f13dad18adb78fe407537fe9c620482ebcec692cd2c67f4224704203e6
7
+ data.tar.gz: b2bc9ca563fe12d94d161508c24fdd261585db92e35088fad0ceeb83a5ae54c614454bb314a2db2b5facc62e28498508e22a10ecb4dcff4e44a78cbdb3abc2f3
data/.circleci/config.yml CHANGED
@@ -1,6 +1,10 @@
1
1
  version: 2.1
2
2
 
3
3
  executors:
4
+ ruby_2_5:
5
+ docker:
6
+ - image: ruby:2.5
7
+
4
8
  ruby_2_6:
5
9
  docker:
6
10
  - image: ruby:2.6
@@ -23,6 +27,11 @@ commands:
23
27
  - run: bundle exec rubocop
24
28
 
25
29
  jobs:
30
+ ruby_2_5:
31
+ executor: ruby_2_5
32
+ steps:
33
+ - run_test
34
+
26
35
  ruby_2_6:
27
36
  executor: ruby_2_6
28
37
  steps:
@@ -43,6 +52,7 @@ workflows:
43
52
 
44
53
  test:
45
54
  jobs: &jobs
55
+ - ruby_2_5
46
56
  - ruby_2_6
47
57
  - ruby_2_7
48
58
  - ruby_3_0
data/.rubocop.yml CHANGED
@@ -4,7 +4,7 @@ AllCops:
4
4
  - 'gemfiles/**/*'
5
5
  - 'spec/samples/**/*'
6
6
  - Gemfile
7
- TargetRubyVersion: 2.6
7
+ TargetRubyVersion: 2.5
8
8
  DisplayCopNames: true
9
9
  NewCops: disable
10
10
 
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1]
4
+
5
+ - Support ruby 2.5
6
+
3
7
  ## [0.1.0]
4
8
 
5
9
  - Initial release
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Textlint
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
data/textlint.gemspec CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.description = ''
13
13
  spec.homepage = 'https://github.com/alpaca-tc/textlint-ruby'
14
14
  spec.license = 'MIT'
15
- spec.required_ruby_version = '>= 2.6.0'
15
+ spec.required_ruby_version = '>= 2.5.0'
16
16
 
17
17
  spec.metadata['homepage_uri'] = spec.homepage
18
18
  spec.metadata['source_code_uri'] = 'https://github.com/alpaca-tc/textlint-ruby'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: textlint-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - alpaca-tc
@@ -53,7 +53,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
53
53
  requirements:
54
54
  - - ">="
55
55
  - !ruby/object:Gem::Version
56
- version: 2.6.0
56
+ version: 2.5.0
57
57
  required_rubygems_version: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="