Skip to content

Commit

Permalink
Version bumped to 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nidev committed Aug 29, 2015
1 parent 80e96fa commit 48264df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion lib/rbitter/progress.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ def putback
def draw sentence
$> << sentence
if sentence.length < @@last_draw
$> << " "*(@@last_draw - sentence.length)
clear_char_len = @@last_draw - sentence.length
clear_char_len.times {
$> << " "
}
end
@@last_draw = sentence.length
putback
Expand Down
2 changes: 1 addition & 1 deletion lib/rbitter/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Rbitter
PRODUCT_NAME = "Rbitter"
VERSION = "0.2.2"
VERSION = "0.2.3"

def major
VERSION.match(/^([0-9]+)\./)[1]
Expand Down

0 comments on commit 48264df

Please sign in to comment.