module Nucleus::Adapters::V1::Heroku::Buildpacks

Public Instance Methods

vendor_specific_runtimes() click to toggle source

@see BuildpackTranslator#vendor_specific_runtimes

# File lib/nucleus/adapters/v1/heroku/buildpacks.rb, line 9
def vendor_specific_runtimes
  {
    'ruby' => 'https://github.com/heroku/heroku-buildpack-ruby',
    'nodejs' => 'https://github.com/heroku/heroku-buildpack-nodejs',
    'clojure' => 'https://github.com/heroku/heroku-buildpack-clojure',
    'python' => 'https://github.com/heroku/heroku-buildpack-python',
    'java' => 'https://github.com/heroku/heroku-buildpack-java',
    'gradle' => 'https://github.com/heroku/heroku-buildpack-gradle',
    'grails' => 'https://github.com/heroku/heroku-buildpack-grails',
    'scala' => 'https://github.com/heroku/heroku-buildpack-scala',
    'play' => 'https://github.com/heroku/heroku-buildpack-play',
    'php' => 'https://github.com/heroku/heroku-buildpack-php'
  }
end