Sha256: f8c657e29c63ea5ed06fc146f1154f5990c07370623380cb253bd2bb48f2618c

Contents?: true

Size: 1.05 KB

Versions: 14

Compression:

Stored size: 1.05 KB

Contents

# encoding: utf-8
#--
#   Copyright (C) 2012-2013 Gitorious AS
#
#   This program is free software: you can redistribute it and/or modify
#   it under the terms of the GNU Affero General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU Affero General Public License for more details.
#
#   You should have received a copy of the GNU Affero General Public License
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
#++
require "sinatra/base"
require "dolt/sinatra/actions"

module Dolt
  module Sinatra
    class Base < ::Sinatra::Base
      attr_reader :actions, :renderer
      include Dolt::Sinatra::Actions

      def initialize(actions, renderer)
        @actions = actions
        @renderer = renderer
        super()
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
dolt-0.25.0 ./lib/dolt/sinatra/base.rb
dolt-0.24.0 ./lib/dolt/sinatra/base.rb
dolt-0.23.0 ./lib/dolt/sinatra/base.rb
dolt-0.22.0 ./lib/dolt/sinatra/base.rb
dolt-0.21.0 ./lib/dolt/sinatra/base.rb
dolt-0.20.0 ./lib/dolt/sinatra/base.rb
dolt-0.19.0 ./lib/dolt/sinatra/base.rb
dolt-0.18.0 ./lib/dolt/sinatra/base.rb
dolt-0.17.0 ./lib/dolt/sinatra/base.rb
dolt-0.16.0 ./lib/dolt/sinatra/base.rb
dolt-0.15.0 ./lib/dolt/sinatra/base.rb
dolt-0.14.0 ./lib/dolt/sinatra/base.rb
dolt-0.13.0 ./lib/dolt/sinatra/base.rb
dolt-0.12.0 ./lib/dolt/sinatra/base.rb