az 2.0.1 → 2.0.2

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: 2c239e6d1aa094835f3e2cc63caa4315ef9127c3e47108cf2bf3c0a0a8e40ebc
4
- data.tar.gz: e159f2a988cc0e030ce4a445fd84d074adb9f680ba0d73898d37da5ecdd6239f
3
+ metadata.gz: d6db4c9f5b54561d8e2e80b4a1f518a52819829ef54c4b501846ce4a4e12b750
4
+ data.tar.gz: bc5b5af192fe3ff90b563ca7fe3ea0a6d4dba05ad5950b2ff428089ea6c87b06
5
5
  SHA512:
6
- metadata.gz: d32eccdd4e3d2bcda763c1e9d96b8ef6018ecb5bf2c6764049e0fdcfe7c1428daaabca33a1bf5a7456d0d4eef12332966600a3b548531d3fc32ad1fb46409aa6
7
- data.tar.gz: ddfad2771f68f689ee704d5f644fd63ec0bb9e0887c0e26d511f85753754613ed5d1e58611b9d20f58cd5854b8fbc31f2da83406e2ec833cebde7dd94f8d969b
6
+ metadata.gz: 5346624bb32c3464e6c40085c007bc1951abe1e0507847b85e08d3269aea9232ec0a48b5ac752061a686c31beb8d74b83902b4a5651283c11e0c754d13e6cecd
7
+ data.tar.gz: 0b2c28d7e50153c9d4e4552d5d7fb4210722689399bf8fa032d568339ce2396730b9de45a84a126553897c84818772af916fb758e4ee6dbc467c53bdc6469a8d
@@ -1,5 +1,8 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 2.0.2
4
+ - Relax Ruby version requirement to allow Ruby 3.0
5
+
3
6
  ### 2.0.1
4
7
  - Fix italic font to include Planck constant
5
8
 
@@ -1,4 +1,4 @@
1
- Copyright (c) 2019 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2019-2021 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
- # az [![[version]](https://badge.fury.io/rb/az.svg)](https://badge.fury.io/rb/az) [![[travis]](https://travis-ci.org/janlelis/az.png)](https://travis-ci.org/janlelis/az)
1
+ # Generate Alternative Unicode Representations of A - Z [![[version]](https://badge.fury.io/rb/az.svg)](https://badge.fury.io/rb/az) [![[ci]](https://github.com/janlelis/az/workflows/Test/badge.svg)](https://github.com/janlelis/az/actions?query=workflow%3ATest)
2
2
 
3
3
  Going from A to Z in different ways. It will translate Latin ASCII characters to funky Unicode ones.
4
4
 
@@ -69,4 +69,4 @@ tag | `󠁆󠁲󠁯󠁭 󠁁 󠁴󠁯 󠁚`
69
69
  - [character.construction/az](https://character.construction/az)
70
70
  - CLI: [uniscribe](https://github.com/janlelis/uniscribe)
71
71
 
72
- Copyright (C) 2019 Jan Lelis <http://janlelis.com>. Released under the MIT license.
72
+ Copyright (C) 2019-2021 Jan Lelis <https://janlelis.com>. Released under the MIT license.
data/Rakefile CHANGED
@@ -32,6 +32,10 @@ end
32
32
 
33
33
  desc "#{gemspec.name} | Spec"
34
34
  task :spec do
35
- sh "for file in 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
data/az.gemspec CHANGED
@@ -5,10 +5,10 @@ require File.dirname(__FILE__) + "/lib/az/constants"
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = "az"
7
7
  gem.version = Az::VERSION
8
- gem.summary = "Collects different ways of A-Z"
9
- gem.description = "Going from A to Z in different ways"
8
+ gem.summary = "Going from A to Z in different ways"
9
+ gem.description = "Generate Alternative Unicode Representations of A - Z"
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/az"
13
13
  gem.license = "MIT"
14
14
 
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
19
 
20
- gem.required_ruby_version = "~> 2.0"
20
+ gem.required_ruby_version = ">= 2.0"
21
21
 
22
22
  gem.add_dependency "paint", ">= 0.9", "< 3.0"
23
23
  gem.add_dependency "rationalist", "~> 2.0"
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Az
4
- VERSION = "2.0.1"
4
+ VERSION = "2.0.2"
5
5
  UNICODE_VERSION = "12.0.0"
6
6
 
7
7
  FONTS = {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: az
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-05 00:00:00.000000000 Z
11
+ date: 2021-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: paint
@@ -58,16 +58,15 @@ dependencies:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
60
  version: '1.3'
61
- description: Going from A to Z in different ways
61
+ description: Generate Alternative Unicode Representations of A - Z
62
62
  email:
63
- - mail@janlelis.de
63
+ - hi@ruby.consulting
64
64
  executables:
65
65
  - az
66
66
  extensions: []
67
67
  extra_rdoc_files: []
68
68
  files:
69
69
  - ".gitignore"
70
- - ".travis.yml"
71
70
  - CHANGELOG.md
72
71
  - CODE_OF_CONDUCT.md
73
72
  - Gemfile
@@ -92,7 +91,7 @@ require_paths:
92
91
  - lib
93
92
  required_ruby_version: !ruby/object:Gem::Requirement
94
93
  requirements:
95
- - - "~>"
94
+ - - ">="
96
95
  - !ruby/object:Gem::Version
97
96
  version: '2.0'
98
97
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -101,9 +100,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
100
  - !ruby/object:Gem::Version
102
101
  version: '0'
103
102
  requirements: []
104
- rubygems_version: 3.0.1
103
+ rubygems_version: 3.2.3
105
104
  signing_key:
106
105
  specification_version: 4
107
- summary: Collects different ways of A-Z
106
+ summary: Going from A to Z in different ways
108
107
  test_files:
109
108
  - spec/az_spec.rb
@@ -1,24 +0,0 @@
1
- sudo: false
2
- language: ruby
3
-
4
- script: bundle exec ruby spec/az_spec.rb
5
-
6
- rvm:
7
- - ruby-head
8
- - 2.6.1
9
- - 2.5.3
10
- - 2.4.5
11
- - 2.3.8
12
- - 2.2
13
- - 2.1
14
- - 2.0
15
- - jruby-head
16
- - jruby-9.2.6.0
17
-
18
- matrix:
19
- allow_failures:
20
- - rvm: jruby-head
21
- - rvm: 2.3.8
22
- - rvm: 2.2
23
- - rvm: 2.1
24
- - rvm: 2.0