├── .gitignore ├── .ruby-version ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.txt ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── config.ru ├── hookhand.rb ├── test └── test.rb └── unicorn.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | script: bundle exec rake coverage 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/app.json -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/config.ru -------------------------------------------------------------------------------- /hookhand.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/hookhand.rb -------------------------------------------------------------------------------- /test/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMcQuaid/HookHand/HEAD/test/test.rb -------------------------------------------------------------------------------- /unicorn.rb: -------------------------------------------------------------------------------- 1 | worker_processes (ENV["WEB_CONCURRENCY"] || 3).to_i 2 | --------------------------------------------------------------------------------