sourcify 0.4.2 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,42 +0,0 @@
1
- # Hacking RVM
2
- module RVM
3
- module Shell
4
- class AbstractWrapper
5
- def raw_stdout_to_parts(c)
6
- raise IncompleteCommandError if !command_complete?(c)
7
- before, after = c.split(COMMAND_EPILOG_START, 2)
8
- epilog, after = after.split(COMMAND_EPILOG_END, 2)
9
- # HACK .. need to apply gsub to prevent yaml-related error
10
- return before, YAML.load(epilog.strip.gsub("\\\"\n","\"\n")), after
11
- end
12
- end
13
- end
14
- end
15
-
16
- # See http://github.com/tomas-stefano/infinity_test/wiki/Customize-Infinity-Test
17
- infinity_test do
18
-
19
- # Sets bacon mute to avoid excessive noise that makes it hard to pinpoint errors
20
- ENV['MUTE_BACON'] = 'true'
21
-
22
- # Avoids ParseTree's segmentation fault
23
- require 'fileutils'
24
- before(:each_ruby) do
25
- Dir["#{ENV['HOME']}/.ruby_inline/*ParseTree*"].each{|f| FileUtils.rm(f) }
26
- end
27
-
28
- use \
29
- :test_framework => :bacon,
30
- :rubies => %w(
31
- ruby-1.9.2-p136@sourcify
32
- ruby-1.9.2-p0@sourcify
33
- ruby-1.9.1-p378@sourcify
34
- ruby-1.8.7-p330@sourcify
35
- ree-1.8.7-2010.02@sourcify
36
- ruby-1.8.7-p330@sourcify-parsetree
37
- ree-1.8.7-2010.02@sourcify-parsetree
38
- ruby-1.8.6-p420@sourcify-parsetree
39
- ree-1.8.6-20090610@sourcify-parsetree
40
- jruby-1.5.6@sourcify
41
- )
42
- end