2016-06-01 05:45:28 +00:00
|
|
|
class Emojify < Formula
|
|
|
|
desc "Emoji on the command-line :scream:"
|
|
|
|
homepage "https://github.com/mrowa44/emojify"
|
2016-06-27 22:04:37 +00:00
|
|
|
url "https://github.com/mrowa44/emojify/archive/v1.0.2.tar.gz"
|
|
|
|
sha256 "a75d49d623f92974d7852526591d5563c27b7655c20ebdd66a07b8a47dae861c"
|
2016-06-01 05:45:28 +00:00
|
|
|
head "https://github.com/mrowa44/emojify.git"
|
|
|
|
|
|
|
|
bottle :unneeded
|
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install "emojify"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
input = "Hey, I just :raising_hand: you, and this is :scream: , but here's my :calling: , so :telephone_receiver: me, maybe?"
|
|
|
|
expected = "Hey, I just 🙋 you, and this is 😱 , but here's my 📲 , so 📞 me, maybe?"
|
|
|
|
assert_equal(expected, shell_output("#{bin}/emojify \"#{input}\"").strip)
|
|
|
|
end
|
|
|
|
end
|