nofxx-pickler 0.1.1 → 0.1.2
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/README.rdoc +7 -5
- data/lib/pickler/runner.rb +1 -1
- data/lib/pickler/tracker.rb +6 -0
- data/lib/pickler.rb +1 -1
- data/pickler.gemspec +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -16,6 +16,7 @@ containing a tracker.yml file.
|
|
16
16
|
pickler --help
|
17
17
|
|
18
18
|
"ssl" defaults to false if not configured in the yml file.
|
19
|
+
"username" is the keyword to use in 'todo' search, your name or initials.
|
19
20
|
|
20
21
|
For details about the Pivotal Tracker API, including where to find your API
|
21
22
|
token and project id, see http://www.pivotaltracker.com/help/api .
|
@@ -58,13 +59,13 @@ Push a given feature and change its state to finished.
|
|
58
59
|
|
59
60
|
List all stories assigned to your username.
|
60
61
|
|
61
|
-
pickler
|
62
|
+
pickler bug Something
|
62
63
|
|
63
|
-
|
64
|
+
Opensi a bug with "Something" as title. Try "chore" too.
|
64
65
|
|
65
|
-
pickler bug
|
66
|
+
pickler bug
|
66
67
|
|
67
|
-
|
68
|
+
If you don`t provide a title, pickler will open your $EDITOR.
|
68
69
|
|
69
70
|
pickler --help
|
70
71
|
|
@@ -76,7 +77,8 @@ Further help for a given command.
|
|
76
77
|
|
77
78
|
piv <command>
|
78
79
|
|
79
|
-
|
80
|
+
Alias for your fingers sake.
|
81
|
+
|
80
82
|
|
81
83
|
== Disclaimer
|
82
84
|
|
data/lib/pickler/runner.rb
CHANGED
@@ -466,7 +466,7 @@ Requires launchy (gem install launchy).
|
|
466
466
|
st = Pickler::Tracker::Story.new(pickler.project)
|
467
467
|
st.story_type = type
|
468
468
|
st.name = title
|
469
|
-
st.description = paragraphs.join
|
469
|
+
st.description = paragraphs.join
|
470
470
|
puts st.save ? "#{type.capitalize} created." : "Problems..."
|
471
471
|
end
|
472
472
|
end
|
data/lib/pickler/tracker.rb
CHANGED
@@ -14,6 +14,12 @@ class Pickler
|
|
14
14
|
|
15
15
|
def initialize(token, ssl = false)
|
16
16
|
require 'active_support'
|
17
|
+
# Use nokogiri when avaiable
|
18
|
+
begin
|
19
|
+
require 'nokogiri'
|
20
|
+
ActiveSupport::XmlMini.backend = 'Nokogiri'
|
21
|
+
rescue MissingSourceFile
|
22
|
+
end
|
17
23
|
@token = token
|
18
24
|
@ssl = ssl
|
19
25
|
end
|
data/lib/pickler.rb
CHANGED
data/pickler.gemspec
CHANGED