├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── bin ├── ghostbuster └── setup-ghostbuster ├── ghostbuster.gemspec ├── lib ├── ghostbuster.coffee ├── ghostbuster.rb └── ghostbuster │ ├── config.rb │ ├── install_rake.rb │ ├── rake.rb │ ├── runner.rb │ ├── shell.rb │ └── version.rb └── test ├── non_working_ghost ├── Gemfile ├── Ghostfile ├── start.sh ├── stop.sh ├── test_ghost.coffee ├── test_ghostmore.coffee └── test_withoutroot.js ├── server1 ├── Gemfile ├── config.ru ├── start.sh ├── stop.sh └── views │ ├── form.erb │ ├── index.erb │ └── slow.erb └── working_ghost ├── Gemfile ├── Ghostfile ├── Rakefile ├── start.sh ├── stop.sh ├── test_ghost.coffee ├── test_ghostmore.coffee └── test_injs.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | *.png 6 | test/server1/log -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/ghostbuster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/bin/ghostbuster -------------------------------------------------------------------------------- /bin/setup-ghostbuster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/bin/setup-ghostbuster -------------------------------------------------------------------------------- /ghostbuster.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/ghostbuster.gemspec -------------------------------------------------------------------------------- /lib/ghostbuster.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/lib/ghostbuster.coffee -------------------------------------------------------------------------------- /lib/ghostbuster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/lib/ghostbuster.rb -------------------------------------------------------------------------------- /lib/ghostbuster/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/lib/ghostbuster/config.rb -------------------------------------------------------------------------------- /lib/ghostbuster/install_rake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/lib/ghostbuster/install_rake.rb -------------------------------------------------------------------------------- /lib/ghostbuster/rake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/lib/ghostbuster/rake.rb -------------------------------------------------------------------------------- /lib/ghostbuster/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/lib/ghostbuster/runner.rb -------------------------------------------------------------------------------- /lib/ghostbuster/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/lib/ghostbuster/shell.rb -------------------------------------------------------------------------------- /lib/ghostbuster/version.rb: -------------------------------------------------------------------------------- 1 | class Ghostbuster 2 | VERSION = '0.3.11' 3 | end -------------------------------------------------------------------------------- /test/non_working_ghost/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/non_working_ghost/Gemfile -------------------------------------------------------------------------------- /test/non_working_ghost/Ghostfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/non_working_ghost/Ghostfile -------------------------------------------------------------------------------- /test/non_working_ghost/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/non_working_ghost/start.sh -------------------------------------------------------------------------------- /test/non_working_ghost/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/non_working_ghost/stop.sh -------------------------------------------------------------------------------- /test/non_working_ghost/test_ghost.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/non_working_ghost/test_ghost.coffee -------------------------------------------------------------------------------- /test/non_working_ghost/test_ghostmore.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/non_working_ghost/test_ghostmore.coffee -------------------------------------------------------------------------------- /test/non_working_ghost/test_withoutroot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/non_working_ghost/test_withoutroot.js -------------------------------------------------------------------------------- /test/server1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/server1/Gemfile -------------------------------------------------------------------------------- /test/server1/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/server1/config.ru -------------------------------------------------------------------------------- /test/server1/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/server1/start.sh -------------------------------------------------------------------------------- /test/server1/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/server1/stop.sh -------------------------------------------------------------------------------- /test/server1/views/form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/server1/views/form.erb -------------------------------------------------------------------------------- /test/server1/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/server1/views/index.erb -------------------------------------------------------------------------------- /test/server1/views/slow.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/server1/views/slow.erb -------------------------------------------------------------------------------- /test/working_ghost/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/working_ghost/Gemfile -------------------------------------------------------------------------------- /test/working_ghost/Ghostfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/working_ghost/Ghostfile -------------------------------------------------------------------------------- /test/working_ghost/Rakefile: -------------------------------------------------------------------------------- 1 | require 'ghostbuster/install_rake' 2 | -------------------------------------------------------------------------------- /test/working_ghost/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/working_ghost/start.sh -------------------------------------------------------------------------------- /test/working_ghost/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/working_ghost/stop.sh -------------------------------------------------------------------------------- /test/working_ghost/test_ghost.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/working_ghost/test_ghost.coffee -------------------------------------------------------------------------------- /test/working_ghost/test_ghostmore.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/working_ghost/test_ghostmore.coffee -------------------------------------------------------------------------------- /test/working_ghost/test_injs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuddy/ghostbuster/HEAD/test/working_ghost/test_injs.js --------------------------------------------------------------------------------