Sha256: f37fb07e1644275e5529293b6d1ccb2b2c8f9d0e12a24bca4c142b5b32fd135a
Contents?: true
Size: 1.29 KB
Versions: 4
Compression:
Stored size: 1.29 KB
Contents
# Dependencies contains all required gems, helpers and core configuration class <%= @class_name %> < Sinatra::Application bundler_require_dependencies # Required middleware use Rack::Session::Cookie use Rack::Flash # Includes all necessary sinatra_more helpers register SinatraMore::MarkupPlugin register SinatraMore::RenderPlugin register SinatraMore::MailerPlugin register SinatraMore::RoutingPlugin # Requires the initializer modules which configure specific components Dir[File.dirname(__FILE__) + '/initializers/*.rb'].each do |file| # Each initializer file contains a module called 'XxxxInitializer' (i.e HassleInitializer) require file file_class = File.basename(file, '.rb').classify register "#{file_class}Initializer".constantize end # Returns the list of load paths for this sinatra application def self.file_loading_paths ["lib/**/*.rb", "app/helpers/**/*.rb", "app/routes/**/*.rb", "app/models/*.rb", "app/mailers/*.rb"] end # Require all the folders and files necessary to run the application file_loading_paths.each { |load_path| Dir[root_path(load_path)].each { |file| require file } } # Require Warden plugin below to allow User to be loaded register SinatraMore::WardenPlugin # Required helpers helpers ViewHelpers end
Version data entries
4 entries across 4 versions & 1 rubygems