Sha256: 17236e8480a8c33d4346e44c2365d70cfbe3bb72d13a818d13e1ce48441b72cd

Contents?: true

Size: 1.9 KB

Versions: 39

Compression:

Stored size: 1.9 KB

Contents

def root_method
end

module InchTest
  StructGetSet = Struct.new(:struct_getset)

  attr_accessor :attr_getset

  def manual_getset
  end

  def manual_getset=(val)
  end

  attr_reader :getter

  def manual_setter=(val)
  end

  attr_writer :attr_setter

  def bang_method!
  end

  def splat_method(*args)
  end

  def block_method(&block)
  end

  def yielding_method
    yield true if block_given?
  end

  def question_mark_method?
    if true
      bang_method!
    end
  end

  # @return [Boolean] something funny
  def question_mark_method_with_description?
  end

  # @return [Boolean] something funny
  def method_with_description_and_parameters?(user)
  end

  def many_parameters_method(a,b,c,d,e,f)
  end

  def alias_method
  end
  alias :am :alias_method

  def many_lines_method
    if true
      if true
        if true
          if true
            bang_method!
          end
        end
      end
    end
    if true
      if true
        if true
          if true
            bang_method!
          end
        end
      end
    end
    if true
      if true
        if true
          if true
            bang_method!
          end
        end
      end
    end
  end

  # @deprecated
  # @see InchTest
  def unconsidered_tags_method
  end
  public :public_method

  # @raise [ArgumentError] every time!
  def raising_method_with_comment
    raise ArgumentError
  end

  def raising_method
    raise ArgumentError
  end

  def public_method
  end

  def protected_method
  end
  protected :protected_method

  def private_method
  end
  private :private_method

  # @private
  def method_with_private_tag
  end

  # @api private
  def private_api_with_yard
  end

  # Internal: Normalize the filename.
  def internal_api_with_tomdoc
  end

  # Private: Normalize the filename.
  def private_method_with_tomdoc
  end

  # @return [Boolean] something funny
  def _aliased_method
  end
  alias _alias_method _aliased_method

end

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
inch-0.7.0 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.6.4 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.6.3 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.6.2 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.6.1 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.6.0 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.6.0.rc6 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.6.0.rc5 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.6.0.rc4 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.6.0.rc3 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.6.0.rc2 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.6.0.rc1 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.5.10 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.5.9 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.5.8 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.5.7 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.5.6 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.5.5 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.5.4 test/fixtures/ruby/simple/lib/role_methods.rb
inch-0.5.3 test/fixtures/ruby/simple/lib/role_methods.rb