Giter Club home page Giter Club logo

ansi_color's Introduction

ansi_color

Add some simple methods that allow you to colourise and style your Strings with lovely Ruby syntactic sugar.

Examples

require 'rubygems'
require 'ansi_color'

AnsiColor.print('plain string')
# => "plain string"

AnsiColor.puts('plain string')
# => "plain string\n"

AnsiColor.print('coloured string', :color => :red,
	:background => :black,
	:effects => [:blink, :bold])
# => "\e[31;40;5;1mcoloured string\e[0m"

AnsiColor.puts('coloured string', :color => :red,
	:background => :black,
	:effects => [:blink, :bold])
# => "\e[31;40;5;1mcoloured string\e[0m\n"

AnsiColor.red
# => 31

AnsiColor.red_background
# => 41

AnsiColor.blink
# => 5

Having AnsiColor options in your puts

require 'rubygems'
require 'ansi_color'

    include AnsiColor::StdOut	

    puts "hello", :color => :blue
    print "indeed", :effect => :bold
puts "ruby is so cool", :red 

Adding colour methods to String

This doesn't work properly!

Chaining methods works but isn't particularly ingenious.

require 'rubygems'
require 'ansi_color'

class String
	include AnsiColor::String
end

'coloured string'.red.bold.blink
# => "\e[5m\e[1m\e[31mcoloured string\e[0m\e[0m\e[0m"

ansi_color's People

Contributors

comboy avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.