File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,13 @@ matrix:
2626 - os : osx
2727 rvm : 2.0.0
2828
29- include :
3029 - os : osx
3130 rvm : 1.8.7
32- before_script : rvm install ruby-1.8.7 # not binary
33- # - os: osx
31+
32+ # include:
33+ # - os: osx
34+ # rvm: 1.9.3
35+ # before_script: rvm install ruby-1.9.3 # not binary
36+ # - os: osx
3437# rvm: 2.0.0
3538# before_script: rvm install ruby-2.0.0 # not binary
Original file line number Diff line number Diff line change @@ -134,11 +134,7 @@ def TestBase.find_free_port(port = 1098)
134134
135135 def create_file ( script_name , lines )
136136 file = File . join ( TMP_DIR , script_name )
137- script_path = RUBY_VERSION >= "1.9" ? File . realdirpath ( file ) : Pathname . new ( file ) . realpath . to_s
138- #path = Pathname.new(File.join(TMP_DIR, script_name))
139- #script_path = path.realdirpath.to_s
140- puts script_path
141- #puts path.realdirpath.absolute?
137+ script_path = RUBY_VERSION >= "1.9" ? File . realdirpath ( file ) : file . to_s
142138
143139 File . open ( script_path , "w" ) do |script |
144140 script . printf ( lines . join ( "\n " ) )
You can’t perform that action at this time.
0 commit comments