├── .github ├── release-please.yml ├── release-trigger.yml └── workflows │ └── ci.yml ├── .gitignore ├── .kokoro ├── populate-secrets.sh ├── release.cfg ├── release.sh └── trampoline_v2.sh ├── .release-please-manifest.json ├── .rubocop.yml ├── .toys ├── .toys.rb ├── ci.rb └── release.rb ├── .trampolinerc ├── .yardopts ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── appengine.gemspec ├── lib ├── appengine.rb └── appengine │ ├── env.rb │ ├── exec.rb │ ├── railtie.rb │ ├── tasks.rb │ ├── util │ └── gcloud.rb │ └── version.rb ├── release-please-config.json └── test └── test_env.rb /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/release-trigger.yml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/release.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.kokoro/release.cfg -------------------------------------------------------------------------------- /.kokoro/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.kokoro/release.sh -------------------------------------------------------------------------------- /.kokoro/trampoline_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.kokoro/trampoline_v2.sh -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.7.0" 3 | } 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.toys/.toys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.toys/.toys.rb -------------------------------------------------------------------------------- /.toys/ci.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.toys/ci.rb -------------------------------------------------------------------------------- /.toys/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.toys/release.rb -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.trampolinerc -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /appengine.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/appengine.gemspec -------------------------------------------------------------------------------- /lib/appengine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/lib/appengine.rb -------------------------------------------------------------------------------- /lib/appengine/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/lib/appengine/env.rb -------------------------------------------------------------------------------- /lib/appengine/exec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/lib/appengine/exec.rb -------------------------------------------------------------------------------- /lib/appengine/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/lib/appengine/railtie.rb -------------------------------------------------------------------------------- /lib/appengine/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/lib/appengine/tasks.rb -------------------------------------------------------------------------------- /lib/appengine/util/gcloud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/lib/appengine/util/gcloud.rb -------------------------------------------------------------------------------- /lib/appengine/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/lib/appengine/version.rb -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/release-please-config.json -------------------------------------------------------------------------------- /test/test_env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-ruby/HEAD/test/test_env.rb --------------------------------------------------------------------------------