diff --git a/aesthetify.gemspec b/aesthetify.gemspec index 2973200..2878f96 100644 --- a/aesthetify.gemspec +++ b/aesthetify.gemspec @@ -1,12 +1,15 @@ Gem::Specification.new do |s| s.name = "aesthetify" - s.version = "1.0.2" + s.version = "1.1.0" s.authors = "TheAssailant" - s.email = "TheAssailant@users.noreply.github.com" - s.summary = %q{aesthetify is a gem that lets you transform ASCII text into fullwidth text of 2 distinct flavors: regular Fullwidth and AESTHETIC} + s.email = "TheAssailant@protonmail.com" + s.summary = %q{aesthetify is a gem that lets you transform ASCII text into fullwidth text of 2 distinct flavors: regular Fullwidth and AESTHETIC} s.homepage = "https://github.com/TheAssailant/aesthetify" s.license = "MIT" + s.executables << "aesthetify" << "fullwidth" + s.require_paths = ['lib'] + s.required_ruby_version = "~> 2.3" s.add_development_dependency "bundler", "~> 1.15" diff --git a/bin/aesthetify b/bin/aesthetify new file mode 100644 index 0000000..aad478b --- /dev/null +++ b/bin/aesthetify @@ -0,0 +1,6 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +require "aesthetify" + +puts ARGV.join(" ").aesthetify diff --git a/bin/fullwidth b/bin/fullwidth new file mode 100644 index 0000000..697e626 --- /dev/null +++ b/bin/fullwidth @@ -0,0 +1,6 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +require "aesthetify" + +puts ARGV.join(" ").fullwidth