Module: Contracts::Support
- Defined in:
- lib/contracts-ruby2/lib/contracts/support.rb,
lib/contracts-ruby3/lib/contracts/support.rb
Class Method Summary collapse
- .contract_id(contract) ⇒ Object
- .eigenclass?(target) ⇒ Boolean
- .eigenclass_hierarchy_supported? ⇒ Boolean
- .eigenclass_of(target) ⇒ Object
- .indent_string(string, amount) ⇒ Object
- .method_name(method) ⇒ Object
- .method_position(method) ⇒ Object
-
.unique_id ⇒ Object
Generates unique id, which can be used as a part of identifier.
Class Method Details
.contract_id(contract) ⇒ Object
28 29 30 |
# File 'lib/contracts-ruby2/lib/contracts/support.rb', line 28 def contract_id(contract) contract.object_id end |
.eigenclass?(target) ⇒ Boolean
40 41 42 43 |
# File 'lib/contracts-ruby2/lib/contracts/support.rb', line 40 def eigenclass?(target) module_eigenclass?(target) || target <= eigenclass_of(Object) end |
.eigenclass_hierarchy_supported? ⇒ Boolean
32 33 34 |
# File 'lib/contracts-ruby2/lib/contracts/support.rb', line 32 def eigenclass_hierarchy_supported? RUBY_PLATFORM != "java" || RUBY_VERSION.to_f >= 2.0 end |
.eigenclass_of(target) ⇒ Object
36 37 38 |
# File 'lib/contracts-ruby2/lib/contracts/support.rb', line 36 def eigenclass_of(target) class << target; self; end end |
.indent_string(string, amount) ⇒ Object
45 46 47 48 49 50 |
# File 'lib/contracts-ruby2/lib/contracts/support.rb', line 45 def indent_string(string, amount) string.gsub( /^(?!$)/, (string[/^[ \t]/] || " ") * amount ) end |
.method_name(method) ⇒ Object
15 16 17 |
# File 'lib/contracts-ruby2/lib/contracts/support.rb', line 15 def method_name(method) method.is_a?(Proc) ? "Proc" : method.name end |
.method_position(method) ⇒ Object
4 5 6 7 8 9 10 11 12 13 |
# File 'lib/contracts-ruby2/lib/contracts/support.rb', line 4 def method_position(method) return method.method_position if method.is_a?(MethodReference) file, line = method.source_location if file.nil? || line.nil? "" else file + ":" + line.to_s end end |
.unique_id ⇒ Object
23 24 25 26 |
# File 'lib/contracts-ruby2/lib/contracts/support.rb', line 23 def unique_id # Consider using SecureRandom.hex here, and benchmark which one is better (Time.now.to_f * 1000).to_i.to_s(36) + rand(1_000_000).to_s(36) end |