decaf

Ruby in the browser.

  • 所有者: timimahoney/decaf
  • 平台:
  • 許可證:
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

Decaf

Decaf is a modification of WebKit that runs Ruby in the browser. Use Ruby to access the DOM, work with the web standards, and even print to the inspector. Now, you can build an entire web application in Ruby instead of JavaScript.

To use Ruby in the browser, either download a binary or build it yourself.

<script type='text/ruby'>
    window.onload do
        introduction = document.create_element('p')
        introduction.inner_text = 'Hello, world!'
        document.body.append_child(introduction)
    end
</script>

Using Ruby in the Browser

The same web platform APIs used by JavaScript are available in Ruby. If you're not familiar with JavaScript and the DOM, then check out these resources:

Differences from JavaScript

There are a few major differences between the APIs in JavaScript and Ruby.

  • In Ruby, methods and attributes are specified in underscore_case instead of camelCase.
  • The window variable is accessible from only the top-most scope. Elsewhere you can use the global $window.
  • Ruby accepts Procs and blocks as callbacks and listeners. For example:
# Ruby with implicit blocks
$window.set_timeout(1000) { console.log('Hello!') }
$window.onload do, event, console.log('The window loaded.')
end

# Ruby with explicit Procs
$window.set_timeout(Proc.new { console.log('Hello!') }, 1000)
$window.onload = Proc.new do, event, console.log('The window loaded.')
end

Final Notes

If you find any problems, then please report them in the issues section.

主要指標

概覽
名稱與所有者timimahoney/decaf
主編程語言C++
編程語言Emacs Lisp (語言數: 27)
平台
許可證
所有者活动
創建於2013-04-03 02:46:50
推送於2013-05-27 19:59:53
最后一次提交
發布數3
最新版本名稱0.2 (發布於 )
第一版名稱0.1 (發布於 )
用户参与
星數468
關注者數20
派生數8
提交數132.2k
已啟用問題?
問題數18
打開的問題數8
拉請求數0
打開的拉請求數0
關閉的拉請求數0
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?