lib/wally/search_features.rb in wally-0.0.11 vs lib/wally/search_features.rb in wally-0.0.12

- old
+ new

@@ -12,9 +12,12 @@ @lists_features.features.each do |feature| feature_text = feature["name"] if feature["tags"] feature_text += " " + feature["tags"].map { |tag| tag["name"] }.join(" ") end + if feature["description"] + feature_text += " " + feature["description"] + end feature_data = OpenStruct.new feature_data.feature = feature feature_data.text = feature_text searchables << feature_data