Skip to content

cart/atom-project-runner

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Run project's code in Atom.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors