Welcome to mirror list, hosted at ThFree Co, Russian Federation.

twine « bin - github.com/mapsme/twine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin/twine
blob: da3cf272a8c968d335ad9994c8296d0f8a8dba03 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env ruby
require 'twine'
begin
  Twine::Runner.run(ARGV)
rescue Twine::Error => e
  abort e.message
end