This file is indexed.

/usr/lib/ruby/vendor_ruby/insist.rb is in ruby-insist 1.0.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
require "insist/namespace"

require "insist/assert"
require "insist/comparators"
require "insist/enumerables"
require "insist/failure"
require "insist/nil"
require "insist/predicates"
require "insist/raises"

# Insist on correctness.
#
#
# Example:
#
#     data = { "hello" => "world" }
#     insist { data["hello"] } == "world"
#
# This class aims to work similarly to how rspec's "should" stuff does, but
# instead of molesting Object allows you to neatly wrap values with blocks
# while still checking for expected values.
class Insist
  class Failure < StandardError; end

  include Insist::Comparators
  include Insist::Enumerables
  include Insist::Nil
  include Insist::Assert
  include Insist::Raises
  include Insist::Predicates

  # Create a new insist with a block.
  #
  # Example:
  #
  #   Insist.new { value }
  #
  # Better:
  #
  #   insist { value }
  def initialize(&block)
    @callback = block
  end # def initialize

  def value
    # TODO(sissel): make caching the value optional
    @value ||= @callback.call
    return @value
  end # def value
end # class Insist

# Like Insist, but rejects (fails) on truthy values instead falsey ones.
class Reject < Insist
  def assert(truthy, message)
    raise Insist::Failure.new(message) if truthy
  end # def assert
end # class Reject

module Kernel
  # A shortcut to 'Insist.new'
  #
  # Example:
  #
  #     insist { "hello world" } != "fizzle"
  def insist(&block)
    return Insist.new(&block)
  end # def insist

  # A shortcut to 'Reject.new'
  #
  # Example:
  #
  #     # This will fail (raises Insist::Failure)
  #     reject { [1,2,3,4] }.include?(3)
  #
  #     # This will succeed
  #     reject { [1,2,3,4] }.include?(4)
  def reject(&block)
    return Reject.new(&block)
  end # def reject
end # module Kernel