aesthetify 1.1.0 → 1.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 +4 -4
- data/.gitattributes +0 -0
- data/.gitignore +0 -0
- data/.travis.yml +4 -19
- data/Gemfile +0 -0
- data/LICENSE +0 -0
- data/README.md +5 -4
- data/Rakefile +0 -0
- data/aesthetify.gemspec +3 -3
- data/lib/aesthetify.rb +0 -0
- data/test/aesthetify_test.rb +0 -0
- metadata +15 -14
- data/Gemfile.lock +0 -25
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b7df15e3665b5abf1b176ffd2c9841a83b6100bd5748b21873bb6ef2dbe5e95
|
|
4
|
+
data.tar.gz: 4afb727e31db47f4b6810261aee0d15bff20f161d44506ea1c4f72af73c1aa4f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6775420adacf43afd4c79b49ab1da6b09687052314e7bc084aa703004c28eab3910c956d4977a9982c433a3f947a118f78e5f1ea4806472b9fd0ed1e509b8a61
|
|
7
|
+
data.tar.gz: 2ff4e081cadf00830f13a680d76bb1c5e94d86d2ff31032db9cb5e3a6567ee1b0e48b01cceaa71516efad4421d6401668fdbb211fb88f0610ed54f6b5d21afae
|
data/.gitattributes
CHANGED
|
File without changes
|
data/.gitignore
CHANGED
|
File without changes
|
data/.travis.yml
CHANGED
|
@@ -1,24 +1,9 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
rvm:
|
|
3
|
-
-
|
|
4
|
-
-
|
|
5
|
-
- 2.
|
|
6
|
-
- 2.
|
|
7
|
-
- 2.4.5
|
|
8
|
-
- 2.4.4
|
|
9
|
-
- 2.4.3
|
|
10
|
-
- 2.4.2
|
|
11
|
-
- 2.4.1
|
|
12
|
-
- 2.4.0
|
|
13
|
-
- 2.3.8
|
|
14
|
-
- 2.3.7
|
|
15
|
-
- 2.3.6
|
|
16
|
-
- 2.3.5
|
|
17
|
-
- 2.3.4
|
|
18
|
-
- 2.3.3
|
|
19
|
-
- 2.3.2
|
|
20
|
-
- 2.3.1
|
|
21
|
-
- 2.3.0
|
|
3
|
+
- 3.1.2
|
|
4
|
+
- 3.0.4
|
|
5
|
+
- 2.7.6
|
|
6
|
+
- 2.6.10
|
|
22
7
|
script:
|
|
23
8
|
- bundle exec rake test
|
|
24
9
|
before_install:
|
data/Gemfile
CHANGED
|
File without changes
|
data/LICENSE
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
@@ -50,10 +50,11 @@ $ aesthetify macintosh plus
|
|
|
50
50
|
|
|
51
51
|
## Supported Ruby versions
|
|
52
52
|
aesthetify supports all of the currently supported versions of Ruby. As of
|
|
53
|
-
|
|
54
|
-
- Ruby 2.
|
|
55
|
-
- Ruby 2.
|
|
56
|
-
- Ruby
|
|
53
|
+
2022-11-17 these are:
|
|
54
|
+
- Ruby 2.6 - 2.6.10
|
|
55
|
+
- Ruby 2.7 - 2.7.9
|
|
56
|
+
- Ruby 3.0 - 3.0.4
|
|
57
|
+
- Ruby 3.1 - 3.1.2
|
|
57
58
|
|
|
58
59
|
## License
|
|
59
60
|
aesthetify is licensed under the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
CHANGED
|
File without changes
|
data/aesthetify.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "aesthetify"
|
|
3
|
-
s.version = "1.1.
|
|
3
|
+
s.version = "1.1.1"
|
|
4
4
|
s.authors = "TheAssailant"
|
|
5
5
|
s.email = "TheAssailant@protonmail.com"
|
|
6
6
|
s.summary = %q{aesthetify is a gem that lets you transform ASCII text into fullwidth text of 2 distinct flavors: regular Fullwidth and AESTHETIC}
|
|
@@ -10,9 +10,9 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.executables << "aesthetify" << "fullwidth"
|
|
11
11
|
s.require_paths = ['lib']
|
|
12
12
|
|
|
13
|
-
s.required_ruby_version = "
|
|
13
|
+
s.required_ruby_version = [">= 2.3", "< 4"]
|
|
14
14
|
|
|
15
|
-
s.add_development_dependency "bundler"
|
|
15
|
+
s.add_development_dependency "bundler"
|
|
16
16
|
s.add_development_dependency "minitest"
|
|
17
17
|
s.add_development_dependency "minitest-proveit"
|
|
18
18
|
s.add_development_dependency "rake"
|
data/lib/aesthetify.rb
CHANGED
|
File without changes
|
data/test/aesthetify_test.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aesthetify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TheAssailant
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-11-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '0'
|
|
20
20
|
type: :development
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: minitest
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
-
description:
|
|
69
|
+
description:
|
|
70
70
|
email: TheAssailant@protonmail.com
|
|
71
71
|
executables:
|
|
72
72
|
- aesthetify
|
|
@@ -78,7 +78,6 @@ files:
|
|
|
78
78
|
- ".gitignore"
|
|
79
79
|
- ".travis.yml"
|
|
80
80
|
- Gemfile
|
|
81
|
-
- Gemfile.lock
|
|
82
81
|
- LICENSE
|
|
83
82
|
- README.md
|
|
84
83
|
- Rakefile
|
|
@@ -91,24 +90,26 @@ homepage: https://github.com/TheAssailant/aesthetify
|
|
|
91
90
|
licenses:
|
|
92
91
|
- MIT
|
|
93
92
|
metadata: {}
|
|
94
|
-
post_install_message:
|
|
93
|
+
post_install_message:
|
|
95
94
|
rdoc_options: []
|
|
96
95
|
require_paths:
|
|
97
96
|
- lib
|
|
98
97
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
99
98
|
requirements:
|
|
100
|
-
- - "
|
|
99
|
+
- - ">="
|
|
101
100
|
- !ruby/object:Gem::Version
|
|
102
101
|
version: '2.3'
|
|
102
|
+
- - "<"
|
|
103
|
+
- !ruby/object:Gem::Version
|
|
104
|
+
version: '4'
|
|
103
105
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
106
|
requirements:
|
|
105
107
|
- - ">="
|
|
106
108
|
- !ruby/object:Gem::Version
|
|
107
109
|
version: '0'
|
|
108
110
|
requirements: []
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
signing_key:
|
|
111
|
+
rubygems_version: 3.3.3
|
|
112
|
+
signing_key:
|
|
112
113
|
specification_version: 4
|
|
113
114
|
summary: 'aesthetify is a gem that lets you transform ASCII text into fullwidth text
|
|
114
115
|
of 2 distinct flavors: regular Fullwidth and AESTHETIC'
|
data/Gemfile.lock
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
aesthetify (1.0.2)
|
|
5
|
-
|
|
6
|
-
GEM
|
|
7
|
-
remote: https://rubygems.org/
|
|
8
|
-
specs:
|
|
9
|
-
minitest (5.11.3)
|
|
10
|
-
minitest-proveit (1.0.0)
|
|
11
|
-
minitest (> 5, < 7)
|
|
12
|
-
rake (12.3.2)
|
|
13
|
-
|
|
14
|
-
PLATFORMS
|
|
15
|
-
ruby
|
|
16
|
-
|
|
17
|
-
DEPENDENCIES
|
|
18
|
-
aesthetify!
|
|
19
|
-
bundler (~> 1.15)
|
|
20
|
-
minitest
|
|
21
|
-
minitest-proveit
|
|
22
|
-
rake
|
|
23
|
-
|
|
24
|
-
BUNDLED WITH
|
|
25
|
-
1.17.1
|