advanced pipeline

This commit is contained in:
2026-08-25 23:50:11 +02:00
parent c8dc153e80
commit 3f5caf947f
30 changed files with 44 additions and 42 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ namespace :warp_engine do
checklist = WarpEngine::AssetCoverageChecklist.new(
coverage, only_missing: ENV["ONLY"] == "missing"
)
puts checklist.to_s
puts checklist
if ENV["STRICT"] == "1" && coverage.totals[:missing].positive?
abort "\nSTRICT: #{coverage.totals[:missing]} expected assets are missing."
-1
View File
@@ -13,7 +13,6 @@ require "warp_engine/images"
require "warp_engine/ci"
module WarpEngine
def self.table_name_prefix
""
end
-3
View File
@@ -1,7 +1,5 @@
module WarpEngine
module AccessPolicy
class Open
def visible_software_scope(subject: nil)
WarpEngine::Software.kept
@@ -39,7 +37,6 @@ module WarpEngine
end
class Access
attr_reader :gated, :entitled, :price_cents, :currency, :purchase_url, :web_url
def initialize(gated: false, entitled: true, price_cents: nil, currency: nil,
-1
View File
@@ -1,5 +1,4 @@
module WarpEngine
module CI
class Error < StandardError; end
-1
View File
@@ -1,6 +1,5 @@
module WarpEngine
class Configuration
attr_accessor :site_url,
:file_container_path,
:update_secret,
-2
View File
@@ -1,7 +1,5 @@
module WarpEngine
module Images
class HostModel
URL_PREFIX = "/api/image".freeze
-1
View File
@@ -1,5 +1,4 @@
module WarpEngine
module Storage
Location = Struct.new(:kind, :path, :url, keyword_init: true) do
def file? = kind == :file
+1 -1
View File
@@ -1,5 +1,5 @@
module WarpEngine
VERSION = "0.9.0"
VERSION = "0.9.1"
VERSION_HEADER = "WarpEngine-Version".freeze
end