File: fix-missing-date-import.patch

package info (click to toggle)
ruby-brandur-json-schema 0.21.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 424 kB
  • sloc: ruby: 4,082; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 352 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Add a missing date import
Author: Simon Quigley <tsimonq2@debian.org>
Origin: vendor
Forwarded: not-needed
Last-Update: 2026-03-07
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/lib/json_schema/validator.rb
+++ b/lib/json_schema/validator.rb
@@ -1,3 +1,4 @@
+require "date"
 require "uri"
 
 module JsonSchema