GithubHelp home page GithubHelp logo

mieko / opal Goto Github PK

View Code? Open in Web Editor NEW

This project forked from opal/opal

0.0 3.0 0.0 8.04 MB

Ruby to Javascript compiler

Home Page: http://opalrb.org

License: MIT License

Ruby 96.78% JavaScript 3.22%

opal's Introduction

Opal

Build Status Gem Version Code Climate

Opal is a ruby to javascript source-to-source compiler. It also has an implementation of the ruby corelib.

Opal is hosted on github, and there is a Freenode IRC channel at #opal, ask questions on stackoverflow (tag #opalrb).

Inline docs Gitter chat Stack Overflow

Usage

See the website, http://opalrb.org.

Compiling ruby code

Opal.compile is a simple interface to just compile a string of ruby into a string of javascript code.

Opal.compile("puts 'wow'")  # => "(function() { ... })()"

Running this by itself is not enough, you need the opal runtime/corelib.

Building the corelib

Opal::Builder can be used to build the runtime/corelib into a string.

Opal::Builder.build('opal') #=> "(function() { ... })()"

Running compiled code

You can write the above two strings to file, and run as:

<!DOCTYPE html>
<html>
  <head>
    <script src="opal.js"></script>
    <script src="app.js"></script>
  </head>
</html>

Just open a browser to this page and view the console.

Running tests

First, install dependencies:

$ bundle install

RubySpec related repos must be cloned as a gitsubmodules:

$ git submodule update --init

The test suite can be run using (requires phantomjs):

$ rake

This will command will run all RSpec and MSpec examples in sequence.

Automated runs

A Guardfile with decent mappings between specs and lib/corelib/stdlib files is in place. Run bundle exec guard -i to have it started.

MSpec

MSpec tests can be run with:

$ rake mspec

Alternatively, you can just load up a rack instance using rackup spec/config.ru, and visit http://localhost:9292/ in any web browser.

Rspec

RSpec tests can be run with

$ rake rspec

Code Overview

What code is supposed to run where?

  • lib/ code runs inside your ruby env. It compiles ruby to javascript.
  • opal/ is the runtime/corelib for our implementation (runs in browser)
  • stdlib/ is our implementation of ruby stdlib. It is optional (for browser).

lib

The lib directory holds the opal parser/compiler used to compile ruby into javascript. It is also built ready for the browser into opal-parser.js to allow compilation in any javascript environment.

corelib

This directory holds the opal runtime and corelib implemented in ruby and javascript.

stdlib

Holds the stdlib that opal currently supports. This includes Observable, StringScanner, Date, etc.

spec

  • rubyspecs (file) a whitelist of RubySpec files to be ran
  • corelib RubySpec examples (submodule)
  • stdlib rubysl-* examples (submodules)
  • filters The list of MSpec/RubySpec examples that are either bugs or unsupported
  • opal opal additions/special behaviour in the runtime/corelib
  • cli specs for opal lib (parser, lexer, grammar, compiler etc)

Browser support

  • Internet Explorer 6+
  • Firefox (Current - 1) or Current
  • Chrome (Current - 1) or Current
  • Safari 5.1+
  • Opera 12.1x or (Current - 1) or Current

Any problem above browsers should be considered and reported as a bug.

(Current - 1) or Current denotes that we support the current stable version of the browser and the version that preceded it. For example, if the current version of a browser is 24.x, we support the 24.x and 23.x versions.

12.1x or (Current - 1) or Current denotes that we support Opera 12.1x as well as last 2 versions of Opera. For example, if the current Opera version is 20.x, we support Opera 12.1x, 19.x and 20.x but not Opera 15.x through 18.x.

Cross-browser testing sponsored by BrowserStack.

License

(The MIT License)

Copyright (C) 2013 by Adam Beynon

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

opal's People

Contributors

adambeynon avatar alexch avatar aostrega avatar bitdeli-chef avatar chesterbr avatar davispuh avatar douwem avatar elia avatar falti avatar fermuch avatar fntz avatar hayley avatar honnza avatar jgaskins avatar jibi avatar josh avatar kylekyle avatar marcandre avatar meh avatar mieko avatar mojavelinux avatar netoneko avatar peter-leonov avatar rubys avatar ryanstout avatar svoboda-jan avatar vendethiel avatar wstrinz avatar yhara avatar yoshizow avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.