├── README.md ├── chapter-2-gists ├── Gemfile ├── Gemfile.lock ├── README.md ├── gist.help ├── hi.rb └── index.erb ├── chapter-3-wikis-and-gollum ├── Gemfile ├── Gemfile.lock ├── README.md ├── image.rb └── index.html ├── chapter-4-python-and-search ├── .gitignore ├── agithub.py └── test.py ├── chapter-5-dotnet-and-the-commit-status-api ├── .gitattributes ├── .gitignore ├── NancyApplication1.Tests │ ├── NancyApplication1.Tests.csproj │ ├── Test.cs │ └── packages.config ├── NancyApplication1.sln ├── NancyApplication1.userprefs └── NancyApplication1 │ ├── Bootstrapper.cs │ ├── Handler.cs │ ├── NancyApplication1.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── chapter-6-ruby-and-jekyll ├── .gitignore ├── Gemfile ├── README.md ├── _config.yml ├── _layouts │ ├── default.html │ └── post.html ├── _posts │ ├── 2000-05-23-third-day-in-salvador.md │ ├── 2000-08-28-the-hill-tribes-of-northern-thailand.md │ ├── 2000-12-21-passion-play-of-oberammergau.md │ ├── 2001-01-12-angrezis-in-bharat.md │ ├── 2001-01-12-cuba-the-good-and-bad.md │ ├── 2001-01-12-mexico-belize-guatemala.md │ ├── 2001-01-12-nemaste.md │ ├── 2001-01-12-south-africa.md │ ├── 2001-01-23-viagiatore.md │ ├── 2001-02-14-solo-tango-in-buenos-aires.md │ ├── 2001-03-11-solo-tango-in-buenos-aires.md │ ├── 2001-04-05-lava-beds-ate-our-shoes-maui-hi.md │ ├── 2001-08-19-mystic-connecticut.md │ ├── 2001-08-20-travel-tips-for-the-first-time-to-cuba.md │ ├── 2001-10-10-travel-in-italy-after-september-th.md │ ├── 2001-10-17-watch-out-for-borin-the-cab-driver.md │ ├── 2001-10-18-diving-in-dubrovnik.md │ ├── 2001-10-21-mirogoj-cemetery-in-zagreb.md │ ├── 2001-11-03-smoking-in-the-hague.md │ ├── 2001-12-02-check-out-this-travel-planning-website.md │ ├── 2001-12-07-family-trip-to-rajasthan.md │ ├── 2001-12-30-bhutan-monsoons-and-miracles.md │ ├── 2002-05-07-the-bardo-museum.md │ ├── 2002-05-26-water-festival-in-bangkok.md │ ├── 2002-07-06-a-day-in-beijing.md │ ├── 2002-07-06-the-great-wall.md │ ├── 2002-10-10-a-day-in-krakow-poland.md │ ├── 2002-10-10-a-visit-to-montmartre-in-paris.md │ ├── 2002-10-10-romantic-prague.md │ ├── 2002-10-10-two-days-in-st-petersburg.md │ └── 2003-03-23-beautiful-belize.md ├── assets │ ├── css │ │ ├── bootstrap.min.css │ │ └── site.css │ └── images │ │ ├── book.gif │ │ ├── camera.gif │ │ ├── hut.gif │ │ ├── paper.gif │ │ ├── phone.gif │ │ ├── photo.gif │ │ ├── postcard.gif │ │ ├── star.gif │ │ └── tower.gif ├── index.md ├── run.rb ├── scraper.rb └── scraper_spec.rb ├── chapter-7-android-and-git-data ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── README.md ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── ghru │ │ │ └── MainActivityTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ghru │ │ │ │ ├── GitHubHelper.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── logged_in.xml │ │ │ └── main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── ghru │ │ └── GitHubHelperTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── secrets.xml.sample └── settings.gradle ├── chapter-8-coffeescript-and-hubot ├── .editorconfig ├── .gitignore ├── HUBOT_README.md ├── Procfile ├── README.md ├── bin │ ├── hubot │ └── hubot.cmd ├── external-scripts.json ├── hubot-scripts.json ├── lib │ └── handler.coffee ├── package.json ├── scripts │ └── pr-delegator.coffee └── spec │ └── pr-delegator.spec.coffee └── chapter-9-javascript-and-git-data ├── .gitignore ├── .powder ├── README.md ├── angular-mocks.js ├── angular.js ├── base64.js ├── base64.min.js ├── bootstrap.min.css ├── cities.json ├── coffeetech-annotate.spec.js ├── coffeetech.js ├── coffeetech.spec.js ├── config.ru ├── error ├── firebase-mock.js ├── fixtures-cities.js ├── fixtures-portland.js ├── github.js ├── index.html ├── karma.config.js ├── node └── github-local-login.js ├── package.json ├── portland.json ├── spec ├── requestSpec.coffee └── spec-helper.coffee └── underscore-min.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/README.md -------------------------------------------------------------------------------- /chapter-2-gists/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-2-gists/Gemfile -------------------------------------------------------------------------------- /chapter-2-gists/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-2-gists/Gemfile.lock -------------------------------------------------------------------------------- /chapter-2-gists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-2-gists/README.md -------------------------------------------------------------------------------- /chapter-2-gists/gist.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-2-gists/gist.help -------------------------------------------------------------------------------- /chapter-2-gists/hi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-2-gists/hi.rb -------------------------------------------------------------------------------- /chapter-2-gists/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-2-gists/index.erb -------------------------------------------------------------------------------- /chapter-3-wikis-and-gollum/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-3-wikis-and-gollum/Gemfile -------------------------------------------------------------------------------- /chapter-3-wikis-and-gollum/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-3-wikis-and-gollum/Gemfile.lock -------------------------------------------------------------------------------- /chapter-3-wikis-and-gollum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-3-wikis-and-gollum/README.md -------------------------------------------------------------------------------- /chapter-3-wikis-and-gollum/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-3-wikis-and-gollum/image.rb -------------------------------------------------------------------------------- /chapter-3-wikis-and-gollum/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-3-wikis-and-gollum/index.html -------------------------------------------------------------------------------- /chapter-4-python-and-search/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /chapter-4-python-and-search/agithub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-4-python-and-search/agithub.py -------------------------------------------------------------------------------- /chapter-4-python-and-search/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-4-python-and-search/test.py -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/.gitattributes -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/.gitignore -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1.Tests/NancyApplication1.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1.Tests/NancyApplication1.Tests.csproj -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1.Tests/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1.Tests/Test.cs -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1.Tests/packages.config -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1.sln -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1.userprefs -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Bootstrapper.cs -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Handler.cs -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/NancyApplication1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/NancyApplication1.csproj -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Web.Debug.config -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Web.Release.config -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/Web.config -------------------------------------------------------------------------------- /chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-5-dotnet-and-the-commit-status-api/NancyApplication1/packages.config -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | cached 3 | _site 4 | -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/Gemfile -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/README.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_config.yml: -------------------------------------------------------------------------------- 1 | name: Your New Jekyll Site 2 | markdown: redcarpet 3 | highlighter: pygments -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_layouts/default.html -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_layouts/post.html -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2000-05-23-third-day-in-salvador.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2000-05-23-third-day-in-salvador.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2000-08-28-the-hill-tribes-of-northern-thailand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2000-08-28-the-hill-tribes-of-northern-thailand.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2000-12-21-passion-play-of-oberammergau.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2000-12-21-passion-play-of-oberammergau.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-01-12-angrezis-in-bharat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-01-12-angrezis-in-bharat.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-01-12-cuba-the-good-and-bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-01-12-cuba-the-good-and-bad.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-01-12-mexico-belize-guatemala.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-01-12-mexico-belize-guatemala.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-01-12-nemaste.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-01-12-nemaste.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-01-12-south-africa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-01-12-south-africa.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-01-23-viagiatore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-01-23-viagiatore.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-02-14-solo-tango-in-buenos-aires.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-02-14-solo-tango-in-buenos-aires.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-03-11-solo-tango-in-buenos-aires.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-03-11-solo-tango-in-buenos-aires.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-04-05-lava-beds-ate-our-shoes-maui-hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-04-05-lava-beds-ate-our-shoes-maui-hi.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-08-19-mystic-connecticut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-08-19-mystic-connecticut.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-08-20-travel-tips-for-the-first-time-to-cuba.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-08-20-travel-tips-for-the-first-time-to-cuba.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-10-10-travel-in-italy-after-september-th.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-10-10-travel-in-italy-after-september-th.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-10-17-watch-out-for-borin-the-cab-driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-10-17-watch-out-for-borin-the-cab-driver.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-10-18-diving-in-dubrovnik.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-10-18-diving-in-dubrovnik.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-10-21-mirogoj-cemetery-in-zagreb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-10-21-mirogoj-cemetery-in-zagreb.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-11-03-smoking-in-the-hague.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-11-03-smoking-in-the-hague.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-12-02-check-out-this-travel-planning-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-12-02-check-out-this-travel-planning-website.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-12-07-family-trip-to-rajasthan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-12-07-family-trip-to-rajasthan.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2001-12-30-bhutan-monsoons-and-miracles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2001-12-30-bhutan-monsoons-and-miracles.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2002-05-07-the-bardo-museum.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: The Bardo Museum 3 | creation_date: '2002-05-07' 4 | layout: post 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2002-05-26-water-festival-in-bangkok.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2002-05-26-water-festival-in-bangkok.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2002-07-06-a-day-in-beijing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2002-07-06-a-day-in-beijing.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2002-07-06-the-great-wall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2002-07-06-the-great-wall.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2002-10-10-a-day-in-krakow-poland.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2002-10-10-a-day-in-krakow-poland.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2002-10-10-a-visit-to-montmartre-in-paris.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2002-10-10-a-visit-to-montmartre-in-paris.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2002-10-10-romantic-prague.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2002-10-10-romantic-prague.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2002-10-10-two-days-in-st-petersburg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2002-10-10-two-days-in-st-petersburg.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/_posts/2003-03-23-beautiful-belize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/_posts/2003-03-23-beautiful-belize.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/assets/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/assets/css/site.css -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/assets/images/book.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/assets/images/book.gif -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/assets/images/camera.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/assets/images/camera.gif -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/assets/images/hut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/assets/images/hut.gif -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/assets/images/paper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/assets/images/paper.gif -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/assets/images/phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/assets/images/phone.gif -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/assets/images/photo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/assets/images/photo.gif -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/assets/images/postcard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/assets/images/postcard.gif -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/assets/images/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/assets/images/star.gif -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/assets/images/tower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/assets/images/tower.gif -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/index.md -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/run.rb -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/scraper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/scraper.rb -------------------------------------------------------------------------------- /chapter-6-ruby-and-jekyll/scraper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-6-ruby-and-jekyll/scraper_spec.rb -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/.gitignore -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/.idea/.name: -------------------------------------------------------------------------------- 1 | GhRu2 -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/.idea/compiler.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/.idea/encodings.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/.idea/gradle.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/.idea/misc.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/.idea/modules.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/.idea/vcs.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/README.md -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/app.iml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/build.gradle -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/proguard-rules.pro -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/androidTest/java/com/example/ghru/MainActivityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/androidTest/java/com/example/ghru/MainActivityTest.java -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/java/com/example/ghru/GitHubHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/java/com/example/ghru/GitHubHelper.java -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/java/com/example/ghru/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/java/com/example/ghru/MainActivity.java -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/res/layout/logged_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/res/layout/logged_in.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/app/src/test/java/com/example/ghru/GitHubHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/app/src/test/java/com/example/ghru/GitHubHelperTest.java -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/build.gradle -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/gradle.properties -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/gradlew -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/gradlew.bat -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/secrets.xml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-7-android-and-git-data/secrets.xml.sample -------------------------------------------------------------------------------- /chapter-7-android-and-git-data/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-8-coffeescript-and-hubot/.editorconfig -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store* 3 | .hubot_history 4 | -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/HUBOT_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-8-coffeescript-and-hubot/HUBOT_README.md -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-8-coffeescript-and-hubot/Procfile -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-8-coffeescript-and-hubot/README.md -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/bin/hubot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-8-coffeescript-and-hubot/bin/hubot -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/bin/hubot.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | npm install && node_modules\.bin\hubot.cmd %* -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/external-scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-8-coffeescript-and-hubot/external-scripts.json -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/hubot-scripts.json: -------------------------------------------------------------------------------- 1 | [ ] 2 | -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/lib/handler.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-8-coffeescript-and-hubot/lib/handler.coffee -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-8-coffeescript-and-hubot/package.json -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/scripts/pr-delegator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-8-coffeescript-and-hubot/scripts/pr-delegator.coffee -------------------------------------------------------------------------------- /chapter-8-coffeescript-and-hubot/spec/pr-delegator.spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-8-coffeescript-and-hubot/spec/pr-delegator.spec.coffee -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/.powder: -------------------------------------------------------------------------------- 1 | github.js.test 2 | -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/README.md -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/angular-mocks.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/angular.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/base64.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/base64.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/base64.min.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/bootstrap.min.css -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/cities.json -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/coffeetech-annotate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/coffeetech-annotate.spec.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/coffeetech.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/coffeetech.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/coffeetech.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/coffeetech.spec.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/config.ru: -------------------------------------------------------------------------------- 1 | app = proc do |env| 2 | Rack::Directory.new('.').call(env) 3 | end 4 | 5 | run app 6 | -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/error -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/firebase-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/firebase-mock.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/fixtures-cities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/fixtures-cities.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/fixtures-portland.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/fixtures-portland.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/github.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/index.html -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/karma.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/karma.config.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/node/github-local-login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/node/github-local-login.js -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/package.json -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/portland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/portland.json -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/spec/requestSpec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/spec/requestSpec.coffee -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/spec/spec-helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/spec/spec-helper.coffee -------------------------------------------------------------------------------- /chapter-9-javascript-and-git-data/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrd/building-tools-with-github/HEAD/chapter-9-javascript-and-git-data/underscore-min.js --------------------------------------------------------------------------------