├── .env.sample ├── .gitignore ├── CODEOWNERS ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── public ├── css │ └── styles.css └── images │ ├── arrow.png │ ├── hellosocks_background.png │ ├── person.png │ └── shopping_bag.png ├── server.rb └── views ├── email_sent.erb ├── logged_in.erb ├── logged_out.erb └── login_or_signup.erb /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/README.md -------------------------------------------------------------------------------- /public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/public/css/styles.css -------------------------------------------------------------------------------- /public/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/public/images/arrow.png -------------------------------------------------------------------------------- /public/images/hellosocks_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/public/images/hellosocks_background.png -------------------------------------------------------------------------------- /public/images/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/public/images/person.png -------------------------------------------------------------------------------- /public/images/shopping_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/public/images/shopping_bag.png -------------------------------------------------------------------------------- /server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/server.rb -------------------------------------------------------------------------------- /views/email_sent.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/views/email_sent.erb -------------------------------------------------------------------------------- /views/logged_in.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/views/logged_in.erb -------------------------------------------------------------------------------- /views/logged_out.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/views/logged_out.erb -------------------------------------------------------------------------------- /views/login_or_signup.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-ruby-example/HEAD/views/login_or_signup.erb --------------------------------------------------------------------------------