├── .github ├── issue_template.md ├── pull_request_template.md └── workflows │ └── cache.yml ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── _redirects ├── config.rb ├── lib ├── helpers │ ├── current_link_helper.rb │ ├── debug_helpers.rb │ └── format_helpers.rb ├── playbook.rb └── playbook │ ├── chapter.rb │ └── section.rb └── source ├── 404.html.md ├── about-us.html.md ├── about-us ├── mission-and-vision.html.md ├── our-values.html.md └── what-we-do.html.md ├── assets ├── fonts │ └── basis-grotesque │ │ ├── basis-grotesque-bold.eot │ │ ├── basis-grotesque-bold.ttf │ │ ├── basis-grotesque-bold.woff │ │ ├── basis-grotesque-bold.woff2 │ │ ├── basis-grotesque-italic.eot │ │ ├── basis-grotesque-italic.ttf │ │ ├── basis-grotesque-italic.woff │ │ ├── basis-grotesque-italic.woff2 │ │ ├── basis-grotesque-regular.eot │ │ ├── basis-grotesque-regular.ttf │ │ ├── basis-grotesque-regular.woff │ │ └── basis-grotesque-regular.woff2 ├── images │ ├── about-us.svg │ ├── apple-touch-icon.png │ ├── company-rituals.svg │ ├── development.svg │ ├── favicon.ico │ ├── hire-kit.jpg │ ├── homepage-hero.svg │ ├── icon-arrow-right-hover.svg │ ├── icon-arrow-right.svg │ ├── icon-arrow-top.svg │ ├── icon-chevron-down.svg │ ├── icon-overview-hover.svg │ ├── icon-overview.svg │ ├── internal-projects.svg │ ├── logo.svg │ ├── managing-teams.svg │ ├── mentoring-people.svg │ ├── our-offices.svg │ ├── people-ops.svg │ ├── personal-growth.svg │ ├── search.svg │ ├── set.jpg │ ├── social-covers │ │ ├── about-us.png │ │ ├── company-rituals.png │ │ ├── default.png │ │ ├── development.png │ │ ├── internal-projects.png │ │ ├── managing-teams.png │ │ ├── mentoring-people.png │ │ ├── our-offices.png │ │ ├── people-ops.png │ │ ├── personal-growth.png │ │ └── work-fundamentals.png │ └── work-fundamentals.svg ├── javascripts │ ├── application.js │ ├── chapter.js │ ├── cookie-policy.js │ ├── custom-select.js │ ├── dropdown-menu.js │ ├── jquery.cookieBar.min.js │ ├── jquery.nice-select.min.js │ └── smooth-scroll-anchor.js ├── not-hashed │ └── images │ │ └── logo.png └── stylesheets │ ├── base │ ├── _base.scss │ ├── _font-face.scss │ ├── _layout.scss │ ├── _transitions.scss │ ├── _typography.scss │ └── _variables.scss │ ├── components │ ├── _algolia-search.scss │ ├── _cookies.scss │ ├── _custom-select.scss │ ├── _footer.scss │ ├── _header.scss │ ├── _heroes.scss │ ├── _local-anchor.scss │ ├── _nav-button.scss │ └── _navigation.scss │ ├── elements │ └── _buttons.scss │ ├── pages │ ├── _errors.scss │ └── _homepage.scss │ ├── playbook-style.css.scss │ └── vendor │ ├── _nice-select.scss │ └── _normalize.scss ├── company-rituals.html.md ├── company-rituals ├── all-hands-sessions.html.md ├── team-retreats.html.md └── watercoolers.html.md ├── index.html.md ├── internal-projects.html.md ├── internal-projects ├── blog.html.md ├── playbook.html.md └── solidus.html.md ├── layouts ├── error.erb ├── home.erb ├── playbook │ ├── chapter.erb │ └── chapter │ │ ├── _footer.html.erb │ │ └── _header.html.erb └── shared │ ├── _all_js.html.erb │ ├── _cookies.html.erb │ ├── _footer.html.erb │ ├── _head.html.erb │ ├── _header.html.erb │ ├── _navigation.html.erb │ └── _sidebar.html.erb ├── managing-teams.html.md ├── managing-teams ├── coaching-reports.html.md ├── holding-one-on-ones.html.md ├── leading-engagements.html.md ├── matrix-evaluations.html.md ├── peer-level-meeting.html.md └── what-engineering-managers-do.html.md ├── people-ops.html.md ├── people-ops ├── benefits.html.md ├── compensation.html.md ├── hiring.html.md ├── onboarding.html.md └── parting-ways.html.md ├── personal-growth.html.md ├── personal-growth ├── apprenticeship-program.html.md ├── coaching-and-one-on-ones.html.md ├── competency-matrix.html.md ├── investment-time.html.md └── learning-library.html.md ├── work-fundamentals.html.md └── work-fundamentals ├── distributed-work.html.md ├── effective-meetings.html.md └── time-tracking.html.md /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/.github/workflows/cache.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.2 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/_redirects -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/config.rb -------------------------------------------------------------------------------- /lib/helpers/current_link_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/lib/helpers/current_link_helper.rb -------------------------------------------------------------------------------- /lib/helpers/debug_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/lib/helpers/debug_helpers.rb -------------------------------------------------------------------------------- /lib/helpers/format_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/lib/helpers/format_helpers.rb -------------------------------------------------------------------------------- /lib/playbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/lib/playbook.rb -------------------------------------------------------------------------------- /lib/playbook/chapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/lib/playbook/chapter.rb -------------------------------------------------------------------------------- /lib/playbook/section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/lib/playbook/section.rb -------------------------------------------------------------------------------- /source/404.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/404.html.md -------------------------------------------------------------------------------- /source/about-us.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/about-us.html.md -------------------------------------------------------------------------------- /source/about-us/mission-and-vision.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/about-us/mission-and-vision.html.md -------------------------------------------------------------------------------- /source/about-us/our-values.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/about-us/our-values.html.md -------------------------------------------------------------------------------- /source/about-us/what-we-do.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/about-us/what-we-do.html.md -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-bold.eot -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-bold.ttf -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-bold.woff -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-bold.woff2 -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-italic.eot -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-italic.ttf -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-italic.woff -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-italic.woff2 -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-regular.eot -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-regular.ttf -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-regular.woff -------------------------------------------------------------------------------- /source/assets/fonts/basis-grotesque/basis-grotesque-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/fonts/basis-grotesque/basis-grotesque-regular.woff2 -------------------------------------------------------------------------------- /source/assets/images/about-us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/about-us.svg -------------------------------------------------------------------------------- /source/assets/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/apple-touch-icon.png -------------------------------------------------------------------------------- /source/assets/images/company-rituals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/company-rituals.svg -------------------------------------------------------------------------------- /source/assets/images/development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/development.svg -------------------------------------------------------------------------------- /source/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/favicon.ico -------------------------------------------------------------------------------- /source/assets/images/hire-kit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/hire-kit.jpg -------------------------------------------------------------------------------- /source/assets/images/homepage-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/homepage-hero.svg -------------------------------------------------------------------------------- /source/assets/images/icon-arrow-right-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/icon-arrow-right-hover.svg -------------------------------------------------------------------------------- /source/assets/images/icon-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/icon-arrow-right.svg -------------------------------------------------------------------------------- /source/assets/images/icon-arrow-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/icon-arrow-top.svg -------------------------------------------------------------------------------- /source/assets/images/icon-chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/icon-chevron-down.svg -------------------------------------------------------------------------------- /source/assets/images/icon-overview-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/icon-overview-hover.svg -------------------------------------------------------------------------------- /source/assets/images/icon-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/icon-overview.svg -------------------------------------------------------------------------------- /source/assets/images/internal-projects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/internal-projects.svg -------------------------------------------------------------------------------- /source/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/logo.svg -------------------------------------------------------------------------------- /source/assets/images/managing-teams.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/managing-teams.svg -------------------------------------------------------------------------------- /source/assets/images/mentoring-people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/mentoring-people.svg -------------------------------------------------------------------------------- /source/assets/images/our-offices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/our-offices.svg -------------------------------------------------------------------------------- /source/assets/images/people-ops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/people-ops.svg -------------------------------------------------------------------------------- /source/assets/images/personal-growth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/personal-growth.svg -------------------------------------------------------------------------------- /source/assets/images/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/search.svg -------------------------------------------------------------------------------- /source/assets/images/set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/set.jpg -------------------------------------------------------------------------------- /source/assets/images/social-covers/about-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/social-covers/about-us.png -------------------------------------------------------------------------------- /source/assets/images/social-covers/company-rituals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/social-covers/company-rituals.png -------------------------------------------------------------------------------- /source/assets/images/social-covers/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/social-covers/default.png -------------------------------------------------------------------------------- /source/assets/images/social-covers/development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/social-covers/development.png -------------------------------------------------------------------------------- /source/assets/images/social-covers/internal-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/social-covers/internal-projects.png -------------------------------------------------------------------------------- /source/assets/images/social-covers/managing-teams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/social-covers/managing-teams.png -------------------------------------------------------------------------------- /source/assets/images/social-covers/mentoring-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/social-covers/mentoring-people.png -------------------------------------------------------------------------------- /source/assets/images/social-covers/our-offices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/social-covers/our-offices.png -------------------------------------------------------------------------------- /source/assets/images/social-covers/people-ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/social-covers/people-ops.png -------------------------------------------------------------------------------- /source/assets/images/social-covers/personal-growth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/social-covers/personal-growth.png -------------------------------------------------------------------------------- /source/assets/images/social-covers/work-fundamentals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/social-covers/work-fundamentals.png -------------------------------------------------------------------------------- /source/assets/images/work-fundamentals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/images/work-fundamentals.svg -------------------------------------------------------------------------------- /source/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/javascripts/application.js -------------------------------------------------------------------------------- /source/assets/javascripts/chapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/javascripts/chapter.js -------------------------------------------------------------------------------- /source/assets/javascripts/cookie-policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/javascripts/cookie-policy.js -------------------------------------------------------------------------------- /source/assets/javascripts/custom-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/javascripts/custom-select.js -------------------------------------------------------------------------------- /source/assets/javascripts/dropdown-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/javascripts/dropdown-menu.js -------------------------------------------------------------------------------- /source/assets/javascripts/jquery.cookieBar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/javascripts/jquery.cookieBar.min.js -------------------------------------------------------------------------------- /source/assets/javascripts/jquery.nice-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/javascripts/jquery.nice-select.min.js -------------------------------------------------------------------------------- /source/assets/javascripts/smooth-scroll-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/javascripts/smooth-scroll-anchor.js -------------------------------------------------------------------------------- /source/assets/not-hashed/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/not-hashed/images/logo.png -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/base/_base.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_font-face.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/base/_font-face.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/base/_layout.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/base/_transitions.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/base/_typography.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/base/_variables.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/components/_algolia-search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/components/_algolia-search.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/components/_cookies.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/components/_cookies.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/components/_custom-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/components/_custom-select.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/components/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/components/_footer.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/components/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/components/_header.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/components/_heroes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/components/_heroes.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/components/_local-anchor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/components/_local-anchor.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/components/_nav-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/components/_nav-button.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/components/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/components/_navigation.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/elements/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/elements/_buttons.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/pages/_errors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/pages/_errors.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/pages/_homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/pages/_homepage.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/playbook-style.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/playbook-style.css.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/vendor/_nice-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/vendor/_nice-select.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/vendor/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/assets/stylesheets/vendor/_normalize.scss -------------------------------------------------------------------------------- /source/company-rituals.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/company-rituals.html.md -------------------------------------------------------------------------------- /source/company-rituals/all-hands-sessions.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/company-rituals/all-hands-sessions.html.md -------------------------------------------------------------------------------- /source/company-rituals/team-retreats.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/company-rituals/team-retreats.html.md -------------------------------------------------------------------------------- /source/company-rituals/watercoolers.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/company-rituals/watercoolers.html.md -------------------------------------------------------------------------------- /source/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/index.html.md -------------------------------------------------------------------------------- /source/internal-projects.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/internal-projects.html.md -------------------------------------------------------------------------------- /source/internal-projects/blog.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/internal-projects/blog.html.md -------------------------------------------------------------------------------- /source/internal-projects/playbook.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/internal-projects/playbook.html.md -------------------------------------------------------------------------------- /source/internal-projects/solidus.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/internal-projects/solidus.html.md -------------------------------------------------------------------------------- /source/layouts/error.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/error.erb -------------------------------------------------------------------------------- /source/layouts/home.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/home.erb -------------------------------------------------------------------------------- /source/layouts/playbook/chapter.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/playbook/chapter.erb -------------------------------------------------------------------------------- /source/layouts/playbook/chapter/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/playbook/chapter/_footer.html.erb -------------------------------------------------------------------------------- /source/layouts/playbook/chapter/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/playbook/chapter/_header.html.erb -------------------------------------------------------------------------------- /source/layouts/shared/_all_js.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/shared/_all_js.html.erb -------------------------------------------------------------------------------- /source/layouts/shared/_cookies.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/shared/_cookies.html.erb -------------------------------------------------------------------------------- /source/layouts/shared/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/shared/_footer.html.erb -------------------------------------------------------------------------------- /source/layouts/shared/_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/shared/_head.html.erb -------------------------------------------------------------------------------- /source/layouts/shared/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/shared/_header.html.erb -------------------------------------------------------------------------------- /source/layouts/shared/_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/shared/_navigation.html.erb -------------------------------------------------------------------------------- /source/layouts/shared/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/layouts/shared/_sidebar.html.erb -------------------------------------------------------------------------------- /source/managing-teams.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/managing-teams.html.md -------------------------------------------------------------------------------- /source/managing-teams/coaching-reports.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/managing-teams/coaching-reports.html.md -------------------------------------------------------------------------------- /source/managing-teams/holding-one-on-ones.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/managing-teams/holding-one-on-ones.html.md -------------------------------------------------------------------------------- /source/managing-teams/leading-engagements.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/managing-teams/leading-engagements.html.md -------------------------------------------------------------------------------- /source/managing-teams/matrix-evaluations.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/managing-teams/matrix-evaluations.html.md -------------------------------------------------------------------------------- /source/managing-teams/peer-level-meeting.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/managing-teams/peer-level-meeting.html.md -------------------------------------------------------------------------------- /source/managing-teams/what-engineering-managers-do.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/managing-teams/what-engineering-managers-do.html.md -------------------------------------------------------------------------------- /source/people-ops.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/people-ops.html.md -------------------------------------------------------------------------------- /source/people-ops/benefits.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/people-ops/benefits.html.md -------------------------------------------------------------------------------- /source/people-ops/compensation.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/people-ops/compensation.html.md -------------------------------------------------------------------------------- /source/people-ops/hiring.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/people-ops/hiring.html.md -------------------------------------------------------------------------------- /source/people-ops/onboarding.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/people-ops/onboarding.html.md -------------------------------------------------------------------------------- /source/people-ops/parting-ways.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/people-ops/parting-ways.html.md -------------------------------------------------------------------------------- /source/personal-growth.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/personal-growth.html.md -------------------------------------------------------------------------------- /source/personal-growth/apprenticeship-program.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/personal-growth/apprenticeship-program.html.md -------------------------------------------------------------------------------- /source/personal-growth/coaching-and-one-on-ones.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/personal-growth/coaching-and-one-on-ones.html.md -------------------------------------------------------------------------------- /source/personal-growth/competency-matrix.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/personal-growth/competency-matrix.html.md -------------------------------------------------------------------------------- /source/personal-growth/investment-time.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/personal-growth/investment-time.html.md -------------------------------------------------------------------------------- /source/personal-growth/learning-library.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/personal-growth/learning-library.html.md -------------------------------------------------------------------------------- /source/work-fundamentals.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/work-fundamentals.html.md -------------------------------------------------------------------------------- /source/work-fundamentals/distributed-work.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/work-fundamentals/distributed-work.html.md -------------------------------------------------------------------------------- /source/work-fundamentals/effective-meetings.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/work-fundamentals/effective-meetings.html.md -------------------------------------------------------------------------------- /source/work-fundamentals/time-tracking.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/playbook/HEAD/source/work-fundamentals/time-tracking.html.md --------------------------------------------------------------------------------