├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── bin ├── console └── setup ├── config.ru ├── lib └── cron_for_github │ ├── app.rb │ └── app │ └── version.rb └── test ├── helper.rb └── test_cron.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/app.json -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | # config.ru 2 | 3 | run Proc.new { |env| ['200', {'Content-Type' => 'text/html'}, ['get rack\'d']] } 4 | -------------------------------------------------------------------------------- /lib/cron_for_github/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/lib/cron_for_github/app.rb -------------------------------------------------------------------------------- /lib/cron_for_github/app/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/lib/cron_for_github/app/version.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_cron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packsaddle/ruby-cron_for_github-app/HEAD/test/test_cron.rb --------------------------------------------------------------------------------