1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
|
# frozen_string_literal: true
require "bundler/shared_helpers"
require "shellwords"
require_relative "build_metadata"
module Spec
module Builders
def self.extended(mod)
mod.extend Path
mod.extend Helpers
end
def self.constantize(name)
name.delete("-").upcase
end
def v(version)
Gem::Version.new(version)
end
def pl(platform)
Gem::Platform.new(platform)
end
def rake_version
"13.2.1"
end
def build_repo1
build_repo gem_repo1 do
FileUtils.cp rake_path, "#{gem_repo1}/gems/"
build_gem "coffee-script-source"
build_gem "git"
build_gem "puma"
build_gem "minitest"
build_gem "myrack", %w[0.9.1 1.0.0] do |s|
s.executables = "myrackup"
s.post_install_message = "Myrack's post install message"
end
build_gem "thin" do |s|
s.add_dependency "myrack"
s.post_install_message = "Thin's post install message"
end
build_gem "myrack-obama" do |s|
s.add_dependency "myrack"
s.post_install_message = "Myrack-obama's post install message"
end
build_gem "myrack_middleware", "1.0" do |s|
s.add_dependency "myrack", "0.9.1"
end
build_gem "rails", "2.3.2" do |s|
s.executables = "rails"
s.add_dependency "rake", rake_version
s.add_dependency "actionpack", "2.3.2"
s.add_dependency "activerecord", "2.3.2"
s.add_dependency "actionmailer", "2.3.2"
s.add_dependency "activeresource", "2.3.2"
end
build_gem "actionpack", "2.3.2" do |s|
s.add_dependency "activesupport", "2.3.2"
end
build_gem "activerecord", ["2.3.1", "2.3.2"] do |s|
s.add_dependency "activesupport", "2.3.2"
end
build_gem "actionmailer", "2.3.2" do |s|
s.add_dependency "activesupport", "2.3.2"
end
build_gem "activeresource", "2.3.2" do |s|
s.add_dependency "activesupport", "2.3.2"
end
build_gem "activesupport", %w[1.2.3 2.3.2 2.3.5]
build_gem "activemerchant" do |s|
s.add_dependency "activesupport", ">= 2.0.0"
end
build_gem "rspec", "1.2.7", no_default: true do |s|
s.write "lib/spec.rb", "SPEC = '1.2.7'"
end
build_gem "myrack-test", no_default: true do |s|
s.write "lib/myrack/test.rb", "MYRACK_TEST = '1.0'"
end
build_gem "platform_specific" do |s|
s.platform = "java"
end
build_gem "platform_specific" do |s|
s.platform = "ruby"
end
build_gem "platform_specific" do |s|
s.platform = "x86-mswin32"
end
build_gem "platform_specific" do |s|
s.platform = "x64-mswin64"
end
build_gem "platform_specific" do |s|
s.platform = "x86-mingw32"
end
build_gem "platform_specific" do |s|
s.platform = "x64-mingw32"
end
build_gem "platform_specific" do |s|
s.platform = "x64-mingw-ucrt"
end
build_gem "platform_specific" do |s|
s.platform = "aarch64-mingw-ucrt"
end
build_gem "platform_specific" do |s|
s.platform = "x86-darwin-100"
end
build_gem "only_java", "1.0" do |s|
s.platform = "java"
end
build_gem "only_java", "1.1" do |s|
s.platform = "java"
end
build_gem "nokogiri", "1.4.2"
build_gem "nokogiri", "1.4.2" do |s|
s.platform = "java"
s.add_dependency "weakling", ">= 0.0.3"
end
build_gem "laduradura", "5.15.2"
build_gem "laduradura", "5.15.2" do |s|
s.platform = "java"
end
build_gem "laduradura", "5.15.3" do |s|
s.platform = "java"
end
build_gem "weakling", "0.0.3"
build_gem "terranova", "8"
build_gem "duradura", "7.0"
build_gem "very_simple_binary", &:add_c_extension
build_gem "simple_binary", &:add_c_extension
build_gem "bundler", "0.9" do |s|
s.executables = "bundle"
s.write "bin/bundle", "#!/usr/bin/env ruby\nputs 'FAIL'"
end
# The bundler 0.8 gem has a rubygems plugin that always loads :(
build_gem "bundler", "0.8.1" do |s|
s.write "lib/bundler/omg.rb", ""
s.write "lib/rubygems_plugin.rb", "require 'bundler/omg' ; puts 'FAIL'"
end
# The yard gem iterates over Gem.source_index looking for plugins
build_gem "yard" do |s|
s.write "lib/yard.rb", <<-Y
Gem::Specification.sort_by(&:name).each do |gem|
puts gem.full_name
end
Y
end
build_gem "net-ssh"
build_gem "net-sftp", "1.1.1" do |s|
s.add_dependency "net-ssh", ">= 1.0.0", "< 1.99.0"
end
build_gem "foo"
end
end
def build_repo2(**kwargs, &blk)
FileUtils.cp_r gem_repo1, gem_repo2, remove_destination: true
update_repo2(**kwargs, &blk) if block_given?
end
# A repo that has no pre-installed gems included. (The caller completely
# determines the contents with the block.)
def build_repo3(**kwargs, &blk)
raise "gem_repo3 already exists -- use update_repo3 instead" if File.exist?(gem_repo3)
build_repo gem_repo3, **kwargs, &blk
end
# Like build_repo3, this is a repo that has no pre-installed gems included.
# We have two different methods for situations where two different empty
# sources are needed.
def build_repo4(**kwargs, &blk)
raise "gem_repo4 already exists -- use update_repo4 instead" if File.exist?(gem_repo4)
build_repo gem_repo4, **kwargs, &blk
end
def update_repo2(**kwargs, &blk)
update_repo(gem_repo2, **kwargs, &blk)
end
def update_repo3(&blk)
update_repo(gem_repo3, &blk)
end
def update_repo4(&blk)
update_repo(gem_repo4, &blk)
end
def build_security_repo
build_repo security_repo do
build_gem "myrack"
build_gem "signed_gem" do |s|
cert = "signing-cert.pem"
pkey = "signing-pkey.pem"
s.write cert, TEST_CERT
s.write pkey, TEST_PKEY
s.signing_key = pkey
s.cert_chain = [cert]
end
end
end
# A minimal fake irb console
def build_dummy_irb(version = "9.9.9")
build_gem "irb", version do |s|
s.write "lib/irb.rb", <<-RUBY
class IRB
class << self
def toplevel_binding
unless defined?(@toplevel_binding) && @toplevel_binding
TOPLEVEL_BINDING.eval %{
def self.__irb__; binding; end
IRB.instance_variable_set(:@toplevel_binding, __irb__)
class << self; undef __irb__; end
}
end
@toplevel_binding.eval('private')
@toplevel_binding
end
def __irb__
while line = gets
begin
puts eval(line, toplevel_binding).inspect.sub(/^"(.*)"$/, '=> \\1')
rescue Exception => e
puts "\#{e.class}: \#{e.message}"
puts e.backtrace.first
end
end
end
alias start __irb__
end
end
RUBY
end
end
def build_repo(path, **kwargs, &blk)
return if File.directory?(path)
FileUtils.mkdir_p("#{path}/gems")
update_repo(path,**kwargs, &blk)
end
def update_repo(path, build_compact_index: true)
exempted_caller = Gem.ruby_version >= Gem::Version.new("3.4.0.dev") ? "#{Module.nesting.first}#build_repo" : "build_repo"
if path == gem_repo1 && caller_locations(1, 1).first.label != exempted_caller
raise "Updating gem_repo1 is unsupported -- use gem_repo2 instead"
end
return unless block_given?
@_build_path = "#{path}/gems"
@_build_repo = File.basename(path)
yield
with_gem_path_as base_system_gem_path do
Dir[base_system_gem_path.join("gems/rubygems-generate_index*/lib")].first ||
raise("Could not find rubygems-generate_index lib directory in #{base_system_gem_path}")
command = "generate_index"
command += " --no-compact" if !build_compact_index && gem_command(command + " --help").include?("--[no-]compact")
gem_command command, dir: path
end
ensure
@_build_path = nil
@_build_repo = nil
end
def build_index(&block)
index = Bundler::Index.new
IndexBuilder.run(index, &block) if block_given?
index
end
def build_spec(name, version = "0.0.1", platform = nil, &block)
Array(version).map do |v|
Gem::Specification.new do |s|
s.name = name
s.version = Gem::Version.new(v)
s.platform = platform
s.authors = ["no one in particular"]
s.summary = "a gemspec used only for testing"
DepBuilder.run(s, &block) if block_given?
end
end
end
def build_lib(name, *args, &blk)
build_with(LibBuilder, name, args, &blk)
end
def build_bundler(*args, &blk)
build_with(BundlerBuilder, "bundler", args, &blk)
end
def build_gem(name, *args, &blk)
build_with(GemBuilder, name, args, &blk)
end
def build_git(name, *args, &block)
opts = args.last.is_a?(Hash) ? args.last : {}
builder = opts[:bare] ? GitBareBuilder : GitBuilder
spec = build_with(builder, name, args, &block)
GitReader.new(self, opts[:path] || lib_path(spec.full_name))
end
def update_git(name, *args, &block)
opts = args.last.is_a?(Hash) ? args.last : {}
spec = build_with(GitUpdater, name, args, &block)
GitReader.new(self, opts[:path] || lib_path(spec.full_name))
end
def build_plugin(name, *args, &blk)
build_with(PluginBuilder, name, args, &blk)
end
private
def build_with(builder, name, args, &blk)
@_build_path ||= nil
@_build_repo ||= nil
options = args.last.is_a?(Hash) ? args.pop : {}
versions = args.last || "1.0"
spec = nil
options[:path] ||= @_build_path
options[:source] ||= @_build_repo
Array(versions).each do |version|
spec = builder.new(self, name, version)
yield spec if block_given?
spec._build(options)
end
spec
end
class IndexBuilder
include Builders
def self.run(index, &block)
new(index).run(&block)
end
def initialize(index)
@index = index
end
def run(&block)
instance_eval(&block)
end
def gem(*args, &block)
build_spec(*args, &block).each do |s|
@index << s
end
end
def platforms(platforms)
platforms.split(/\s+/).each do |platform|
platform.gsub!(/^(mswin32)$/, 'x86-\1')
yield Gem::Platform.new(platform)
end
end
def versions(versions)
versions.split(/\s+/).each {|version| yield v(version) }
end
end
class DepBuilder
include Builders
def self.run(spec, &block)
new(spec).run(&block)
end
def initialize(spec)
@spec = spec
end
def run(&block)
instance_eval(&block)
end
def runtime(name, requirements)
@spec.add_runtime_dependency(name, requirements)
end
def development(name, requirements)
@spec.add_development_dependency(name, requirements)
end
def required_ruby_version=(*reqs)
@spec.required_ruby_version = *reqs
end
alias_method :dep, :runtime
end
class BundlerBuilder
attr_writer :required_ruby_version
def initialize(context, name, version)
raise "can only build bundler" unless name == "bundler"
@context = context
@version = version || Bundler::VERSION
end
def _build(options = {})
full_name = "bundler-#{@version}"
build_path = @context.tmp + full_name
bundler_path = build_path + "#{full_name}.gem"
require "fileutils"
FileUtils.mkdir_p build_path
@context.shipped_files.each do |shipped_file|
target_shipped_file = shipped_file
target_shipped_file = shipped_file.sub(/\Alibexec/, "exe") if @context.ruby_core?
target_shipped_file = build_path + target_shipped_file
target_shipped_dir = File.dirname(target_shipped_file)
FileUtils.mkdir_p target_shipped_dir unless File.directory?(target_shipped_dir)
FileUtils.cp File.expand_path(shipped_file, @context.source_root), target_shipped_file, preserve: true
end
@context.replace_version_file(@version, dir: build_path)
@context.replace_required_ruby_version(@required_ruby_version, dir: build_path) if @required_ruby_version
Spec::BuildMetadata.write_build_metadata(dir: build_path)
@context.gem_command "build #{@context.relative_gemspec}", dir: build_path
if block_given?
yield(bundler_path)
else
FileUtils.mv bundler_path, options[:path]
end
ensure
build_path.rmtree
end
end
class LibBuilder
def initialize(context, name, version)
@context = context
@name = name
@spec = Gem::Specification.new do |s|
s.name = name
s.version = version
s.summary = "This is just a fake gem for testing"
s.description = "This is a completely fake gem, for testing purposes."
s.author = "no one"
s.email = "foo@bar.baz"
s.homepage = "http://example.com"
s.license = "MIT"
s.required_ruby_version = ">= 3.0"
end
@files = {}
end
def method_missing(*args, &blk)
@spec.send(*args, &blk)
end
def write(file, source = "")
@files[file] = source
end
def executables=(val)
@spec.executables = Array(val)
@spec.executables.each do |file|
executable = "#{@spec.bindir}/#{file}"
shebang = "#!/usr/bin/env ruby\n"
@spec.files << executable
write executable, "#{shebang}require_relative '../lib/#{@name}' ; puts #{Builders.constantize(@name)}"
end
end
def add_c_extension
extensions << "ext/extconf.rb"
write "ext/extconf.rb", <<-RUBY
require "mkmf"
extension_name = "#{name}_c"
if extra_lib_dir = with_config("ext-lib")
# add extra libpath if --with-ext-lib is
# passed in as a build_arg
dir_config extension_name, nil, extra_lib_dir
else
dir_config extension_name
end
create_makefile extension_name
RUBY
write "ext/#{name}.c", <<-C
#include "ruby.h"
void Init_#{name}_c(void) {
rb_define_module("#{Builders.constantize(name)}_IN_C");
}
C
end
def _build(options)
path = options[:path] || _default_path
if options[:rubygems_version]
@spec.rubygems_version = options[:rubygems_version]
def @spec.validate(*); end
end
unless options[:no_default]
gem_source = options[:source] || "path@#{path}"
@files = _default_files.
merge("lib/#{entrypoint}/source.rb" => "#{Builders.constantize(name)}_SOURCE = #{gem_source.to_s.dump}").
merge(@files)
end
@spec.authors = ["no one"]
@spec.files += @files.keys
case options[:gemspec]
when false
# do nothing
when :yaml
@files["#{name}.gemspec"] = @spec.to_yaml
else
@files["#{name}.gemspec"] = @spec.to_ruby
end
@files.each do |file, source|
full_path = Pathname.new(path).join(file)
FileUtils.mkdir_p(full_path.dirname)
File.open(full_path, "w") {|f| f.puts source }
FileUtils.chmod("+x", full_path) if @spec.executables.map {|exe| "#{@spec.bindir}/#{exe}" }.include?(file)
end
path
end
def _default_files
@_default_files ||= { "lib/#{entrypoint}.rb" => "#{Builders.constantize(name)} = '#{version}#{platform_string}'" }
end
def entrypoint
name.tr("-", "/")
end
def _default_path
@context.tmp("libs", @spec.full_name)
end
def platform_string
" #{@spec.platform}" unless @spec.platform == Gem::Platform::RUBY
end
end
class GitBuilder < LibBuilder
def _build(options)
default_branch = options[:default_branch] || "main"
path = options[:path] || _default_path
source = options[:source] || "git@#{path}"
super(options.merge(path: path, source: source))
@context.git("config --global init.defaultBranch #{default_branch}", path)
@context.git("init", path)
@context.git("add *", path)
@context.git("config user.email lol@wut.com", path)
@context.git("config user.name lolwut", path)
@context.git("config commit.gpgsign false", path)
@context.git("commit -m OMG_INITIAL_COMMIT", path)
end
end
class GitBareBuilder < LibBuilder
def _build(options)
path = options[:path] || _default_path
super(options.merge(path: path))
@context.git("init --bare", path)
end
end
class GitUpdater < LibBuilder
def _build(options)
libpath = options[:path] || _default_path
update_gemspec = options[:gemspec] || false
source = options[:source] || "git@#{libpath}"
if branch = options[:branch]
@context.git("checkout -b #{Shellwords.shellescape(branch)}", libpath)
elsif tag = options[:tag]
@context.git("tag #{Shellwords.shellescape(tag)}", libpath)
elsif options[:remote]
@context.git("remote add origin #{options[:remote]}", libpath)
elsif options[:push]
@context.git("push origin #{options[:push]}", libpath)
end
current_ref = @context.git("rev-parse HEAD", libpath).strip
_default_files.keys.each do |path|
_default_files[path] += "\n#{Builders.constantize(name)}_PREV_REF = '#{current_ref}'"
end
super(options.merge(path: libpath, gemspec: update_gemspec, source: source))
@context.git("commit -am BUMP", libpath)
end
end
class GitReader
attr_reader :context, :path
def initialize(context, path)
@context = context
@path = path
end
def ref_for(ref, len = nil)
ref = context.git "rev-parse #{ref}", path
ref = ref[0..len] if len
ref
end
end
class GemBuilder < LibBuilder
def _build(opts)
lib_path = opts[:lib_path] || @context.tmp(".tmp/#{@spec.full_name}")
lib_path = super(opts.merge(path: lib_path, no_default: opts[:no_default]))
destination = opts[:path] || _default_path
FileUtils.mkdir_p(lib_path.join(destination))
if [:yaml, false].include?(opts[:gemspec])
Dir.chdir(lib_path) do
Bundler.rubygems.build(@spec, opts[:skip_validation])
end
elsif opts[:skip_validation]
@context.gem_command "build --force #{@spec.name}", dir: lib_path
else
@context.gem_command "build #{@spec.name}", dir: lib_path, allowed_warning: opts[:allowed_warning]
end
gem_path = File.expand_path("#{@spec.full_name}.gem", lib_path)
if opts[:to_system]
@context.system_gems gem_path, default: opts[:default]
elsif opts[:to_bundle]
@context.system_gems gem_path, path: @context.default_bundle_path
else
FileUtils.mv(gem_path, destination)
end
end
def _default_path
@context.gem_repo1("gems")
end
end
class PluginBuilder < GemBuilder
def _default_files
@_default_files ||= {
"lib/#{name}.rb" => "#{Builders.constantize(name)} = '#{version}#{platform_string}'",
"plugins.rb" => "",
}
end
end
TEST_CERT = <<~CERT
-----BEGIN CERTIFICATE-----
MIIDMjCCAhqgAwIBAgIBATANBgkqhkiG9w0BAQUFADAnMQwwCgYDVQQDDAN5b3Ux
FzAVBgoJkiaJk/IsZAEZFgdleGFtcGxlMB4XDTE1MDIwODAwMTIyM1oXDTQyMDYy
NTAwMTIyM1owJzEMMAoGA1UEAwwDeW91MRcwFQYKCZImiZPyLGQBGRYHZXhhbXBs
ZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANlvFdpN43c4DMS9Jo06
m0a7k3bQ3HWQ1yrYhZMi77F1F73NpBknYHIzDktQpGn6hs/4QFJT4m4zNEBF47UL
jHU5nTK5rjkS3niGYUjvh3ZEzVeo9zHUlD/UwflDo4ALl3TSo2KY/KdPS/UTdLXL
ajkQvaVJtEDgBPE3DPhlj5whp+Ik3mDHej7qpV6F502leAwYaFyOtlEG/ZGNG+nZ
L0clH0j77HpP42AylHDi+vakEM3xcjo9BeWQ6Vkboic93c9RTt6CWBWxMQP7Nol1
MOebz9XOSQclxpxWteXNfPRtMdAhmRl76SMI8ywzThNPpa4EH/yz34ftebVOgKyM
nd0CAwEAAaNpMGcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFA7D
n9qo0np23qi3aOYuAAPn/5IdMBYGA1UdEQQPMA2BC3lvdUBleGFtcGxlMBYGA1Ud
EgQPMA2BC3lvdUBleGFtcGxlMA0GCSqGSIb3DQEBBQUAA4IBAQA7Gyk62sWOUX/N
vk4tJrgKESph6Ns8+E36A7n3jt8zCep8ldzMvwTWquf9iqhsC68FilEoaDnUlWw7
d6oNuaFkv7zfrWGLlvqQJC+cu2X5EpcCksg5oRp8VNbwJysJ6JgwosxzROII8eXc
R+j1j6mDvQYqig2QOnzf480pjaqbP+tspfDFZbhKPrgM3Blrb3ZYuFpv4zkqI7aB
6fuk2DUhNO1CuwrJA84TqC+jGo73bDKaT5hrIDiaJRrN5+zcWja2uEWrj5jSbep4
oXdEdyH73hOHMBP40uds3PqnUsxEJhzjB2sCCe1geV24kw9J4m7EQXPVkUKDgKrt
LlpDmOoo
-----END CERTIFICATE-----
CERT
TEST_PKEY = <<~PKEY
-----BEGIN RSA PRIVATE KEY-----
MIIEowIBAAKCAQEA2W8V2k3jdzgMxL0mjTqbRruTdtDcdZDXKtiFkyLvsXUXvc2k
GSdgcjMOS1CkafqGz/hAUlPibjM0QEXjtQuMdTmdMrmuORLeeIZhSO+HdkTNV6j3
MdSUP9TB+UOjgAuXdNKjYpj8p09L9RN0tctqORC9pUm0QOAE8TcM+GWPnCGn4iTe
YMd6PuqlXoXnTaV4DBhoXI62UQb9kY0b6dkvRyUfSPvsek/jYDKUcOL69qQQzfFy
Oj0F5ZDpWRuiJz3dz1FO3oJYFbExA/s2iXUw55vP1c5JByXGnFa15c189G0x0CGZ
GXvpIwjzLDNOE0+lrgQf/LPfh+15tU6ArIyd3QIDAQABAoIBACbDqz20TS1gDMa2
gj0DidNedbflHKjJHdNBru7Ad8NHgOgR1YO2hXdWquG6itVqGMbTF4SV9/R1pIcg
7qvEV1I+50u31tvOBWOvcYCzU48+TO2n7gowQA3xPHPYHzog1uu48fAOHl0lwgD7
av9OOK3b0jO5pC08wyTOD73pPWU0NrkTh2+N364leIi1pNuI1z4V+nEuIIm7XpVd
5V4sXidMTiEMJwE6baEDfTjHKaoRndXrrPo3ryIXmcX7Ag1SwAQwF5fBCRToCgIx
dszEZB1bJD5gA6r+eGnJLB/F60nK607az5o3EdguoB2LKa6q6krpaRCmZU5svvoF
J7xgBPECgYEA8RIzHAQ3zbaibKdnllBLIgsqGdSzebTLKheFuigRotEV3Or/z5Lg
k/nVnThWVkTOSRqXTNpJAME6a4KTdcVSxYP+SdZVO1esazHrGb7xPVb7MWSE1cqp
WEk3Yy8OUOPoPQMc4dyGzd30Mi8IBB6gnFIYOTrpUo0XtkBv8rGGhfsCgYEA5uYn
6QgL4NqNT84IXylmMb5ia3iBt6lhxI/A28CDtQvfScl4eYK0IjBwdfG6E1vJgyzg
nJzv3xEVo9bz+Kq7CcThWpK5JQaPnsV0Q74Wjk0ShHet15txOdJuKImnh5F6lylC
GTLR9gnptytfMH/uuw4ws0Q2kcg4l5NHKOWOnAcCgYEAvAwIVkhsB0n59Wu4gCZu
FUZENxYWUk/XUyQ6KnZrG2ih90xQ8+iMyqFOIm/52R2fFKNrdoWoALC6E3ct8+ZS
pMRLrelFXx8K3it4SwMJR2H8XBEfFW4bH0UtsW7Zafv+AunUs9LETP5gKG1LgXsq
qgXX43yy2LQ61O365YPZfdUCgYBVbTvA3MhARbvYldrFEnUL3GtfZbNgdxuD9Mee
xig0eJMBIrgfBLuOlqtVB70XYnM4xAbKCso4loKSHnofO1N99siFkRlM2JOUY2tz
kMWZmmxKdFjuF0WZ5f/5oYxI/QsFGC+rUQEbbWl56mMKd5qkvEhKWudxoklF0yiV
ufC8SwKBgDWb8iWqWN5a/kfvKoxFcDM74UHk/SeKMGAL+ujKLf58F+CbweM5pX9C
EUsxeoUEraVWTiyFVNqD81rCdceus9TdBj0ZIK1vUttaRZyrMAwF0uQSfjtxsOpd
l69BkyvzjgDPkmOHVGiSZDLi3YDvypbUpo6LOy4v5rVg5U2F/A0v
-----END RSA PRIVATE KEY-----
PKEY
end
end
|