choosealicense.com/Rakefile

39 lines
1.3 KiB
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2017-03-27 02:19:44 +02:00
2016-03-18 01:30:47 +01:00
require 'html-proofer'
2015-03-07 18:47:24 +01:00
require 'rspec/core/rake_task'
2016-02-08 21:37:19 +01:00
desc 'Run specs'
2015-03-07 18:47:24 +01:00
RSpec::Core::RakeTask.new do |t|
t.pattern = 'spec/**/*_spec.rb'
2016-02-08 21:37:19 +01:00
t.rspec_opts = ['--order', 'rand', '--color']
2015-03-07 18:47:24 +01:00
end
2013-10-23 09:07:51 +02:00
task :test do
2016-02-08 21:37:19 +01:00
sh 'bundle exec jekyll build'
Rake::Task['spec'].invoke
2016-03-18 01:30:47 +01:00
HTMLProofer.check_directory('./_site',
check_html: true,
enforce_https: true,
2016-03-18 01:30:47 +01:00
validation: { ignore_script_embeds: true },
url_swap: { %r{https://choosealicense.com} => '' },
url_ignore: [%r{https://github.com/github/choosealicense.com/edit/gh-pages/_licenses/},
%r{https://help.github.com},
%r{https://opensource.org}],
hydra: { max_concurrency: 10 },
check_img_http: true).run
2013-10-23 09:07:51 +02:00
end
2016-01-16 00:01:07 +01:00
task :approved_licenses do
require './spec/spec_helper'
approved = approved_licenses
approved.select! { |l| spdx_ids.include?(l) }
puts "#{approved.count} approved licenses:"
2016-02-08 21:37:19 +01:00
puts approved.join(', ')
2016-01-16 00:01:07 +01:00
puts "\n"
2016-01-16 00:04:07 +01:00
2017-03-27 02:19:44 +02:00
potential = approved - (licenses.map { |l| l['id'] })
2016-01-16 00:01:07 +01:00
puts "#{potential.count} potential additions:"
2016-02-08 21:37:19 +01:00
puts potential.join(', ')
2016-01-16 00:01:07 +01:00
end