Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/redding/deas

"day-us": Handler-based web framework powered by Sinatra (for now)
https://github.com/redding/deas

ruby web-framework

Last synced: 2 months ago
JSON representation

"day-us": Handler-based web framework powered by Sinatra (for now)

Awesome Lists containing this project

README

        

# Deas

Handler-based web framework powered by Sinatra.

## Usage

```ruby
# in your rackup file (or whatever)

require 'deas'

class MyServer
include Deas::Server

router do
get '/', 'HelloWorldHandler'
end

end

class HellowWorldHandler
include Deas::ViewHandler

def run!
body "

Hello World

"
end

end

server = MyServer.new
run server
```

## Installation

Add this line to your application's Gemfile:

gem 'deas'

And then execute:

$ bundle

Or install it yourself as:

$ gem install deas

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request