- build logstash-lite

This commit is contained in:
Jordan Sissel 2010-11-18 08:30:37 -08:00
parent 597a89a7e8
commit 081a9a7282

View file

@ -38,10 +38,13 @@ end
task :package do
system("gem build logstash.gemspec")
system("gem build logstash-lite.gemspec")
end
task :publish do
latest_gem = %x{ls -t logstash*.gem}.split("\n").first
system("gem push #{latest_gem}")
latest_lite_gem = %x{ls -t logstash-lite*.gem}.split("\n").first
system("gem push #{latest_lite_gem}")
end