Skip to content

Commit

Permalink
Support Crystal compiler v1.7.1.
Browse files Browse the repository at this point in the history
Deal with compiler regression.

See: crystal-lang/crystal#12974
  • Loading branch information
toddsundsted committed Jan 24, 2023
1 parent 6cabcc1 commit 3d5dfcc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/rules/content_rules.cr
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ require "../utils/compiler"
class ContentRules
# domain types

class ::ActivityPub::Activity include School::DomainType end
class ::ActivityPub::Actor include School::DomainType end
class ::ActivityPub::Object include School::DomainType end
class ::Relationship::Content::Outbox include School::DomainType end
class ::Relationship::Content::Inbox include School::DomainType end
class ::Relationship::Content::Notification include School::DomainType end
class ::Relationship::Content::Timeline include School::DomainType end
class ::Relationship::Social::Follow include School::DomainType end
class ::Tag::Mention include School::DomainType end
class ::FilterTerm include School::DomainType end
class ::ActivityPub::Activity ; include School::DomainType ; end
class ::ActivityPub::Actor ; include School::DomainType ; end
class ::ActivityPub::Object ; include School::DomainType ; end
class ::Relationship::Content::Outbox ; include School::DomainType ; end
class ::Relationship::Content::Inbox ; include School::DomainType ; end
class ::Relationship::Content::Notification ; include School::DomainType ; end
class ::Relationship::Content::Timeline ; include School::DomainType ; end
class ::Relationship::Social::Follow ; include School::DomainType ; end
class ::Tag::Mention ; include School::DomainType ; end
class ::FilterTerm ; include School::DomainType ; end

# patterns and facts for the rules below

Expand Down

0 comments on commit 3d5dfcc

Please sign in to comment.