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: 11 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 (about 13 years ago)
- Default Branch: master
- Last Pushed: 2018-04-29T00:55:44.000Z (about 8 years ago)
- Last Synced: 2025-07-27T13:53:15.200Z (11 months ago)
- Topics: ruby, web-framework
- Language: Ruby
- Homepage:
- Size: 614 KB
- Stars: 2
- Watchers: 2
- 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::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