Sha256: 9c22c9fd06f189c5cedd4945798d76b49c5c18ce2baf41f7fcb7e252295bd6b7

Contents?: true

Size: 269 Bytes

Versions: 3

Compression:

Stored size: 269 Bytes

Contents

#!/usr/bin/env ruby
# encoding: utf-8

require 'bundler'

Bundler.setup

require 'devtools'

command = ARGV.first

case command
when 'init'   then Devtools.init
when 'sync'   then Devtools.sync
when 'update' then Devtools.update
else
  puts 'command not supported'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
devtools-0.1.2 bin/devtools
devtools-0.1.1 bin/devtools
devtools-0.1.0 bin/devtools