Displaying 1 result from an estimated 1 matches for "sweepcach".
Did you mean:
sweepcache
2006 Jul 28
0
GEM-based rails application installer
...full installer that supports installs, upgrades, db backups and
restores, and all of the other things that the Typo installer currently
provides. Adding application-specific installer subcommands is easy. Here''s
the `sweep_cache` implementation from Typo''s installer:
class SweepCache < RailsInstaller::Command
help "Sweep Typo''s cache"
def self.command(installer, *args)
installer.sweep_cache
end
end
That''s all that''s needed to implement the `typo sweep_cache /some/path`
installer command. Er, exce...