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: f6928bba7418
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1b1ad8d83683
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Oct 27, 2014

  1. Prefer Opal over $opal

    elia committed Oct 27, 2014

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    faad291 View commit details
  2. Use latest Ruby 2.1

    elia committed Oct 27, 2014
    Copy the full SHA
    5c40704 View commit details
  3. Use the faster mspec_node for the main test

    rake mspec will still be ran in allow failure bu Ruby 2.0
    elia committed Oct 27, 2014
    Copy the full SHA
    1b1ad8d View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 .travis.yml
  2. +1 −1 Rakefile
  3. +1 −1 stdlib/pathname.rb
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -6,14 +6,14 @@ matrix:
fast_finish: true

include:
- rvm: 2.1.1
- rvm: 2.1
env: RUN=default

- rvm: 1.9.3
env: RUN=rspec

- rvm: 2.0.0
env: RUN=rspec
env: RUN="rspec mspec"

- rvm: rbx
env: RUN=rspec
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ MSpec::Opal::RakeTask.new(:mspec) do |config|
config.basedir = ENV['MSPEC_BASEDIR'] if ENV['MSPEC_BASEDIR']
end

task :default => [:rspec, :mspec, :mspec_node]
task :default => [:rspec, :mspec_node]


task :mspec_node do
2 changes: 1 addition & 1 deletion stdlib/pathname.rb
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ def sub(*args)
end

def cleanpath
`return $opal.normalize_loadable_path(#@path)`
`return Opal.normalize_loadable_path(#@path)`
end

def to_path