Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 974e054

Browse files
committedFeb 4, 2014
README: add some examples
1 parent 5e0a28d commit 974e054

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
 

‎README.md

+32
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,38 @@ EventSource
8989
-----------
9090
Event sources have been implemented and are easily configurable with blocks.
9191

92+
```ruby
93+
Browser::EventSource.new '/events' do |es|
94+
es.on :message do |e|
95+
alert e.data
96+
end
97+
98+
es.on :custom do |e|
99+
alert "custom #{e.data}"
100+
end
101+
end
102+
103+
Database SQL
104+
------------
105+
WebSQL has been fully wrapped.
106+
107+
```ruby
108+
db = Browser::Database::SQL.new 'test'
109+
db.transaction {|t|
110+
t.query('CREATE TABLE test(ID INTEGER PRIMARY KEY ASC, text TEXT)').then {
111+
t.query('INSERT INTO test (id, text) VALUES(?, ?)', 1, 'huehue')
112+
}.then {
113+
t.query('INSERT INTO test (id, text) VALUES(?, ?)', 2, 'jajaja')
114+
}.then {
115+
t.query('SELECT * FROM test')
116+
}.then {|r|
117+
r.each {|row|
118+
alert row.inspect
119+
}
120+
}
121+
}
122+
```
123+
92124
History
93125
-------
94126
The HTML5 History API has been fully wrapped.

0 commit comments

Comments
 (0)
Please sign in to comment.