Method: RunLoop::Environment.solution
- Defined in:
- lib/run_loop/environment.rb
.solution ⇒ Object
Returns the value of SOLUTION which can be used to specify a Xamarin Studio .sln
This is useful if your project has multiple solutions (.sln) and Calabash cannot detect the correct one.
75 76 77 78 79 80 81 82 |
# File 'lib/run_loop/environment.rb', line 75 def self.solution value = ENV["SOLUTION"] if value.nil? || value == "" nil else File.(value) end end |