mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 22:57:16 -04:00
13 lines
451 B
Text
13 lines
451 B
Text
require 'octokit'
|
|
skiplist = Regexp.union([ /^logstash-codec-cef$/, /^logstash-input-gemfire$/, /^logstash-output-gemfire$/, /^logstash-filter-metricize$/, /^logstash-filter-yaml$/, /jms$/, /example$/])
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gemspec :name => "logstash", :path => ".."
|
|
|
|
Octokit.auto_paginate = true
|
|
repo_list = Octokit.organization_repositories("logstash-plugins")
|
|
repo_list.each do |repo|
|
|
next if repo.name =~ skiplist
|
|
gem repo.name
|
|
end
|