Skip to content

Commit 350ccb8

Browse files
committed
wip
1 parent aad8296 commit 350ccb8

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,16 @@ before_script:
3131

3232
script: "script/run_build 2>&1"
3333

34+
after_script: script/dump_gem_make
35+
3436
rvm:
37+
- 1.9.3
38+
- 1.9.2
3539
- 1.8.7
3640
- 2.3.0
3741
- 2.2
3842
- 2.1
3943
- 2.0.0
40-
- 1.9.3
41-
- 1.9.2
4244

4345
env:
4446
- RAILS_VERSION='~> 4.2.0'

script/dump_gem_make

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
find /home/travis/.rvm -name 'mkmf.log' | while read file
4+
do
5+
echo ===== $file
6+
cat $file
7+
done

0 commit comments

Comments
 (0)