Sha256: daa96b0c7b9ed59911f9f48684f7fbf6095ad97a9b6aa37b7ffcba9db5aae4ea
Contents?: true
Size: 791 Bytes
Versions: 33
Compression:
Stored size: 791 Bytes
Contents
require 'rake/tasklib' require 'ruby-progressbar' require 'rake/clean' module Simp; end module Simp::Rake; end module Simp::Rake::Build; end class Simp::Rake::Build::Helpers def initialize( dir = Dir.pwd ) Dir[ File.join(File.dirname(__FILE__),'*.rb') ].each do |rake_file| next if rake_file == __FILE__ require rake_file end Simp::Rake::Build::Auto.new( dir ) Simp::Rake::Build::Build.new( dir ) Simp::Rake::Build::Clean.new( dir ) Simp::Rake::Build::Code.new( dir ) Simp::Rake::Build::Deps.new( dir ) Simp::Rake::Build::Iso.new( dir ) Simp::Rake::Build::Pkg.new( dir ) Simp::Rake::Build::Spec.new( dir ) Simp::Rake::Build::Tar.new( dir ) Simp::Rake::Build::Upload.new( dir ) Simp::Rake::Build::Unpack.new( dir ) end end
Version data entries
33 entries across 33 versions & 1 rubygems