├── .dockerignore ├── .gitignore ├── Dockerfile ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ ├── code.google.com │ └── p │ │ └── go.crypto │ │ ├── bcrypt │ │ ├── base64.go │ │ ├── bcrypt.go │ │ └── bcrypt_test.go │ │ └── blowfish │ │ ├── block.go │ │ ├── blowfish_test.go │ │ ├── cipher.go │ │ └── const.go │ ├── github.com │ ├── Sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── entry.go │ │ │ ├── entry_test.go │ │ │ ├── examples │ │ │ ├── basic │ │ │ │ └── basic.go │ │ │ └── hook │ │ │ │ └── hook.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── formatter_bench_test.go │ │ │ ├── hook_test.go │ │ │ ├── hooks.go │ │ │ ├── hooks │ │ │ ├── airbrake │ │ │ │ └── airbrake.go │ │ │ ├── papertrail │ │ │ │ ├── README.md │ │ │ │ ├── papertrail.go │ │ │ │ └── papertrail_test.go │ │ │ ├── sentry │ │ │ │ ├── README.md │ │ │ │ ├── sentry.go │ │ │ │ └── sentry_test.go │ │ │ └── syslog │ │ │ │ ├── README.md │ │ │ │ ├── syslog.go │ │ │ │ └── syslog_test.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── logrus_test.go │ │ │ ├── terminal_darwin.go │ │ │ ├── terminal_freebsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_openbsd.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ ├── text_formatter_test.go │ │ │ └── writer.go │ ├── codegangsta │ │ └── inject │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inject.go │ │ │ ├── inject_test.go │ │ │ └── update_readme.sh │ ├── gcmurphy │ │ └── postmark │ │ │ ├── README │ │ │ ├── demo │ │ │ └── helloworld.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── postmark.go │ │ │ ├── postmark_test.go │ │ │ └── testdata │ │ │ └── attachment.txt │ ├── go-martini │ │ └── martini │ │ │ ├── .gitignore │ │ │ ├── Godeps │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── env.go │ │ │ ├── env_test.go │ │ │ ├── go_version.go │ │ │ ├── logger.go │ │ │ ├── logger_test.go │ │ │ ├── martini.go │ │ │ ├── martini_test.go │ │ │ ├── recovery.go │ │ │ ├── recovery_test.go │ │ │ ├── response_writer.go │ │ │ ├── response_writer_test.go │ │ │ ├── return_handler.go │ │ │ ├── router.go │ │ │ ├── router_test.go │ │ │ ├── static.go │ │ │ ├── static_test.go │ │ │ ├── translations │ │ │ ├── README_es_ES.md │ │ │ ├── README_fr_FR.md │ │ │ ├── README_ja_JP.md │ │ │ ├── README_ko_kr.md │ │ │ ├── README_pt_br.md │ │ │ ├── README_ru_RU.md │ │ │ ├── README_tr_TR.md │ │ │ └── README_zh_cn.md │ │ │ └── wercker.yml │ ├── google │ │ └── google-api-go-client │ │ │ └── admin │ │ │ └── directory_v1 │ │ │ ├── admin-api.json │ │ │ └── admin-gen.go │ ├── lib │ │ └── pq │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bench_test.go │ │ │ ├── buf.go │ │ │ ├── certs │ │ │ ├── README │ │ │ ├── postgresql.crt │ │ │ ├── postgresql.key │ │ │ ├── root.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ │ ├── conn.go │ │ │ ├── conn_test.go │ │ │ ├── copy.go │ │ │ ├── copy_test.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── error.go │ │ │ ├── hstore │ │ │ ├── hstore.go │ │ │ └── hstore_test.go │ │ │ ├── listen_example │ │ │ └── doc.go │ │ │ ├── notify.go │ │ │ ├── notify_test.go │ │ │ ├── oid │ │ │ ├── doc.go │ │ │ ├── gen.go │ │ │ └── types.go │ │ │ ├── ssl_test.go │ │ │ ├── url.go │ │ │ ├── url_test.go │ │ │ ├── user_posix.go │ │ │ └── user_windows.go │ ├── martini-contrib │ │ ├── binding │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bind_test.go │ │ │ ├── binding.go │ │ │ ├── common_test.go │ │ │ ├── errorhandler_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── file_test.go │ │ │ ├── form_test.go │ │ │ ├── json_test.go │ │ │ ├── misc_test.go │ │ │ ├── multipart_test.go │ │ │ ├── validate_test.go │ │ │ └── wercker.yml │ │ └── render │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fixtures │ │ │ ├── basic │ │ │ │ ├── admin │ │ │ │ │ └── index.tmpl │ │ │ │ ├── another_layout.tmpl │ │ │ │ ├── content.tmpl │ │ │ │ ├── current_layout.tmpl │ │ │ │ ├── delims.tmpl │ │ │ │ ├── hello.tmpl │ │ │ │ ├── hypertext.html │ │ │ │ └── layout.tmpl │ │ │ └── custom_funcs │ │ │ │ └── index.tmpl │ │ │ ├── render.go │ │ │ ├── render_test.go │ │ │ └── wercker.yml │ ├── masom │ │ └── envconfig │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── envconfig.go │ │ │ └── envconfig_test.go │ ├── nlopes │ │ └── slack │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TODO.txt │ │ │ ├── admin.go │ │ │ ├── channels.go │ │ │ ├── chat.go │ │ │ ├── config.go │ │ │ ├── dm.go │ │ │ ├── emoji.go │ │ │ ├── emoji_test.go │ │ │ ├── examples │ │ │ ├── files │ │ │ │ ├── example.txt │ │ │ │ └── files.go │ │ │ ├── groups │ │ │ │ └── groups.go │ │ │ ├── messages │ │ │ │ └── messages.go │ │ │ ├── users │ │ │ │ └── users.go │ │ │ └── websocket │ │ │ │ └── websocket.go │ │ │ ├── files.go │ │ │ ├── groups.go │ │ │ ├── history.go │ │ │ ├── info.go │ │ │ ├── messages.go │ │ │ ├── misc.go │ │ │ ├── misc_test.go │ │ │ ├── oauth.go │ │ │ ├── pagination.go │ │ │ ├── search.go │ │ │ ├── slack.go │ │ │ ├── slack_test.go │ │ │ ├── stars.go │ │ │ ├── stars_test.go │ │ │ ├── users.go │ │ │ ├── websocket.go │ │ │ ├── websocket_channels.go │ │ │ ├── websocket_dm.go │ │ │ ├── websocket_files.go │ │ │ ├── websocket_groups.go │ │ │ ├── websocket_misc.go │ │ │ ├── websocket_stars.go │ │ │ └── websocket_teams.go │ ├── oxtoacart │ │ └── bpool │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bpool.go │ │ │ ├── bufferpool.go │ │ │ └── bytepool.go │ ├── satori │ │ └── go.uuid │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── benchmarks_test.go │ │ │ ├── uuid.go │ │ │ └── uuid_test.go │ ├── sfreiberg │ │ └── gotwilio │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gotwilio.go │ │ │ ├── gotwilio_test.go │ │ │ ├── sms.go │ │ │ └── voice.go │ ├── stretchr │ │ ├── objx │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── accessors.go │ │ │ ├── accessors_test.go │ │ │ ├── codegen │ │ │ │ ├── array-access.txt │ │ │ │ ├── index.html │ │ │ │ ├── template.txt │ │ │ │ └── types_list.txt │ │ │ ├── constants.go │ │ │ ├── conversions.go │ │ │ ├── conversions_test.go │ │ │ ├── doc.go │ │ │ ├── fixture_test.go │ │ │ ├── map.go │ │ │ ├── map_for_test.go │ │ │ ├── map_test.go │ │ │ ├── mutations.go │ │ │ ├── mutations_test.go │ │ │ ├── security.go │ │ │ ├── security_test.go │ │ │ ├── simple_example_test.go │ │ │ ├── tests.go │ │ │ ├── tests_test.go │ │ │ ├── type_specific_codegen.go │ │ │ ├── type_specific_codegen_test.go │ │ │ ├── value.go │ │ │ └── value_test.go │ │ └── testify │ │ │ ├── assert │ │ │ ├── assertions.go │ │ │ ├── assertions_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── forward_assertions_test.go │ │ │ ├── http_assertions.go │ │ │ └── http_assertions_test.go │ │ │ └── mock │ │ │ ├── doc.go │ │ │ ├── mock.go │ │ │ └── mock_test.go │ └── tbruyelle │ │ └── hipchat-go │ │ └── hipchat │ │ ├── emoticon.go │ │ ├── emoticon_test.go │ │ ├── hipchat.go │ │ ├── hipchat_test.go │ │ ├── room.go │ │ ├── room_test.go │ │ ├── room_webhook.go │ │ ├── room_webhook_test.go │ │ ├── user.go │ │ └── user_test.go │ ├── golang.org │ └── x │ │ └── net │ │ ├── context │ │ ├── context.go │ │ ├── context_test.go │ │ └── withtimeout_test.go │ │ └── websocket │ │ ├── client.go │ │ ├── exampledial_test.go │ │ ├── examplehandler_test.go │ │ ├── hybi.go │ │ ├── hybi_test.go │ │ ├── server.go │ │ ├── websocket.go │ │ └── websocket_test.go │ ├── google.golang.org │ └── api │ │ └── googleapi │ │ ├── googleapi.go │ │ ├── googleapi_test.go │ │ ├── internal │ │ └── uritemplates │ │ │ ├── LICENSE │ │ │ ├── uritemplates.go │ │ │ └── utils.go │ │ ├── transport │ │ └── apikey.go │ │ ├── types.go │ │ └── types_test.go │ └── gopkg.in │ └── gorp.v1 │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── dialect.go │ ├── errors.go │ ├── gorp.go │ ├── gorp_test.go │ └── test_all.sh ├── Makefile ├── README.md ├── db ├── dbconf.yml ├── migrations │ ├── 20140826120815_initial.sql │ ├── 20140913125752_PeopleVisible.sql │ ├── 20140924152439_AccountContact.sql │ ├── 20140924175109_AccountNotificationSmsSourcePhoneNumber.sql │ ├── 20140924180525_PeopleAccountType.sql │ ├── 20140929214934_DeviceToken.sql │ ├── 20141003235104_DeviceDoorId.sql │ ├── 20150220165413_AccountNotificationsEmailTemplate.sql │ ├── 20150703152415_AccountHipChat.sql │ ├── 20150707171518_NotificationsHipChat.sql │ ├── 20150708112651_Slack.sql │ └── 20150708161721_notifications.sql └── test.sql ├── docker-compose.yml ├── docs └── empty ├── doorbot ├── api │ ├── accounts │ │ ├── accounts.go │ │ └── accounts_test.go │ ├── api.go │ ├── api_accounts_test.go │ ├── api_auth_test.go │ ├── api_test.go │ ├── auth │ │ ├── auth.go │ │ └── auth_test.go │ ├── devices │ │ ├── devices.go │ │ └── devices_test.go │ ├── doors │ │ ├── doors.go │ │ └── doors_test.go │ ├── handlers.go │ ├── notifications │ │ ├── notifications.go │ │ └── notifications_test.go │ ├── people │ │ ├── people.go │ │ └── people_test.go │ ├── routes.go │ └── status.go ├── auth │ ├── authorization.go │ └── providers.go ├── cache │ └── lru │ │ ├── lru_cache.go │ │ └── lru_cache_test.go ├── config.go ├── doorbot.go ├── errors.go ├── models.go ├── repositories.go ├── security │ ├── api.go │ ├── api_test.go │ ├── passwords.go │ ├── passwords_test.go │ └── policies.go └── services │ ├── bridges │ ├── bridges.go │ ├── google-domain │ │ └── google-domain.go │ ├── hipchat │ │ └── hipchat.go │ ├── hub │ │ └── hub.go │ └── slack │ │ └── slack.go │ ├── notifications │ ├── hipchat │ │ └── hipchat.go │ ├── mailgun │ │ └── mailgun.go │ ├── nexmo │ │ └── nexmo.go │ ├── notificator.go │ ├── postmark │ │ └── postmark.go │ ├── slack │ │ └── slack.go │ └── twilio │ │ └── twilio.go │ └── rendering │ ├── doorbotbar.go │ └── doorbotbar_test.go ├── env.sh ├── main.go ├── ops └── nginx │ ├── Dockerfile │ └── etc │ ├── nginx.conf │ └── sites-enabled │ ├── doorman-api.conf │ └── doorman-site.conf ├── site └── index.html └── tests └── tests.go /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | bin 3 | dashboard 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/go.crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/code.google.com/p/go.crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/go.crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/code.google.com/p/go.crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/go.crypto/bcrypt/bcrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/code.google.com/p/go.crypto/bcrypt/bcrypt_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/go.crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/code.google.com/p/go.crypto/blowfish/block.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/go.crypto/blowfish/blowfish_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/code.google.com/p/go.crypto/blowfish/blowfish_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/go.crypto/blowfish/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/code.google.com/p/go.crypto/blowfish/cipher.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/go.crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/code.google.com/p/go.crypto/blowfish/const.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/inject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/codegangsta/inject/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/inject/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/codegangsta/inject/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/inject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/codegangsta/inject/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/inject/inject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/codegangsta/inject/inject.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/inject/inject_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/codegangsta/inject/inject_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/inject/update_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/codegangsta/inject/update_readme.sh -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gcmurphy/postmark/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/gcmurphy/postmark/README -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gcmurphy/postmark/demo/helloworld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/gcmurphy/postmark/demo/helloworld.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gcmurphy/postmark/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/gcmurphy/postmark/message.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gcmurphy/postmark/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/gcmurphy/postmark/message_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gcmurphy/postmark/postmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/gcmurphy/postmark/postmark.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gcmurphy/postmark/postmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/gcmurphy/postmark/postmark_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gcmurphy/postmark/testdata/attachment.txt: -------------------------------------------------------------------------------- 1 | A sample attachment 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/Godeps: -------------------------------------------------------------------------------- 1 | github.com/codegangsta/inject master 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/env.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/env_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/go_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/go_version.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/logger_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/martini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/martini.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/martini_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/martini_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/recovery.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/recovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/recovery_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/response_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/response_writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/response_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/response_writer_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/return_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/return_handler.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/router.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/router_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/router_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/static.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/static_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/static_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/translations/README_es_ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/translations/README_es_ES.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/translations/README_fr_FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/translations/README_fr_FR.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/translations/README_ja_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/translations/README_ja_JP.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/translations/README_ko_kr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/translations/README_ko_kr.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/translations/README_pt_br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/translations/README_pt_br.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/translations/README_ru_RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/translations/README_ru_RU.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/translations/README_tr_TR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/translations/README_tr_TR.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/translations/README_zh_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/go-martini/martini/translations/README_zh_cn.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-martini/martini/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/google/google-api-go-client/admin/directory_v1/admin-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/google/google-api-go-client/admin/directory_v1/admin-api.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/google/google-api-go-client/admin/directory_v1/admin-gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/google/google-api-go-client/admin/directory_v1/admin-gen.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/.gitignore: -------------------------------------------------------------------------------- 1 | .db 2 | *.test 3 | *~ 4 | *.swp 5 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/CONTRIBUTING.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/LICENSE.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/bench_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/buf.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/certs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/certs/README -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/certs/postgresql.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/certs/postgresql.crt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/certs/postgresql.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/certs/postgresql.key -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/certs/root.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/certs/root.crt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/certs/server.crt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/certs/server.key -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/conn.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/conn_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/copy.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/copy_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/encode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/hstore/hstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/hstore/hstore.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/hstore/hstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/hstore/hstore_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/listen_example/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/listen_example/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/notify.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/notify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/notify_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/oid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/oid/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/oid/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/oid/gen.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/oid/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/oid/types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/ssl_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/url.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/url_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/user_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/user_posix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/lib/pq/user_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/lib/pq/user_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/bind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/bind_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/binding.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/common_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/errorhandler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/errorhandler_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/errors_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/file_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/form_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/form_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/json_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/misc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/misc_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/multipart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/multipart_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/binding/validate_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/binding/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/render/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/render/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/fixtures/basic/admin/index.tmpl: -------------------------------------------------------------------------------- 1 |

