Sha256: d5d519808ca3bdb726d078ee0b774850f9e2dfc90a624f77b337c59d913e0f20
Contents?: true
Size: 446 Bytes
Versions: 3
Compression:
Stored size: 446 Bytes
Contents
#!/usr/bin/env ruby require 'twitter_bot_generator' begin if !ARGV[0] || ARGV[0] == '--help' puts 'twitter_bot_generator <yr_bots_name_camel_cased>' puts '## creates a new directory called <yr_bots_name_camel_cased> in the current working directory, ' puts 'and fills it with a bunch of boilerplate goodness' else TwitterBotGenerator.generate ARGV[0].gsub('-', '_') end rescue puts 'something horrible has happened' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
twitter_bot_generator-0.1.6 | bin/twitter_bot_generator |
twitter_bot_generator-0.1.5 | bin/twitter_bot_generator |
twitter_bot_generator-0.1.4 | bin/twitter_bot_generator |