├── .goxc.json ├── CHANGELOG.md ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ ├── code.google.com │ └── p │ │ └── gopass │ │ └── gopass.go │ ├── github.com │ ├── Scalingo │ │ ├── cli │ │ │ └── term │ │ │ │ ├── password_unix.go │ │ │ │ ├── password_windows.go │ │ │ │ ├── term_unix.go │ │ │ │ └── term_windows.go │ │ ├── envconfig │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── envconfig.go │ │ │ └── envconfig_test.go │ │ └── go-scalingo │ │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ │ ├── README.md │ │ │ ├── addons.go │ │ │ ├── addons_providers.go │ │ │ ├── apps.go │ │ │ ├── auth.go │ │ │ ├── collaborators.go │ │ │ ├── debug │ │ │ └── log.go │ │ │ ├── domains.go │ │ │ ├── env.go │ │ │ ├── errors.go │ │ │ ├── http.go │ │ │ ├── httpclient │ │ │ └── client.go │ │ │ ├── io │ │ │ ├── indent.go │ │ │ └── status.go │ │ │ ├── keys.go │ │ │ ├── login.go │ │ │ ├── logs.go │ │ │ ├── operations.go │ │ │ ├── run.go │ │ │ ├── signup.go │ │ │ ├── subresources.go │ │ │ ├── users.go │ │ │ └── users │ │ │ └── user.go │ ├── bgentry │ │ ├── go-netrc │ │ │ └── netrc │ │ │ │ ├── examples │ │ │ │ ├── bad_default_order.netrc │ │ │ │ └── good.netrc │ │ │ │ ├── netrc.go │ │ │ │ └── netrc_test.go │ │ └── heroku-go │ │ │ ├── .travis.yml │ │ │ ├── Godeps │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── account.go │ │ │ ├── account_feature.go │ │ │ ├── addon.go │ │ │ ├── addon_service.go │ │ │ ├── app.go │ │ │ ├── app_feature.go │ │ │ ├── app_test.go │ │ │ ├── app_transfer.go │ │ │ ├── collaborator.go │ │ │ ├── config_var.go │ │ │ ├── doc.go │ │ │ ├── domain.go │ │ │ ├── dyno.go │ │ │ ├── formation.go │ │ │ ├── gen │ │ │ ├── gen.rb │ │ │ └── schema.json │ │ │ ├── heroku.go │ │ │ ├── heroku_test.go │ │ │ ├── key.go │ │ │ ├── log_drain.go │ │ │ ├── log_session.go │ │ │ ├── oauth_authorization.go │ │ │ ├── oauth_client.go │ │ │ ├── oauth_token.go │ │ │ ├── organization.go │ │ │ ├── organization_app.go │ │ │ ├── organization_app_collaborator.go │ │ │ ├── organization_member.go │ │ │ ├── plan.go │ │ │ ├── rate_limit.go │ │ │ ├── region.go │ │ │ ├── release.go │ │ │ ├── slug.go │ │ │ ├── ssl_endpoint.go │ │ │ └── stack.go │ └── pborman │ │ └── uuid │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── node.go │ │ ├── seq_test.go │ │ ├── sql.go │ │ ├── sql_test.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── uuid_test.go │ │ ├── version1.go │ │ └── version4.go │ └── gopkg.in │ └── errgo.v1 │ ├── LICENSE │ ├── README.md │ ├── errors.go │ ├── errors_test.go │ └── export_test.go ├── LICENSE ├── README.md ├── app ├── app.go ├── containers.go └── env.go ├── config ├── auth.go ├── config.go └── heroku.go ├── git └── git.go ├── input └── confirmation.go ├── io └── io.go ├── main.go └── signals └── handler.go /.goxc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/.goxc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/gopass/gopass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/code.google.com/p/gopass/gopass.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/cli/term/password_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/cli/term/password_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/cli/term/password_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/cli/term/password_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/cli/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/cli/term/term_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/cli/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/cli/term/term_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/envconfig/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/envconfig/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/envconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/envconfig/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/envconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/envconfig/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/envconfig/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/envconfig/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/envconfig/envconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/envconfig/envconfig.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/envconfig/envconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/envconfig/envconfig_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/README.md: -------------------------------------------------------------------------------- 1 | # Go client for Scalingo API 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/addons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/addons.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/addons_providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/addons_providers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/apps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/apps.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/collaborators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/collaborators.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/debug/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/debug/log.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/domains.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/env.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/http.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/httpclient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/httpclient/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/io/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/io/indent.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/io/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/io/status.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/keys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/login.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/logs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/operations.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/run.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/signup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/signup.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/subresources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/subresources.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/users.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Scalingo/go-scalingo/users/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/Scalingo/go-scalingo/users/user.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/go-netrc/netrc/examples/bad_default_order.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/go-netrc/netrc/examples/bad_default_order.netrc -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/go-netrc/netrc/examples/good.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/go-netrc/netrc/examples/good.netrc -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/go-netrc/netrc/netrc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/go-netrc/netrc/netrc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/go-netrc/netrc/netrc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/go-netrc/netrc/netrc_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/Godeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/Godeps -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/account.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/account_feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/account_feature.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/addon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/addon.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/addon_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/addon_service.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/app.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/app_feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/app_feature.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/app_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/app_transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/app_transfer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/collaborator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/collaborator.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/config_var.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/config_var.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/domain.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/dyno.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/dyno.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/formation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/formation.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/gen/gen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/gen/gen.rb -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/gen/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/gen/schema.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/heroku.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/heroku.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/heroku_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/heroku_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/key.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/log_drain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/log_drain.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/log_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/log_session.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/oauth_authorization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/oauth_authorization.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/oauth_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/oauth_client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/oauth_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/oauth_token.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/organization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/organization.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/organization_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/organization_app.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/organization_app_collaborator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/organization_app_collaborator.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/organization_member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/organization_member.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/plan.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/rate_limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/rate_limit.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/region.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/release.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/slug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/slug.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/ssl_endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/ssl_endpoint.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/bgentry/heroku-go/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/bgentry/heroku-go/stack.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/json.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/json_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/seq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/seq_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/sql_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/uuid_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/version1.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pborman/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/github.com/pborman/uuid/version4.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/errgo.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/gopkg.in/errgo.v1/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/errgo.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/gopkg.in/errgo.v1/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/errgo.v1/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/gopkg.in/errgo.v1/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/errgo.v1/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/gopkg.in/errgo.v1/errors_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/errgo.v1/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/Godeps/_workspace/src/gopkg.in/errgo.v1/export_test.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/README.md -------------------------------------------------------------------------------- /app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/app/app.go -------------------------------------------------------------------------------- /app/containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/app/containers.go -------------------------------------------------------------------------------- /app/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/app/env.go -------------------------------------------------------------------------------- /config/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/config/auth.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/config/config.go -------------------------------------------------------------------------------- /config/heroku.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/config/heroku.go -------------------------------------------------------------------------------- /git/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/git/git.go -------------------------------------------------------------------------------- /input/confirmation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/input/confirmation.go -------------------------------------------------------------------------------- /io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/io/io.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/main.go -------------------------------------------------------------------------------- /signals/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scalingo/heroku2scalingo/HEAD/signals/handler.go --------------------------------------------------------------------------------