Admin {{.}}

2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/fixtures/basic/another_layout.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/render/fixtures/basic/another_layout.tmpl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/fixtures/basic/content.tmpl: -------------------------------------------------------------------------------- 1 |

{{ . }}

2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/fixtures/basic/current_layout.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/render/fixtures/basic/current_layout.tmpl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/fixtures/basic/delims.tmpl: -------------------------------------------------------------------------------- 1 |

Hello {[{.}]}

-------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/fixtures/basic/hello.tmpl: -------------------------------------------------------------------------------- 1 |

Hello {{.}}

2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/fixtures/basic/hypertext.html: -------------------------------------------------------------------------------- 1 | Hypertext! 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/fixtures/basic/layout.tmpl: -------------------------------------------------------------------------------- 1 | head 2 | {{ yield }} 3 | foot 4 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/fixtures/custom_funcs/index.tmpl: -------------------------------------------------------------------------------- 1 | {{ myCustomFunc }} 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/render/render.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/martini-contrib/render/render_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/martini-contrib/render/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/masom/envconfig/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/masom/envconfig/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/masom/envconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/masom/envconfig/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/masom/envconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/masom/envconfig/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/masom/envconfig/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/masom/envconfig/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/masom/envconfig/envconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/masom/envconfig/envconfig.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/masom/envconfig/envconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/masom/envconfig/envconfig_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/TODO.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/admin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/channels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/channels.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/chat.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/config.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/dm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/dm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/emoji.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/emoji.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/emoji_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/emoji_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/examples/files/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/examples/files/example.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/examples/files/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/examples/files/files.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/examples/groups/groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/examples/groups/groups.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/examples/messages/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/examples/messages/messages.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/examples/users/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/examples/users/users.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/examples/websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/examples/websocket/websocket.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/files.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/groups.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/history.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/info.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/messages.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/misc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/misc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/misc_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/oauth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/pagination.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/search.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/slack.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/slack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/slack_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/stars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/stars.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/stars_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/stars_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/users.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/websocket.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/websocket_channels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/websocket_channels.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/websocket_dm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/websocket_dm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/websocket_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/websocket_files.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/websocket_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/websocket_groups.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/websocket_misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/websocket_misc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/websocket_stars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/websocket_stars.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nlopes/slack/websocket_teams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/nlopes/slack/websocket_teams.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/oxtoacart/bpool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/oxtoacart/bpool/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/oxtoacart/bpool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/oxtoacart/bpool/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/oxtoacart/bpool/bpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/oxtoacart/bpool/bpool.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/oxtoacart/bpool/bufferpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/oxtoacart/bpool/bufferpool.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/oxtoacart/bpool/bytepool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/oxtoacart/bpool/bytepool.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/satori/go.uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/satori/go.uuid/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/satori/go.uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/satori/go.uuid/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/satori/go.uuid/benchmarks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/satori/go.uuid/benchmarks_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/satori/go.uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/satori/go.uuid/uuid_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/sfreiberg/gotwilio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/sfreiberg/gotwilio/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/sfreiberg/gotwilio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/sfreiberg/gotwilio/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/sfreiberg/gotwilio/gotwilio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/sfreiberg/gotwilio/gotwilio.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/sfreiberg/gotwilio/gotwilio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/sfreiberg/gotwilio/gotwilio_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/sfreiberg/gotwilio/sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/sfreiberg/gotwilio/sms.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/sfreiberg/gotwilio/voice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/sfreiberg/gotwilio/voice.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/LICENSE.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/accessors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/accessors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/accessors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/accessors_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/array-access.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/array-access.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/index.html -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/template.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/types_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/types_list.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/constants.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/conversions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/conversions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/conversions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/conversions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/fixture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/fixture_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/map_for_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/map_for_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/map_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/mutations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/mutations.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/mutations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/mutations_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/security.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/security_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/simple_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/simple_example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/tests.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/tests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/tests_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/value.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/value_test.go: -------------------------------------------------------------------------------- 1 | package objx 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/mock/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/mock/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/mock/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/mock/mock.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/mock/mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/mock/mock_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/emoticon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/emoticon.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/emoticon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/emoticon_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/hipchat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/hipchat.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/hipchat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/hipchat_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/room.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/room.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/room_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/room_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/room_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/room_webhook.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/room_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/room_webhook_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/user.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/github.com/tbruyelle/hipchat-go/hipchat/user_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/context/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/golang.org/x/net/context/context_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/context/withtimeout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/golang.org/x/net/context/withtimeout_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/exampledial_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/exampledial_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/examplehandler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/examplehandler_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/hybi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/hybi_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/websocket.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/websocket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/websocket_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/googleapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/googleapi.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/googleapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/googleapi_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/internal/uritemplates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/internal/uritemplates/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/internal/uritemplates/uritemplates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/internal/uritemplates/uritemplates.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/internal/uritemplates/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/internal/uritemplates/utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/transport/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/transport/apikey.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/types_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/gorp.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/gopkg.in/gorp.v1/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/gorp.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/gopkg.in/gorp.v1/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/gorp.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/gopkg.in/gorp.v1/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/gorp.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/gopkg.in/gorp.v1/Makefile -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/gorp.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/gopkg.in/gorp.v1/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/gorp.v1/dialect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/gopkg.in/gorp.v1/dialect.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/gorp.v1/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/gopkg.in/gorp.v1/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/gorp.v1/gorp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/gopkg.in/gorp.v1/gorp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/gorp.v1/gorp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/gopkg.in/gorp.v1/gorp_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/gorp.v1/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Godeps/_workspace/src/gopkg.in/gorp.v1/test_all.sh -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/README.md -------------------------------------------------------------------------------- /db/dbconf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/dbconf.yml -------------------------------------------------------------------------------- /db/migrations/20140826120815_initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20140826120815_initial.sql -------------------------------------------------------------------------------- /db/migrations/20140913125752_PeopleVisible.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20140913125752_PeopleVisible.sql -------------------------------------------------------------------------------- /db/migrations/20140924152439_AccountContact.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20140924152439_AccountContact.sql -------------------------------------------------------------------------------- /db/migrations/20140924175109_AccountNotificationSmsSourcePhoneNumber.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20140924175109_AccountNotificationSmsSourcePhoneNumber.sql -------------------------------------------------------------------------------- /db/migrations/20140924180525_PeopleAccountType.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20140924180525_PeopleAccountType.sql -------------------------------------------------------------------------------- /db/migrations/20140929214934_DeviceToken.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20140929214934_DeviceToken.sql -------------------------------------------------------------------------------- /db/migrations/20141003235104_DeviceDoorId.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20141003235104_DeviceDoorId.sql -------------------------------------------------------------------------------- /db/migrations/20150220165413_AccountNotificationsEmailTemplate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20150220165413_AccountNotificationsEmailTemplate.sql -------------------------------------------------------------------------------- /db/migrations/20150703152415_AccountHipChat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20150703152415_AccountHipChat.sql -------------------------------------------------------------------------------- /db/migrations/20150707171518_NotificationsHipChat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20150707171518_NotificationsHipChat.sql -------------------------------------------------------------------------------- /db/migrations/20150708112651_Slack.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20150708112651_Slack.sql -------------------------------------------------------------------------------- /db/migrations/20150708161721_notifications.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/migrations/20150708161721_notifications.sql -------------------------------------------------------------------------------- /db/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/db/test.sql -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doorbot/api/accounts/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/accounts/accounts.go -------------------------------------------------------------------------------- /doorbot/api/accounts/accounts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/accounts/accounts_test.go -------------------------------------------------------------------------------- /doorbot/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/api.go -------------------------------------------------------------------------------- /doorbot/api/api_accounts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/api_accounts_test.go -------------------------------------------------------------------------------- /doorbot/api/api_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/api_auth_test.go -------------------------------------------------------------------------------- /doorbot/api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/api_test.go -------------------------------------------------------------------------------- /doorbot/api/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/auth/auth.go -------------------------------------------------------------------------------- /doorbot/api/auth/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/auth/auth_test.go -------------------------------------------------------------------------------- /doorbot/api/devices/devices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/devices/devices.go -------------------------------------------------------------------------------- /doorbot/api/devices/devices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/devices/devices_test.go -------------------------------------------------------------------------------- /doorbot/api/doors/doors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/doors/doors.go -------------------------------------------------------------------------------- /doorbot/api/doors/doors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/doors/doors_test.go -------------------------------------------------------------------------------- /doorbot/api/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/handlers.go -------------------------------------------------------------------------------- /doorbot/api/notifications/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/notifications/notifications.go -------------------------------------------------------------------------------- /doorbot/api/notifications/notifications_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/notifications/notifications_test.go -------------------------------------------------------------------------------- /doorbot/api/people/people.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/people/people.go -------------------------------------------------------------------------------- /doorbot/api/people/people_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/people/people_test.go -------------------------------------------------------------------------------- /doorbot/api/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/routes.go -------------------------------------------------------------------------------- /doorbot/api/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/api/status.go -------------------------------------------------------------------------------- /doorbot/auth/authorization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/auth/authorization.go -------------------------------------------------------------------------------- /doorbot/auth/providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/auth/providers.go -------------------------------------------------------------------------------- /doorbot/cache/lru/lru_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/cache/lru/lru_cache.go -------------------------------------------------------------------------------- /doorbot/cache/lru/lru_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/cache/lru/lru_cache_test.go -------------------------------------------------------------------------------- /doorbot/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/config.go -------------------------------------------------------------------------------- /doorbot/doorbot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/doorbot.go -------------------------------------------------------------------------------- /doorbot/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/errors.go -------------------------------------------------------------------------------- /doorbot/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/models.go -------------------------------------------------------------------------------- /doorbot/repositories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/repositories.go -------------------------------------------------------------------------------- /doorbot/security/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/security/api.go -------------------------------------------------------------------------------- /doorbot/security/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/security/api_test.go -------------------------------------------------------------------------------- /doorbot/security/passwords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/security/passwords.go -------------------------------------------------------------------------------- /doorbot/security/passwords_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/security/passwords_test.go -------------------------------------------------------------------------------- /doorbot/security/policies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/security/policies.go -------------------------------------------------------------------------------- /doorbot/services/bridges/bridges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/bridges/bridges.go -------------------------------------------------------------------------------- /doorbot/services/bridges/google-domain/google-domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/bridges/google-domain/google-domain.go -------------------------------------------------------------------------------- /doorbot/services/bridges/hipchat/hipchat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/bridges/hipchat/hipchat.go -------------------------------------------------------------------------------- /doorbot/services/bridges/hub/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/bridges/hub/hub.go -------------------------------------------------------------------------------- /doorbot/services/bridges/slack/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/bridges/slack/slack.go -------------------------------------------------------------------------------- /doorbot/services/notifications/hipchat/hipchat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/notifications/hipchat/hipchat.go -------------------------------------------------------------------------------- /doorbot/services/notifications/mailgun/mailgun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/notifications/mailgun/mailgun.go -------------------------------------------------------------------------------- /doorbot/services/notifications/nexmo/nexmo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/notifications/nexmo/nexmo.go -------------------------------------------------------------------------------- /doorbot/services/notifications/notificator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/notifications/notificator.go -------------------------------------------------------------------------------- /doorbot/services/notifications/postmark/postmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/notifications/postmark/postmark.go -------------------------------------------------------------------------------- /doorbot/services/notifications/slack/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/notifications/slack/slack.go -------------------------------------------------------------------------------- /doorbot/services/notifications/twilio/twilio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/notifications/twilio/twilio.go -------------------------------------------------------------------------------- /doorbot/services/rendering/doorbotbar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/rendering/doorbotbar.go -------------------------------------------------------------------------------- /doorbot/services/rendering/doorbotbar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/doorbot/services/rendering/doorbotbar_test.go -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/env.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/main.go -------------------------------------------------------------------------------- /ops/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/ops/nginx/Dockerfile -------------------------------------------------------------------------------- /ops/nginx/etc/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/ops/nginx/etc/nginx.conf -------------------------------------------------------------------------------- /ops/nginx/etc/sites-enabled/doorman-api.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/ops/nginx/etc/sites-enabled/doorman-api.conf -------------------------------------------------------------------------------- /ops/nginx/etc/sites-enabled/doorman-site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/ops/nginx/etc/sites-enabled/doorman-site.conf -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/site/index.html -------------------------------------------------------------------------------- /tests/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masom/doorbot/HEAD/tests/tests.go --------------------------------------------------------------------------------