Sha256: 64ca701514127c66129846c3f48774332cae361c85b12a8752d383d65ef591b4
Contents?: true
Size: 739 Bytes
Versions: 7
Compression:
Stored size: 739 Bytes
Contents
# This code is free software; you can redistribute it and/or modify it under # the terms of the new BSD License. # # Copyright (c) 2009-2010, Sebastian Staudt require 'rubikon/application/class_methods' require 'rubikon/application/dsl_methods' require 'rubikon/application/instance_methods' module Rubikon # The Application module contains all basic functionality of a Rubikon # application # # @author Sebastian Staudt # @since 0.2.0 module Application # The main class of Rubikon. Let your own application class inherit from # this one. # # @author Sebastian Staudt # @since 0.2.0 class Base extend ClassMethods include DSLMethods include InstanceMethods end end end
Version data entries
7 entries across 7 versions & 1 rubygems