jbuilder-schema 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/jbuilder/schema/version.rb +1 -1
- data/lib/jbuilder/schema.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 475aa6226a8439f15059d59b79e0e2b0fad03e725c75f462be7aea3b070f5b27
|
4
|
+
data.tar.gz: c93e583024e7ad2af6208b3913f7e1c74b8166740c3ca3c3d2a4b8d4105ed2a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e286e0531d82ba6b3031925b0a82bd70b66e11497a086bd90abe47aeceff1d6c5d8438b82e98f632058a3953a16c1355638143732a97ef2bc36235071ff92270
|
7
|
+
data.tar.gz: ea53e46e9a812b5345a4df0ff92df7fa91c2263de5e636c5afac16becad88febf445fdd0ee37d062a270a0b80f341c69e6302c1a53c2108cded1b1089374cd5f
|
data/Gemfile.lock
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
# We can't use the standard `Jbuilder::Schema::VERSION =` because
|
2
2
|
# `Jbuilder` isn't a regular module namespace, but a class …which also loads Active Support.
|
3
3
|
# So we use trickery, and assign the proper version once `jbuilder/schema.rb` is loaded.
|
4
|
-
JBUILDER_SCHEMA_VERSION = "2.0.
|
4
|
+
JBUILDER_SCHEMA_VERSION = "2.0.2"
|
data/lib/jbuilder/schema.rb
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "active_support/core_ext/module/delegation"
|
4
|
+
require "jbuilder/schema/version"
|
4
5
|
|
5
6
|
class Jbuilder::Schema
|
6
|
-
VERSION =
|
7
|
+
VERSION = "2.0.2" # TODO Fix this. It's throwing errors when including the Ruby gem in downstream projects.
|
7
8
|
|
8
9
|
module IgnoreSchemaMeta
|
9
10
|
::Jbuilder.prepend self
|