Sha256: b4feecb5f73ce57d026593a15d0b0ea1040b14a338bf86ea645e3c9182018002

Contents?: true

Size: 483 Bytes

Versions: 5

Compression:

Stored size: 483 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 odex_test.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

5 entries across 5 versions & 1 rubygems

Version Path
odex-0.0.6 README.md
odex-0.0.5 README.md
odex-0.0.4 README.md
odex-0.0.3 README.md
odex-0.0.2 README.md