├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── app.json └── images ├── add-dyno.gif └── deploy.gif /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/ruboty-template/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/ruboty-template/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | bot: bundle exec ruboty 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/ruboty-template/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | task :default 2 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/ruboty-template/HEAD/app.json -------------------------------------------------------------------------------- /images/add-dyno.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/ruboty-template/HEAD/images/add-dyno.gif -------------------------------------------------------------------------------- /images/deploy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/ruboty-template/HEAD/images/deploy.gif --------------------------------------------------------------------------------