Sha256: c39f897321edd4a96fca87eceaf85909810bb84b7c300aea971779c598dd14d6

Contents?: true

Size: 463 Bytes

Versions: 1

Compression:

Stored size: 463 Bytes

Contents

#!/usr/bin/env ruby

require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'osrcry'))

case ARGV.first && ARGV.first.downcase
when 'contributing', 'contributing.md'
  Osrcry::Contributing.execute
when 'contributors', 'contributors.md'
  Osrcry::Contributors.execute
when 'license', 'license.md'
  Osrcry::License.execute
when 'stale'
  Osrcry::Stale.execute
else
  puts "Please specify: `contributing`, `contributors`, `license` or `stale`"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
osrcry-0.0.2 bin/osrcry