nofxx-pickler 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/pickler/runner.rb +4 -1
- data/pickler.gemspec +1 -1
- metadata +1 -1
data/lib/pickler/runner.rb
CHANGED
|
@@ -508,7 +508,10 @@ Show only stories assigned to yourself. Note: You must set 'username'
|
|
|
508
508
|
on ~/.tracker.yml.
|
|
509
509
|
EOF
|
|
510
510
|
process do
|
|
511
|
-
|
|
511
|
+
unless username = pickler.config['username']
|
|
512
|
+
raise Error, "echo username: <your-initials> ~/.tracker.yml"
|
|
513
|
+
end
|
|
514
|
+
Pickler.run(["search", "--mywork=#{username}"])
|
|
512
515
|
end
|
|
513
516
|
end
|
|
514
517
|
|
data/pickler.gemspec
CHANGED