Sha256: b5e3607ce570cc84e9050579e57a0cc71a1f8e4649bd24611beec55ffbeafc47

Contents?: true

Size: 434 Bytes

Versions: 2

Compression:

Stored size: 434 Bytes

Contents

#! /usr/bin/env ruby
# See https://github.com/github/government.github.com/pull/367#issuecomment-102108763

require 'fileutils'

FileUtils.rm_rf('almanak.overheid.nl')
commands = [
  "wget -q -r -nc -np https://almanak.overheid.nl/
  grep @ -rI almanak.overheid.nl/",
  'cut -f 2 -d @',
  "cut -f 1 -d '\"'",
  'grep \\.nl$',
  'sort',
  'uniq'
]
domains = system commands.join('|')

Gman.import('Netherlands' => domains.split("\n"))

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gman-6.0.1 script/vendor-nl
gman-6.0.0 script/vendor-nl