-
-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup "Process Management" #1 #257
Conversation
I think this should be reviewed "now". I create a follow-up PR to improve command execution a bit more. |
I want to use some debugger in my code and therefor need system() to execute my program | ||
In order to find a bug | ||
|
||
@debug |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -185,8 +185,8 @@ Then wire it all up in your `features/support/env.rb` file: | |||
require 'aruba' | |||
require 'aruba/in_process' | |||
|
|||
Aruba::InProcess.main_class = MyMain | |||
Aruba.process = Aruba::InProcess | |||
Aruba.process = Aruba::Processes::InProcess |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are quite a few classes around starting processes. That's why I namespaced them.
@mattwynne What do you think about that PR? It's just the beginning, but I hope this is the right direction. It lays the groundwork to introduce the new config in #258. |
@@ -0,0 +1,21 @@ | |||
module Aruba | |||
module Utils |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest Platform
as the name. Utils
is too general and could become a dumping-ground.
…_directory_for_process Cleanup "Process Management" #1
This one cleans up
Process Management
. Will create a new PR for the next iteration of cleanup.