aesthetify 1.0.2 → 1.1.0

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
- SHA1:
3
- metadata.gz: f8c24e3ce07a09528f6b44ca8ce305af19b42bd4
4
- data.tar.gz: ff3009ef2a9086ed3b8b952471823e4f01f7edd8
2
+ SHA256:
3
+ metadata.gz: 6f4bc79310f500dc92898ac2e485f5111f9792c182394ca72c05103b70c20a55
4
+ data.tar.gz: 72968417fb22200e8de8c85a2bd072c31704fe9adc8c9a8aa1480304ea64a785
5
5
  SHA512:
6
- metadata.gz: 54a274d8ad67143a316f15e044887d9a118c18f3d52db3ad2da590f591c04975a60363a6a06486fb8cb70f141e801c6df2f348e655a741c85bf3592ff9ab728e
7
- data.tar.gz: 5e03b05eae75d7d4885963d9847ebcf1aa8e11c729d9e0e28dd9b219c12a75fb7c46892028ea026df6a87a951b81e464324f60c2b708790bec1e16a3a949eb15
6
+ metadata.gz: 3920bffd2518c3661e5d06c884f6dc60d6745f4791bdaaac6db6a5bf8000f2d63152f0b44231043a04544d469d504ba89d3c93c25009f000704dd6220c44ec5c
7
+ data.tar.gz: fc33b0f4c8c3545eaae9f7e1a1c9b19e9b06419022c0ff6ebc2e0609ad4f3bd2fe837a7a4a1592869a2c893136aec8d8a9d4b0e0d9d6ae395220284cb74ff21b
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
- /bin/*.gem
1
+ Gemfile.lock
2
+ /build
@@ -1,12 +1,16 @@
1
1
  language: ruby
2
2
  rvm:
3
+ - 2.5.3
4
+ - 2.5.2
3
5
  - 2.5.1
4
6
  - 2.5.0
7
+ - 2.4.5
5
8
  - 2.4.4
6
9
  - 2.4.3
7
10
  - 2.4.2
8
11
  - 2.4.1
9
12
  - 2.4.0
13
+ - 2.3.8
10
14
  - 2.3.7
11
15
  - 2.3.6
12
16
  - 2.3.5
@@ -9,7 +9,7 @@ GEM
9
9
  minitest (5.11.3)
10
10
  minitest-proveit (1.0.0)
11
11
  minitest (> 5, < 7)
12
- rake (12.3.1)
12
+ rake (12.3.2)
13
13
 
14
14
  PLATFORMS
15
15
  ruby
@@ -22,4 +22,4 @@ DEPENDENCIES
22
22
  rake
23
23
 
24
24
  BUNDLED WITH
25
- 1.16.1
25
+ 1.17.1
data/README.md CHANGED
@@ -39,12 +39,21 @@ puts text
39
39
  #=> This is the SAD BOYS club
40
40
  ```
41
41
 
42
+ ## CLI usage
43
+
44
+ Simply call either the `aesthetify` or `fullwidth` commands and enter your text after.
45
+
46
+ ```bash
47
+ $ aesthetify macintosh plus
48
+ MACINTOSH PLUS
49
+ ```
50
+
42
51
  ## Supported Ruby versions
43
52
  aesthetify supports all of the currently supported versions of Ruby. As of
44
- 2018-03-30 these are:
45
- - Ruby 2.3 - 2.3.7
46
- - Ruby 2.4 - 2.4.4
47
- - Ruby 2.5 - 2.5.1
53
+ 2018-12-19 these are:
54
+ - Ruby 2.3 - 2.3.8
55
+ - Ruby 2.4 - 2.4.5
56
+ - Ruby 2.5 - 2.5.3
48
57
 
49
58
  ## License
50
59
  aesthetify is licensed under the [MIT License](https://opensource.org/licenses/MIT).
@@ -1,12 +1,15 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "aesthetify"
3
- s.version = "1.0.2"
3
+ s.version = "1.1.0"
4
4
  s.authors = "TheAssailant"
5
- s.email = "TheAssailant@users.noreply.github.com"
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}
5
+ s.email = "TheAssailant@protonmail.com"
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}
7
7
  s.homepage = "https://github.com/TheAssailant/aesthetify"
8
8
  s.license = "MIT"
9
9
 
10
+ s.executables << "aesthetify" << "fullwidth"
11
+ s.require_paths = ['lib']
12
+
10
13
  s.required_ruby_version = "~> 2.3"
11
14
 
12
15
  s.add_development_dependency "bundler", "~> 1.15"
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "aesthetify"
5
+
6
+ puts ARGV.join(" ").aesthetify
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "aesthetify"
5
+
6
+ puts ARGV.join(" ").fullwidth
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aesthetify
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - TheAssailant
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-04 00:00:00.000000000 Z
11
+ date: 2018-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -67,8 +67,10 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  description:
70
- email: TheAssailant@users.noreply.github.com
71
- executables: []
70
+ email: TheAssailant@protonmail.com
71
+ executables:
72
+ - aesthetify
73
+ - fullwidth
72
74
  extensions: []
73
75
  extra_rdoc_files: []
74
76
  files:
@@ -81,6 +83,8 @@ files:
81
83
  - README.md
82
84
  - Rakefile
83
85
  - aesthetify.gemspec
86
+ - bin/aesthetify
87
+ - bin/fullwidth
84
88
  - lib/aesthetify.rb
85
89
  - test/aesthetify_test.rb
86
90
  homepage: https://github.com/TheAssailant/aesthetify
@@ -103,10 +107,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
103
107
  version: '0'
104
108
  requirements: []
105
109
  rubyforge_project:
106
- rubygems_version: 2.6.11
110
+ rubygems_version: 2.7.8
107
111
  signing_key:
108
112
  specification_version: 4
109
- summary: "aesthetify is a gem that lets you transform ASCII text into fullwidth text
110
- of 2 distinct flavors: regular \uFEFFFullwidth and AESTHETIC"
113
+ summary: 'aesthetify is a gem that lets you transform ASCII text into fullwidth text
114
+ of 2 distinct flavors: regular Fullwidth and AESTHETIC'
111
115
  test_files:
112
116
  - test/aesthetify_test.rb