pt 0.5.6 → 0.5.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Changelog.md +5 -1
  2. data/lib/pt.rb +1 -1
  3. data/lib/pt/ui.rb +2 -2
  4. metadata +2 -2
@@ -1,6 +1,10 @@
1
1
  # pt changelog
2
2
 
3
- ## v0.5.5
3
+ ## v0.5.7
4
+
5
+ Fixed `pt list [username]` ( stephencelis )
6
+
7
+ ## v0.5.6
4
8
 
5
9
  Added `pt list all` which shows tickets from all members of the project ( kylewest )
6
10
 
data/lib/pt.rb CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  module PT
4
4
  class InputError < StandardError; end
5
- VERSION = '0.5.6'
5
+ VERSION = '0.5.7'
6
6
  end
7
7
 
8
8
  require 'pt/client'
@@ -40,7 +40,7 @@ class PT::UI
40
40
  else
41
41
  user = find_owner @params[0]
42
42
  if user
43
- stories = @client.get_my_work(@project, user.name)
43
+ stories = @client.get_my_work(@project, user)
44
44
  PT::TasksTable.new(stories).print @global_config
45
45
  end
46
46
  end
@@ -425,7 +425,7 @@ class PT::UI
425
425
  puts("pt list all # list all tasks for all users")
426
426
  puts("pt updates [number] # shows number recent activity from your current project")
427
427
  puts("")
428
- puts("All commands can be ran without arguments for a wizard like UI.")
428
+ puts("All commands can be run without arguments for a wizard like UI.")
429
429
  end
430
430
 
431
431
  protected
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.6
4
+ version: 0.5.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2012-08-23 00:00:00.000000000 Z
14
+ date: 2012-10-09 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: pivotal-tracker