diff --git a/VERSION b/VERSION index a909317f..778bf95c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.10 +3.0.11 diff --git a/lib/rdf/vocabulary.rb b/lib/rdf/vocabulary.rb index 3e515a5c..97e0bede 100644 --- a/lib/rdf/vocabulary.rb +++ b/lib/rdf/vocabulary.rb @@ -205,7 +205,7 @@ def property(*args) @ontology ||= prop if name.to_s.empty? # Define an accessor, except for problematic properties - (class << self; self; end).send(:define_method, name) { prop } unless %w(property hash).include?(name.to_s) + (class << self; self; end).send(:define_method, name) { prop } unless %w(property term hash).include?(name.to_s) else # Define the term without a name # Term attributes passed in a block for lazy evaluation. This helps to avoid load-time circular dependencies