atom-project-runner

Run project's code in Atom.

1
0
1
CoffeeScript
public
Forked

atom-project-runner

Run project’s code in Atom.

Commands

  • ⌘-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.

screenshot success
screenshot fail

Installation

apm install project-runner

Setup

Make configuration file Makefile or Rakefile.
Set the file to directory on project’s root path.

Makefile


run:
  ruby example/test_run.rb
test:
  ruby example/test_test.rb

Rakefile


task :run do
  ruby "example/test_run.rb"
end

task :test do
  ruby "example/test_test.rb"
end

TODO

  • make run then auto save
  • support other files for building
v0.3.1[beta]