Sha256: 516455cf5a43140772f30970cee7bfbea0286d87ef0faee17d56c03c3e4df0aa
Contents?: true
Size: 479 Bytes
Versions: 1
Compression:
Stored size: 479 Bytes
Contents
# Odex. Small web framework. ```ruby # odex_test.rb require 'odex' class App < Odex::App get '/' do 'Hello world!' end end App.go(3000)! ``` Run the file: ```bash ruby myapp.rb ``` Install the gem: ```bash gem install odex ``` # Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
odex-0.0.1 | README.md |