Sha256: 0d64e03bc1785ba963927e062e946ca62985d310b7feb31f6a705d6a7688e1a2
Contents?: true
Size: 758 Bytes
Versions: 4
Compression:
Stored size: 758 Bytes
Contents
module <%= gem_class_name %> class Vars # Interface method. Hash of properties to be stored # Usually available from env vars. # Provide as many CI system as possible. def data { build_system: "REPLACE_ME", host: ENV['REPLACE_ME'], full_repo: ENV['REPLACE_ME'], branch_name: ENV['REPLACE_ME'], # urls pr_url: ENV['REPLACE_ME'], build_url: ENV['REPLACE_ME'], # additional properties build_type: ENV['REPLACE_ME'], pr_number: ENV['REPLACE_ME'], sha: ENV['REPLACE_ME'], # additional properties commit_message: ENV['REPLACE_ME'], build_id: ENV['REPLACE_ME'], build_number: ENV['REPLACE_ME'], } end end end
Version data entries
4 entries across 4 versions & 1 rubygems