├── .github └── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── README.md ├── Section-1.md ├── Section-2.md ├── Section-3.md ├── Section-4.md ├── auth.rb ├── bot.rb ├── config.ru └── welcome.json /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/README.md -------------------------------------------------------------------------------- /Section-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/Section-1.md -------------------------------------------------------------------------------- /Section-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/Section-2.md -------------------------------------------------------------------------------- /Section-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/Section-3.md -------------------------------------------------------------------------------- /Section-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/Section-4.md -------------------------------------------------------------------------------- /auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/auth.rb -------------------------------------------------------------------------------- /bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/bot.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/config.ru -------------------------------------------------------------------------------- /welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/ruby-onboarding-events/HEAD/welcome.json --------------------------------------------------------------------------------