Run project’s code in Atom.
⌘-r
to run with configuration file for building, if shows result then hide.
⌘-u
to test with configuration file for building , if shows result then hide.


apm install project-runner
Make configuration file Makefile or Rakefile.
Set the file to directory on project’s root path.
run:
ruby example/test_run.rb
test:
ruby example/test_test.rb
task :run do
ruby "example/test_run.rb"
end
task :test do
ruby "example/test_test.rb"
end