Sha256: eb4ba1c9ae4b75a544315116d97998efcc6918fd3a9f11cf4cbcd9471c937b31
Contents?: true
Size: 359 Bytes
Versions: 1
Compression:
Stored size: 359 Bytes
Contents
# frozen_string_literal: true module Shiyo # The module to provide syntax suggers. module SyntaxSugger # rubocop:disable Naming/MethodName # The syntax sugger for `Shiyo::Not.new` # @param object Any object. # @return [Shiyo::Not] def Not(object) Shiyo::Not.new(object) end # rubocop:enable Naming/MethodName end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
shiyo-0.1.0 | lib/shiyo/syntax_sugger.rb |