Skip to content

Commit

Permalink
Add executables for cli aesthetification
Browse files Browse the repository at this point in the history
  • Loading branch information
heyitspaul committed Dec 19, 2018
1 parent b26eb5b commit 0b0a080
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
9 changes: 6 additions & 3 deletions aesthetify.gemspec
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions bin/aesthetify
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

require "aesthetify"

puts ARGV.join(" ").aesthetify
6 changes: 6 additions & 0 deletions bin/fullwidth
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

require "aesthetify"

puts ARGV.join(" ").fullwidth

0 comments on commit 0b0a080

Please sign in to comment.