gitextract_3vukf4_h/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── deploy.yml ├── .gitignore ├── .ruby-version ├── 404.html ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _includes/ │ ├── analytics.html │ ├── footer.html │ ├── github-corner.html │ ├── header.html │ ├── main-guide-intro.html │ └── main_guides.md ├── _layouts/ │ ├── default.html │ ├── guide.md │ └── main_guide.md ├── _pages/ │ ├── activeadmin.md │ ├── app.md │ ├── coach.md │ ├── commenting.md │ ├── continuous-codeship.md │ ├── continuous-snap-ci.md │ ├── continuous-travis.md │ ├── contributing.md │ ├── deployment/ │ │ ├── anynines.md │ │ ├── digital-ocean.md │ │ ├── engineyard.md │ │ ├── fly-io.md │ │ ├── heroku.md │ │ └── openshift.md │ ├── deployment.md │ ├── design-using-html-and-css-chinese.md │ ├── design.md │ ├── devise.md │ ├── diary-app.md │ ├── github.md │ ├── gravatar.md │ ├── guide-to-the-guide.md │ ├── guide.md │ ├── how-to-continue-with-programming.md │ ├── html-and-css.md │ ├── install/ │ │ ├── linux.md │ │ ├── macos.md │ │ ├── replit.md │ │ ├── virtual-machine.md │ │ └── windows.md │ ├── install.md │ ├── new-homepage.md │ ├── new-page.md │ ├── passenger.md │ ├── remote-pairing-for-the-win.md │ ├── ruby-atm.md │ ├── ruby-game.md │ ├── ruby-intro.md │ ├── shoulda-matchers.md │ ├── simple-app.md │ ├── sinatra-app-tutorial.md │ ├── sinatra-html.md │ ├── sinatra.md │ ├── start.md │ ├── test-driven-development.md │ ├── testing-rspec.md │ ├── thumbnails.md │ ├── tools.md │ ├── touristic-autism_basic-app.md │ ├── touristic-autism_continuous-deployment.md │ ├── touristic-autism_design.md │ ├── touristic-autism_git.md │ ├── touristic-autism_google-map.md │ ├── touristic-autism_image-upload.md │ ├── touristic-autism_intro.md │ ├── touristic-autism_resource-modeling.md │ ├── touristic-autism_resource-rating.md │ ├── touristic-autism_static-pages-tdd.md │ ├── twitter-widget.md │ ├── uploads.md │ └── videos.md ├── _plugins/ │ └── coach.rb ├── css/ │ ├── code.css │ └── style.css ├── index.html └── js/ ├── guides.js ├── js.cookie.js └── mobile-menu.js