├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── _DIFFSHOTS.md ├── _DIFFSHOTS ├── accepts-range-of-commits.diffshot.rb.png ├── added-border-and-color-options.diffshot.rb.png ├── added-configyml.config.yml.png ├── added-configyml.diffshot.rb.png ├── better-image-names.diffshot.rb.png ├── diffs-files.diffshot.rb.png ├── generates-markdown-file.diffshot.rb.png ├── gets-github-url.diffshot.rb.png ├── prints-diffed-files.diffshot.rb.png ├── prints-line-color.diffshot.rb.png ├── shows-all-commits.diffshot.rb.png ├── shows-files-in-initial-commit.diffshot.rb.png └── successfully-generates-the-images.diffshot.rb.png └── bin └── diffshot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/Rakefile -------------------------------------------------------------------------------- /_DIFFSHOTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS.md -------------------------------------------------------------------------------- /_DIFFSHOTS/accepts-range-of-commits.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/accepts-range-of-commits.diffshot.rb.png -------------------------------------------------------------------------------- /_DIFFSHOTS/added-border-and-color-options.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/added-border-and-color-options.diffshot.rb.png -------------------------------------------------------------------------------- /_DIFFSHOTS/added-configyml.config.yml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/added-configyml.config.yml.png -------------------------------------------------------------------------------- /_DIFFSHOTS/added-configyml.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/added-configyml.diffshot.rb.png -------------------------------------------------------------------------------- /_DIFFSHOTS/better-image-names.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/better-image-names.diffshot.rb.png -------------------------------------------------------------------------------- /_DIFFSHOTS/diffs-files.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/diffs-files.diffshot.rb.png -------------------------------------------------------------------------------- /_DIFFSHOTS/generates-markdown-file.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/generates-markdown-file.diffshot.rb.png -------------------------------------------------------------------------------- /_DIFFSHOTS/gets-github-url.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/gets-github-url.diffshot.rb.png -------------------------------------------------------------------------------- /_DIFFSHOTS/prints-diffed-files.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/prints-diffed-files.diffshot.rb.png -------------------------------------------------------------------------------- /_DIFFSHOTS/prints-line-color.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/prints-line-color.diffshot.rb.png -------------------------------------------------------------------------------- /_DIFFSHOTS/shows-all-commits.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/shows-all-commits.diffshot.rb.png -------------------------------------------------------------------------------- /_DIFFSHOTS/shows-files-in-initial-commit.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/shows-files-in-initial-commit.diffshot.rb.png -------------------------------------------------------------------------------- /_DIFFSHOTS/successfully-generates-the-images.diffshot.rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/_DIFFSHOTS/successfully-generates-the-images.diffshot.rb.png -------------------------------------------------------------------------------- /bin/diffshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertAKARobin/diffshot-rb/HEAD/bin/diffshot --------------------------------------------------------------------------------