Skip to content

Instantly share code, notes, and snippets.

@nnay13
nnay13 / gist:1152580
Created August 17, 2011 20:49
Progress bar
... just some proof-of-concept snippets ...
inspired by: http://www.ruby-forum.com/topic/87404
# move cursor to beginning of line
cr = "\r"
@nnay13
nnay13 / gist:1104864
Created July 25, 2011 18:54
Encoding variables
#!/bin/ruby
# YGX 25/07/2011
# Display the encondings
puts "Ruby Version : #{RUBY_VERSION} - #{ENV['RUBY_VERSION']} "
puts "Plateform : #{RUBY_PLATFORM}"
puts "RVM version : #{ENV['rvm_version']}"
puts "\n"
puts "Source encoding : #{__ENCODING__}"
puts "Default external : #{Encoding.default_external}"