Skip to content

Commit 45ad4d4

Browse files
committed
added project page
1 parent 3353d5b commit 45ad4d4

File tree

2 files changed

+95
-0
lines changed

2 files changed

+95
-0
lines changed

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
theme: jekyll-theme-cayman

index.md

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
## Welcome to mruby-pong page
2+
3+
[![Build Status](https://travis-ci.org/nsheremet/mruby-pong.svg?branch=master)](https://travis-ci.org/nsheremet/mruby-pong) [![MRuby Version](https://img.shields.io/badge/mruby-v1.3.0-green.svg)](https://github.com/mruby/mruby)
4+
5+
MRuby-pong it's a simple web server for building simple Sinatra-like applications.
6+
7+
![mruby-pong-example](https://i.imgur.com/2Cvm6ba.gif)
8+
9+
## Installation
10+
11+
Add line to your `build_config.rb`
12+
13+
```ruby
14+
MRuby::Build.new do |config|
15+
# some lines of your config
16+
config.gem :github => 'nsheremet/mruby-pong'
17+
# other lines of your config
18+
end
19+
```
20+
21+
## Usage
22+
23+
Simple App:
24+
25+
```ruby
26+
app = Pong.new
27+
28+
app.get '/' do
29+
html '<h1>Hello from PONG</h1>'
30+
end
31+
32+
app.run
33+
```
34+
35+
Your can user custom configuration:
36+
37+
```ruby
38+
app = Pong.new({
39+
port: 8080,
40+
threads: 24,
41+
debug: true
42+
})
43+
```
44+
45+
Request handling examples:
46+
47+
```ruby
48+
app.post '/users' do |request|
49+
# request have a structure
50+
# {
51+
# params: {Hash},
52+
# headers: {Hash},
53+
# method: {String}, additional fields,
54+
# url: {String}, additional fields
55+
# }
56+
57+
params: request[:params]
58+
59+
json Hash[params: params], 201, headers # Status Code and Headers are optional
60+
end
61+
```
62+
63+
What I need to return in action?
64+
65+
```ruby
66+
# HTML
67+
html page, status_code, headers # page is string with HTML content
68+
69+
# JSON
70+
json hash, status_code, headers
71+
72+
# Redirect
73+
redirect_to '/' # accept only one String param
74+
75+
# RAW hash
76+
# You can return what you want, just create hash with required 'Content-Type' header
77+
{
78+
headers: { 'Content-Type' => 'text/xml' }, # You need to setup Content-Type headers
79+
status: 200,
80+
body: '<note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don\'t foget me this weekend!</body></note>'
81+
}
82+
83+
```
84+
85+
## Contributing
86+
87+
See [CONTRIBUTING](https://github.com/nsheremet/mruby-pong/blob/master/CONTRIBUTING.md) for details.
88+
89+
90+
## License
91+
92+
`mruby-pong` is primarily distributed under the terms of Mozilla Public License 2.0.
93+
94+
See [LICENSE](https://github.com/nsheremet/mruby-pong/blob/master/LICENSE) for details.

0 commit comments

Comments
 (0)