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

Commits on Dec 5, 2015

  1. Copy the full SHA
    4cb2f4a View commit details
  2. Copy the full SHA
    7ecd505 View commit details
Showing with 10 additions and 1 deletion.
  1. +9 −0 .travis.yml
  2. +1 −1 rakelib/release.rb
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -37,6 +37,15 @@ notifications:
on_failure: always
on_start: always
matrix:
exclude:
- compiler: gcc
os: linux
- compiler: clang
os: linux
- compiler: gcc
os: osx
- compiler: clang
os: osx
include:
- env: RVM=rbx-2
os: osx
2 changes: 1 addition & 1 deletion rakelib/release.rb
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ def release_revision

def release_date
if git_directory
m = `git show --no-patch --format="%ci" HEAD`.match(/^(\d+-\d+-\d+)/)
m = `git show --format="%ci" HEAD`.lines.first.match(/^(\d+-\d+-\d+)/)
date = m[1]
end