From a0120c2f2132db0539427f3eeadb7ea29f000ea9 Mon Sep 17 00:00:00 2001 From: Mike Linksvayer Date: Mon, 12 Dec 2016 17:21:28 -0800 Subject: [PATCH 1/2] New home for John Cowan's license selection wizard Waybacked in https://github.com/github/choosealicense.com/commit/c008a5fbef641d49c83d5d61a8a5c66428efeb40, Cowan now has a new home, updating to that. --- about.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/about.md b/about.md index c33cdf9..26572d5 100644 --- a/about.md +++ b/about.md @@ -23,7 +23,7 @@ See our [appendix](/appendix) for a table of all of the licenses cataloged in th * Linux Foundation's [SPDX License List](https://spdx.org/licenses/) * [Comparison of free and open-source software licenses](https://en.wikipedia.org/wiki/Comparison_of_free_and_open-source_software_licenses) on English Wikipedia * [License differentiator](http://www.oss-watch.ac.uk/apps/licdiff/) ([source](https://github.com/ox-it/licdiff)) from [OSS Watch](http://www.oss-watch.ac.uk/) -* [Free/Libre/Open Source license selection wizard](http://web.archive.org/web/20160801055258/http://home.ccil.org/~cowan/floss/) by John Cowan +* [Free/Libre/Open Source license selection wizard](http://vrici.lojban.org/~cowan/floss/) by John Cowan ## Help us improve it From 74ec63ec1b27e1c80ca6a78e166641bf2c65da22 Mon Sep 17 00:00:00 2001 From: Mike Linksvayer Date: Mon, 12 Dec 2016 14:34:21 -0800 Subject: [PATCH 2/2] order gems so rubocop doesn't complain --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 66b1bc6..44de39e 100644 --- a/Gemfile +++ b/Gemfile @@ -8,14 +8,14 @@ gem 'github-pages', versions['github-pages'] group :development do gem 'colored' - gem 'terminal-table' gem 'fuzzy_match' + gem 'terminal-table' end group :test do gem 'html-proofer', '~> 3.0' + gem 'nokogiri' gem 'rake' gem 'rspec' - gem 'nokogiri' gem 'rubocop' end