Sha256: cd0a6a96ba7f3c2938ba67bc485c6fa610988093de1311ceeec06ba7e6de24a3
Contents?: true
Size: 462 Bytes
Versions: 71
Compression:
Stored size: 462 Bytes
Contents
module ActiveScaffold::DataStructures class Bridge def self.install raise(RunTimeError, "install not defined for bridge #{name}") end # by convention and default, use the bridge name as the required constant for installation def self.install? Object.const_defined? name.demodulize end def self.run install if install? end def self.stylesheets end def self.javascripts end end end
Version data entries
71 entries across 71 versions & 2 rubygems