gitlab-security_report_schemas 0.1.1.min15.0.0.max15.1.4 → 0.1.2.min15.0.0.max15.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83ef49533aa14d57d606e97177dd522e6ad3017504cd733b0e9176f7c02202f6
4
- data.tar.gz: b3e12d90ce76650f2fbdfca751c0aff425c1b40ead2d631f3efd9e2e394d17a0
3
+ metadata.gz: 829c10c48f022ae3585be483c470a724b74574ab08aaab2a084e768708b7f0b9
4
+ data.tar.gz: 0660d20df4943c705ecf1dfa3212ccf85aa8dc494d4e6d3131d11c5b92d95ca6
5
5
  SHA512:
6
- metadata.gz: a0001fca053530429d39dc2acded7cf33bbdb3722431c2a4525640c94277f86b523abd01a033845d1e581a8591b36b19fa3275f92fc073fee2e55df7ebe13fd4
7
- data.tar.gz: 47bad16e12f3cd883e5709e41a28d35be222df315963a5dd995ea07597e1af9f579b8df02848ecc44aa91f4440f6c407d242fd61c87471ac37293b6e66a81b0f
6
+ metadata.gz: b38737a65a97ed523136d583f8dcd9ca35edcd94b123665245079fe509ca1cf16bb3e1caf825524191fa119f345d7a27eb9d25d19d709e606c7857ff689bfb75
7
+ data.tar.gz: 323ff43d6c0052737395a2993542bbb110e34d34f48e1f7da38cc0bcafb0e8fce1a54accab77446b088aede0c896302be4bbc855298c14923e3710e9b5510d1b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlab-security_report_schemas (0.1.1.min15.0.0.max15.1.4)
4
+ gitlab-security_report_schemas (0.1.2.min15.0.0.max15.2.0)
5
5
  activesupport (>= 6, < 8)
6
6
  json_schemer (~> 2.3.0)
7
7
 
data/LICENSE.txt CHANGED
@@ -1,13 +1,6 @@
1
- Copyright (c) 2011-present GitLab B.V.
1
+ MIT License
2
2
 
3
- Portions of this software are licensed as follows:
4
-
5
- * All content residing under the "doc/" directory of this repository is licensed under "Creative Commons: CC BY-SA 4.0 license".
6
- * All content that resides under the "ee/" directory of this repository, if that directory exists, is licensed under the license defined in "ee/LICENSE".
7
- * All content that resides under the "jh/" directory of this repository, if that directory exists, is licensed under the license defined in "jh/LICENSE".
8
- * All client-side JavaScript (when served directly or after being compiled, arranged, augmented, or combined), is licensed under the "MIT Expat" license.
9
- * All third party components incorporated into the GitLab Software are licensed under the original license provided by the owner of the applicable component.
10
- * Content outside of the above mentioned directories or restrictions above is available under the "MIT Expat" license as defined below.
3
+ Copyright (c) 2017-present GitLab B.V.
11
4
 
12
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
13
6
  of this software and associated documentation files (the "Software"), to deal
data/gem_version CHANGED
@@ -1 +1 @@
1
- 0.1.1.min15.0.0.max15.1.4
1
+ 0.1.2.min15.0.0.max15.2.0
@@ -5,7 +5,7 @@ Gem::Specification.new do |spec|
5
5
  spec.version = `cat gem_version`
6
6
  spec.authors = ["GitLab"]
7
7
  spec.email = ["gitlab_rubygems@gitlab.com"]
8
- spec.license = "Nonstandard"
8
+ spec.license = "MIT"
9
9
 
10
10
  spec.summary = "Ruby gem for GitLab security report JSON schemas"
11
11
  spec.homepage = "https://gitlab.com/gitlab-org/ruby/gems/gitlab-security_report_schemas"
@@ -5,7 +5,7 @@ module Gitlab
5
5
  # Represents the version of the gem
6
6
  class Version
7
7
  VERSION_SPEC = "%<gem_version>s.min%<min_schema>s.max%<max_schema>s"
8
- GEM_VERSION = "0.1.1"
8
+ GEM_VERSION = "0.1.2"
9
9
  MISSING_SCHEMA_VERSION = "0.0.0"
10
10
 
11
11
  class << self