GitXplorerGitXplorer
h

atom-project-runner

public
4 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
1fc61e9806dddd00ff563f4649c1fcf970a627f7

Update README.md

hhirohisa committed 9 years ago
Unverified
f0ac5ed39fdf12d411b73c49a057715486b232d4

Update README.md

hhirohisa committed 9 years ago
Unverified
88fcf1d75b51147d6a5878c7fc5bb92488f14bc2

Bump version to 0.5.1

hhirohisa committed 9 years ago
Unverified
e912ce1e789ef5da2443a18b834f0c40bc6060f3

Merge pull request #13 from hirohisa/fix/failure_path

hhirohisa committed 9 years ago
Unverified
65302203de1e705656fa28e2cc537ac3f11eebcb

Bugfix: default path is `project-runner`'s directory path

hhirohisa committed 9 years ago
Unverified
37ea70fafdade620517b40506e0c77080bb8953d

Rename LICENSE.md to LICENSE

hhirohisa committed 9 years ago

README

The README file for this repository.

atom-project-runner

Run project's code in Atom.

Package version Build Status

Commands

  • to run with configuration file for building, if shows result then hide.

  • ⌘-r OSX

  • ctrl-r win32, Linux

  • to test with configuration file for building , if shows result then hide.

  • ⌘-u OSX

  • ctrl-u win32, Linux

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

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

Rakefile

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

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