Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ddollar/remember-the-ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
ddollar committed Dec 1, 2009
2 parents 22a9f35 + d3fbf4a commit be3b9bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.0
4 changes: 3 additions & 1 deletion lib/rtr/commands.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,16 @@ class Commands
register_method :tasks do |options|

plain = options.include?('plain')
fresh = options.include?('fresh')

header = "Outstanding Tasks"
header = header.white.bold unless plain

puts header
puts

tasks = $storage[:tasks] || api.default_list.tasks
tasks = $storage[:tasks] unless fresh
tasks ||= api.default_list.tasks

tasks.sorted_by('name').each do |task|

Expand Down
4 changes: 2 additions & 2 deletions remember-the-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{remember-the-ruby}
s.version = "1.1.0"
s.version = "1.2.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["David Dollar"]
s.date = %q{2009-10-21}
s.date = %q{2009-11-04}
s.default_executable = %q{rtr}
s.description = %q{http://peervoice.com/software/remember-the-ruby}
s.email = %q{<ddollar@gmail.com>}
Expand Down

0 comments on commit be3b9bb

Please sign in to comment.