symbolify 1.3.1 → 1.4.1

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
2
  SHA256:
3
- metadata.gz: b1fdb49d048bfb36ebf5b5b2815acd1dc14d3296dc7dda6f2e9c9354af0f61a4
4
- data.tar.gz: d041aabab4f13ae222636fcfbad8da570949d4f98dee4a748b84558f0b9a4cfa
3
+ metadata.gz: 47b4f1b353303b6bcfbc5d25ce958970a426d871c73e1e17433ab945a7c99d0a
4
+ data.tar.gz: 564d36a4738bbf4356b7820d65cff31452be0c456034c5a33cb469ae05fd26e7
5
5
  SHA512:
6
- metadata.gz: ec9956f7e816d35a3b20e68db923daf223cbd3ea0da41252412c4ec0d346ac18b6fdc9b80f63d35649bac4a57c1dd614b268c42fcb2105e5ea3a7c06d80a0879
7
- data.tar.gz: 28a064b1d1d0effd1d7ce7333a4e1861739db711a7e96870dbd0c51eb4e4398b71c921d397f334e8afffe8a4b85456c67f0a3777fd5ea1f128a8fcbbd4dc51c0
6
+ metadata.gz: 5e623b046b466ed667f4d02cabdd90b4e56cdcb2015f4c7e799fdc80c1655f4510410b13ef0e4c04b5ca393a5c8023024cc329b2eaafef534cb8b2c24bda2034
7
+ data.tar.gz: 6933e433947ba54e31a0ff8687b4dc38d951b80abb4618902a48b82e918d12b3a3fa39619248996bf7d6d0d21fcb56e921ac32c870845d2c3a7c41894d1cbc5f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.4.1
4
+
5
+ * 2022 rerelease - update ci, no changes
6
+
7
+ ### 1.4.0
8
+
9
+ * Relax Ruby version requirement to allow Ruby 3.0
10
+ * Remove UNICODE_VERSION constant since it only mirrors the one
11
+ of the unicode-categories gem
12
+
3
13
  ### 1.3.1
4
14
 
5
15
  * Allow version of characteristics dependency to 1.x
data/MIT-LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2017-2022 Jan Lelis, https://janlelis.com
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Symbolify [![[version]](https://badge.fury.io/rb/symbolify.svg)](http://badge.fury.io/rb/symbolify) [![[travis]](https://travis-ci.org/janlelis/symbolify.svg)](https://travis-ci.org/janlelis/symbolify)
1
+ # Symbolify [![[version]](https://badge.fury.io/rb/symbolify.svg)](https://badge.fury.io/rb/symbolify) [![[ci]](https://github.com/janlelis/symbolify/workflows/Test/badge.svg)](https://github.com/janlelis/symbolify/actions?query=workflow%3ATest)
2
2
 
3
3
  Safely print all codepoints from Unicode and single-byte encodings in UTF-8. It replaces control and non-printable characters with readable equivalents and wraps most blank characters in `]` and `[`.
4
4
 
@@ -37,4 +37,4 @@ puts Symbolify.symbolify "\x80" # �
37
37
 
38
38
  ## MIT License
39
39
 
40
- Copyright (C) 2017 Jan Lelis <http://janlelis.com>. Released under the MIT license.
40
+ Copyright (C) 2017-2022 Jan Lelis <https://janlelis.com>. Released under the MIT license.
data/Rakefile CHANGED
@@ -32,7 +32,11 @@ end
32
32
 
33
33
  desc "#{gemspec.name} | Spec"
34
34
  task :spec do
35
- sh "for file in spec/*_spec.rb; do ruby $file; done"
35
+ if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
36
+ sh "for %f in (spec/\*.rb) do ruby spec/%f"
37
+ else
38
+ sh "for file in spec/*.rb; do ruby $file; done"
39
+ end
36
40
  end
37
41
  task default: :spec
38
42
 
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Symbolify
4
- VERSION = "1.3.1".freeze
5
- UNICODE_VERSION = "10.0.0".freeze
4
+ VERSION = "1.4.1"
6
5
  end
7
6
 
data/symbolify.gemspec CHANGED
@@ -5,10 +5,10 @@ require File.dirname(__FILE__) + "/lib/symbolify/version"
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = "symbolify"
7
7
  gem.version = Symbolify::VERSION
8
- gem.summary = "Represent arbitrary codepoints in the terminal."
9
- gem.description = "Safely print all codepoints from Unicode and single-byte encodings."
8
+ gem.summary = "Represent arbitrary code points in the terminal"
9
+ gem.description = "Safely print all code points from Unicode or single-byte encodings"
10
10
  gem.authors = ["Jan Lelis"]
11
- gem.email = ["mail@janlelis.de"]
11
+ gem.email = ["hi@ruby.consulting"]
12
12
  gem.homepage = "https://github.com/janlelis/symbolify"
13
13
  gem.license = "MIT"
14
14
 
@@ -16,7 +16,8 @@ Gem::Specification.new do |gem|
16
16
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
+ gem.metadata = { "rubygems_mfa_required" => "true" }
19
20
 
20
- gem.required_ruby_version = "~> 2.0"
21
+ gem.required_ruby_version = ">= 2.0"
21
22
  gem.add_dependency "characteristics", ">= 0.8", "< 2.0"
22
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: symbolify
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-31 00:00:00.000000000 Z
11
+ date: 2022-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: characteristics
@@ -30,15 +30,14 @@ dependencies:
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '2.0'
33
- description: Safely print all codepoints from Unicode and single-byte encodings.
33
+ description: Safely print all code points from Unicode or single-byte encodings
34
34
  email:
35
- - mail@janlelis.de
35
+ - hi@ruby.consulting
36
36
  executables: []
37
37
  extensions: []
38
38
  extra_rdoc_files: []
39
39
  files:
40
40
  - ".gitignore"
41
- - ".travis.yml"
42
41
  - CHANGELOG.md
43
42
  - CODE_OF_CONDUCT.md
44
43
  - Gemfile
@@ -53,14 +52,15 @@ files:
53
52
  homepage: https://github.com/janlelis/symbolify
54
53
  licenses:
55
54
  - MIT
56
- metadata: {}
55
+ metadata:
56
+ rubygems_mfa_required: 'true'
57
57
  post_install_message:
58
58
  rdoc_options: []
59
59
  require_paths:
60
60
  - lib
61
61
  required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
- - - "~>"
63
+ - - ">="
64
64
  - !ruby/object:Gem::Version
65
65
  version: '2.0'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -69,10 +69,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubyforge_project:
73
- rubygems_version: 2.7.3
72
+ rubygems_version: 3.3.7
74
73
  signing_key:
75
74
  specification_version: 4
76
- summary: Represent arbitrary codepoints in the terminal.
75
+ summary: Represent arbitrary code points in the terminal
77
76
  test_files:
78
77
  - spec/symbolify_spec.rb
data/.travis.yml DELETED
@@ -1,22 +0,0 @@
1
- sudo: false
2
- language: ruby
3
-
4
- rvm:
5
- - ruby-head
6
- - 2.5.1
7
- - 2.4.4
8
- - 2.3.7
9
- - 2.2
10
- - 2.1
11
- - 2.0
12
- - jruby-head
13
- - jruby-9.1.16.0
14
-
15
- matrix:
16
- allow_failures:
17
- - rvm: jruby-head
18
- - rvm: ruby-head
19
- - rvm: 2.2
20
- - rvm: 2.1
21
- - rvm: 2.0
22
- # fast_finish: true