public
Description: Apresentações para SS
Homepage: http://forum.rubyonbr.org/forums/5/topics/3525
Clone URL: git://github.com/nofxx/screencast_br.git
screencast_br / git / script / destroy
100755 15 lines (12 sloc) 0.36 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env ruby
APP_ROOT = File.expand_path(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! [:codex, :test_unit]
RubiGen::Scripts::Destroy.new.run(ARGV)