Sha256: 8c97c63cfe98cdbf4095fee6618ab2db2a7b20567037e3e40e6f157fb04bb3ab
Contents?: true
Size: 1017 Bytes
Versions: 32
Compression:
Stored size: 1017 Bytes
Contents
module Locomotive module Wagon module Generators module Site class Foundation4 < Base may_use_haml def choose_haml_over_html if haml? remove_file File.join(self.destination, 'app/views/pages/index.liquid') remove_file File.join(self.destination, 'app/views/pages/404.liquid') remove_file File.join(self.destination, 'app/views/snippets/footer.liquid') else remove_file File.join(self.destination, 'app/views/pages/index.liquid.haml') remove_file File.join(self.destination, 'app/views/pages/404.liquid.haml') remove_file File.join(self.destination, 'app/views/snippets/footer.liquid.haml') end end def bundle_install super end end Locomotive::Wagon::Generators::Site.register(:foundation4, Foundation4, %{ A site powered by Foundation (v4.3.2). }) end end end end
Version data entries
32 entries across 32 versions & 1 rubygems