Skip to content

Instantly share code, notes, and snippets.

@rrgayhart
Created February 9, 2017 21:23
Show Gist options
  • Save rrgayhart/326d96bcd933bb94b320b307bda46dc7 to your computer and use it in GitHub Desktop.
Save rrgayhart/326d96bcd933bb94b320b307bda46dc7 to your computer and use it in GitHub Desktop.
feedback.md
# poll.js

  def self.check_name(string)
    array = normal.select do |ingredient|
      string.downcase.include?(ingredient.downcase.pluralize) ||
      string.downcase.include?(ingredient.downcase)
    end
    if array.any?
      array.first
    else
      check_secondary(string)
    end
  end
# app.js

  def other code
    I do stuff
  end

From this file From this repo

These are my thoughts!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment