Sha256: 5337320b4bbb019b0ad94de8f785a5f6c820dfcca4eaffc0b3902d476a2f38e1

Contents?: true

Size: 436 Bytes

Versions: 1

Compression:

Stored size: 436 Bytes

Contents

module Authentication
  include BangBang::ServiceConfig

  class Controller < ::BangBang::Controller
    set :dump_errors, false
  end
  register_controller Controller

  class Views < ::BangBang::Views
  end

  class Routes < NamedRoutes::Routes
  end

  init(
    :views => Views,
    :routes => Routes,
    :root_dir => File.expand_path("#{File.dirname(__FILE__)}/.."),
    :named_routes => Routes,
    :views_class => Views
  )
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bang-bang-0.2.1 spec/fixture-app/services/authentication/lib/authentication.rb