Class: Crow
- Inherits:
-
Sinatra::Base
- Object
- Sinatra::Base
- Crow
- Defined in:
- lib/crow.rb
Instance Method Summary collapse
-
#initialize(root_path, opts = {}) ⇒ Crow
constructor
A new instance of Crow.
Constructor Details
#initialize(root_path, opts = {}) ⇒ Crow
Returns a new instance of Crow.
3 4 5 6 7 |
# File 'lib/crow.rb', line 3 def initialize(root_path, opts={}) super(nil) @root_path = root_path @opts = opts end |