class Feature
Private Instance Methods
inform_creation_finished()
click to toggle source
# File lib/caperoma/models/tasks/feature.rb, line 25 def inform_creation_finished puts 'A new feature started' end
inform_creation_started()
click to toggle source
# File lib/caperoma/models/tasks/feature.rb, line 21 def inform_creation_started puts 'Starting a new feature' end
issue_type()
click to toggle source
# File lib/caperoma/models/tasks/feature.rb, line 17 def issue_type project.feature_jira_task_id end
story_type()
click to toggle source
# File lib/caperoma/models/tasks/feature.rb, line 13 def story_type 'feature' end
this_is_a_type_a_user_wants_to_create?()
click to toggle source
# File lib/caperoma/models/tasks/feature.rb, line 9 def this_is_a_type_a_user_wants_to_create? project.create_features_in_pivotal end