circleci
400 of 9819 relevant lines covered (4.07%)
0.04 hits per line
1 |
# frozen_string_literal: true
|
× |
2 |
##
|
× |
3 |
# Defines the attributes for schema.org
|
× |
4 |
module Schema |
× |
5 |
module SCHEMA |
× |
6 |
extend ActiveSupport::Concern |
× |
7 |
|
× |
8 |
def self.attributes |
× |
9 |
[ |
× |
10 |
:height, # http://schema.org/height |
× |
11 |
:width # http://schema.org/width |
× |
12 |
] |
× |
13 |
end
|
× |
14 |
|
× |
15 |
included do
|
× |
16 |
SCHEMA.attributes.each do |field| |
× |
17 |
attribute field |
× |
18 |
end
|
× |
19 |
end
|
× |
20 |
end
|
× |
21 |
end
|
× |