Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 139b534a8e14
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1fb1d45be760
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jan 18, 2014

  1. Typo

    elia committed Jan 18, 2014

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4ae559e View commit details
  2. Fix path in example Gemfile

    elia committed Jan 18, 2014
    Copy the full SHA
    1fb1d45 View commit details
Showing with 3 additions and 3 deletions.
  1. +1 −1 examples/rack/Gemfile
  2. +1 −1 examples/sinatra/Gemfile
  3. +1 −1 lib/opal/nodes/array.rb
2 changes: 1 addition & 1 deletion examples/rack/Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
source 'https://rubygems.org'

gem 'opal', :path => '../../../'
gem 'opal', :path => '../../'
2 changes: 1 addition & 1 deletion examples/sinatra/Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source 'https://rubygems.org'

gem 'opal', :path => '../../../opal'
gem 'opal', :path => '../../opal'
gem 'sinatra'
2 changes: 1 addition & 1 deletion lib/opal/nodes/array.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'opal/nodes/array'
require 'opal/nodes/base'

module Opal
module Nodes