pivotal-cli 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/bin/pivotal +1 -1
- data/lib/pivotal_cli/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
data/bin/pivotal
CHANGED
@@ -101,7 +101,7 @@ command :branch do |c|
|
|
101
101
|
end
|
102
102
|
|
103
103
|
# Make sure feature is estimated (can't start otherwise)
|
104
|
-
if story.estimate < 0
|
104
|
+
if story.story_type == 'feature' && story.estimate < 0
|
105
105
|
question = Rainbow("How many points in the story (0-8)? ").green
|
106
106
|
points = ask(question, Integer) { |q| q.in = 0..8 }
|
107
107
|
@tracker.set_points(story, points)
|
data/lib/pivotal_cli/version.rb
CHANGED