Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/redding/deas
- Owner: redding
- License: mit
- Created: 2013-03-28T12:18:52.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2018-04-29T00:55:44.000Z (over 6 years ago)
- Last Synced: 2024-10-18T18:21:03.887Z (3 months ago)
- Topics: ruby, web-framework
- Language: Ruby
- Homepage:
- Size: 614 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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::Serverrouter do
get '/', 'HelloWorldHandler'
endend
class HellowWorldHandler
include Deas::ViewHandlerdef run!
body "Hello World
"
endend
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