jbuilder-schema 2.0.1 → 2.0.3

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: a69e9ffd441f2e46592aa2e7a533157e8ce1d166a72d331176e98d577311b66c
4
- data.tar.gz: e0162e1fee77c8288006683f883b2d1b7340781fd3c509f2f24a893de69b1db7
3
+ metadata.gz: 991bddd670414a1f167fc83b2114d27337ab2e5df0b1e6355e86cbfe832521c2
4
+ data.tar.gz: ae052082eee4397d31eff6765676efe8961a0e9cccc76dd4ff468352281f27ea
5
5
  SHA512:
6
- metadata.gz: 96dbb87d9ddb9884726787caf2de42d0038c5e55b5b5c1b31859b0b7fa9cc4412e514a9fb4e658126ece93d2f6dfdc9532be6ce6a5b14bdd57148cb74e74951c
7
- data.tar.gz: 856dd6cd617cc5739960d7afb29184e3a34c84b50b761d1620e1df24d57bc147dd69bfbfd1a8533ae0aa52e05fbf101e4fce810080cdde8a1690fcaccdb7815e
6
+ metadata.gz: 68f345ca2156440ec1e98f89a9322cf92f5450006b51e61b17d7437721fbc542985142f4fd223d8cc805bed1e6b4b2d2c2bd96197b1805155a6a9af04f0f59cd
7
+ data.tar.gz: 64d6feefab876b7446e4523d739b9c9be65fd88e42eec35bcbab54f417f5ff6966c6c7a898c06d506e301a26ba3e474e5282275a2f5af575dcba64f8e4032366
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jbuilder-schema (2.0.1)
4
+ jbuilder-schema (2.0.3)
5
5
  jbuilder
6
6
  rails (>= 5.0.0)
7
7
 
@@ -18,8 +18,10 @@ class Jbuilder::Schema::Renderer
18
18
  end
19
19
 
20
20
  def render(object = nil, title: nil, description: nil, assigns: nil, **options)
21
- partial_path = object.respond_to?(:to_partial_path_for_jbuilder_schema) ? object.to_partial_path_for_jbuilder_schema : object.to_partial_path
22
- options.merge! partial: partial_path, object: object if object
21
+ if object
22
+ partial_path = object.respond_to?(:to_partial_path_for_jbuilder_schema) ? object.to_partial_path_for_jbuilder_schema : object.to_partial_path
23
+ options.merge! partial: partial_path, object: object
24
+ end
23
25
 
24
26
  options[:locals] ||= {}
25
27
  options[:locals].merge! @default_locals if @default_locals
@@ -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.1"
4
+ JBUILDER_SCHEMA_VERSION = "2.0.3"
@@ -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 = JBUILDER_SCHEMA_VERSION # See `jbuilder/schema/version.rb`
7
+ VERSION = "2.0.3" # 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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jbuilder-schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuri Sidorov