Sha256: 0b42cfbf175b8f07b883705212bea67644b7598427a440633d34ca02657479d7
Contents?: true
Size: 456 Bytes
Versions: 16
Compression:
Stored size: 456 Bytes
Contents
module Localeapp module CLI class Update def initialize(output = $stdout) @output = output end def execute poller = Localeapp::Poller.new @output.puts("Localeapp update: checking for translations since #{poller.updated_at}") if poller.poll! @output.puts "Found and updated new translations" else @output.puts "No new translations" end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems