├── .document ├── .gitignore ├── .rvmrc ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.rdoc ├── Rakefile ├── VERSION ├── bin └── hoof ├── ext ├── Makefile └── nss_hoof.c ├── hoof.gemspec ├── lib ├── hoof.rb └── hoof │ ├── application.rb │ ├── application_pool.rb │ ├── cli.rb │ ├── control_server.rb │ ├── http_server.rb │ ├── https_server.rb │ └── unicorn_config.rb └── test ├── helper.rb └── test_hoof.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/.gitignore -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm gemset use global 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.7 -------------------------------------------------------------------------------- /bin/hoof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/bin/hoof -------------------------------------------------------------------------------- /ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/ext/Makefile -------------------------------------------------------------------------------- /ext/nss_hoof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/ext/nss_hoof.c -------------------------------------------------------------------------------- /hoof.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/hoof.gemspec -------------------------------------------------------------------------------- /lib/hoof.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/lib/hoof.rb -------------------------------------------------------------------------------- /lib/hoof/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/lib/hoof/application.rb -------------------------------------------------------------------------------- /lib/hoof/application_pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/lib/hoof/application_pool.rb -------------------------------------------------------------------------------- /lib/hoof/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/lib/hoof/cli.rb -------------------------------------------------------------------------------- /lib/hoof/control_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/lib/hoof/control_server.rb -------------------------------------------------------------------------------- /lib/hoof/http_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/lib/hoof/http_server.rb -------------------------------------------------------------------------------- /lib/hoof/https_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/lib/hoof/https_server.rb -------------------------------------------------------------------------------- /lib/hoof/unicorn_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/lib/hoof/unicorn_config.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_hoof.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyromaniac/hoof/HEAD/test/test_hoof.rb --------------------------------------------------------------------------------