Sha256: e9cf5a334a624659dd56ab9da8de58739dcf1dcf516e66c50628e3d46297e53d
Contents?: true
Size: 915 Bytes
Versions: 1
Compression:
Stored size: 915 Bytes
Contents
# This gem takes a string and outputs ASCII art, generated by the # FIGLET library. While it defaults to the 'big' font, an optional # flag can be passed (-f or --font) with a string following it # (e.g., slant) that will change the font that is used. # # The ruby Figlet implementation was written by Tim Fletcher # (twoggle@gmail.com), and will only be curosrily maintained # by the author of this rubygem (Michael Tierney, # dev@panpainter.com). # # Author:: Michael Tierney (mailto:dev@panpainter.com) # Copyright:: Copyright (c) 2010 Michael Tierney # License:: Distributed under the MIT License require 'artii/base' require 'artii/figlet' module Artii FONTPATH = File.expand_path(File.dirname(__FILE__) + '/../lib/figlet/fonts') def self.is_19? RUBY_VERSION[0, 3] == "1.9" end def self.encoding_of(string) if is_19? string.encoding.to_s else $KCODE end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
artii-1.0.3 | lib/artii.rb |