public
Description: The Maybe Monad in idiomatic Ruby
Homepage:
Clone URL: git://github.com/raganwald/andand.git
Click here to lend your support to: andand and make a donation at www.pledgie.com !
andand / script / destroy
100755 15 lines (12 sloc) 0.369 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env ruby
APP_ROOT = File.join(File.dirname(__FILE__), '..')
 
begin
  require 'rubigen'
rescue LoadError
  require 'rubygems'
  require 'rubigen'
end
require 'rubigen/scripts/destroy'
 
ARGV.shift if ['--help', '-h'].include?(ARGV[0])
RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
RubiGen::Scripts::Destroy.new.run(ARGV)