advanced pipeline
This commit is contained in:
@@ -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."
|
||||
|
||||
@@ -13,7 +13,6 @@ require "warp_engine/images"
|
||||
require "warp_engine/ci"
|
||||
|
||||
module WarpEngine
|
||||
|
||||
def self.table_name_prefix
|
||||
""
|
||||
end
|
||||
|
||||
@@ -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,5 +1,4 @@
|
||||
module WarpEngine
|
||||
|
||||
module CI
|
||||
class Error < StandardError; end
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
module WarpEngine
|
||||
class Configuration
|
||||
|
||||
attr_accessor :site_url,
|
||||
:file_container_path,
|
||||
:update_secret,
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
module WarpEngine
|
||||
|
||||
module Images
|
||||
|
||||
class HostModel
|
||||
URL_PREFIX = "/api/image".freeze
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
module WarpEngine
|
||||
|
||||
module Storage
|
||||
Location = Struct.new(:kind, :path, :url, keyword_init: true) do
|
||||
def file? = kind == :file
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
module WarpEngine
|
||||
VERSION = "0.9.0"
|
||||
VERSION = "0.9.1"
|
||||
|
||||
VERSION_HEADER = "WarpEngine-Version".freeze
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user