Displaying 1 result from an estimated 1 matches for "sweep_cach".
Did you mean:
sweep_cache
2006 Jul 28
0
GEM-based rails application installer
...s needed--as long as the installer gem is installed, this will
give you a 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...