Sha256: 4bfa338f9ceadbbc334ccf9296d320737103857275043d464f73410b5fce3936
Contents?: true
Size: 703 Bytes
Versions: 14
Compression:
Stored size: 703 Bytes
Contents
def init super sections.push :namespace @namespace = object end def namespace erb(:namespace) end def all_tags_by_letter hash = {} objects = tags objects = run_verifier(objects) objects.each {|o| (hash[o.value.to_s[1,1].upcase] ||= []) << o } hash end def tags @tags ||= Registry.all(:tag).sort_by {|l,o| l.value.to_s } end def features @features ||= Registry.all(:feature).sort {|x,y| x.value.to_s <=> y.value.to_s } end def feature_tags_with_all_scenario_tags(feature) feature.tags.collect {|t| t.value} + feature.scenarios.collect {|s| s.tags.collect {|t| t.value} }.flatten.uniq end def tagify(tag) %{<span class="tag" href="#{url_for tag}">#{tag.value}</span>} end
Version data entries
14 entries across 14 versions & 2 rubygems