Sha256: 7e4896b1558272d87702558db0b5ae2fb1a77747992a16bcfa553b9b0352b4ff

Contents?: true

Size: 1.97 KB

Versions: 4

Compression:

Stored size: 1.97 KB

Contents

---
include_paths:
  - '#!:ruby'
  - '*.gemspec'
  - .irbrc
  - irb.rc
  - _irbrc
  - $irbrc
  - Gemfile
  - '*.erb'
  - '*.rb'

test_paths:
  - /tests/
  - /test/

erb_paths:
  - '*.erb'

haml_paths:
  - '*.haml'

keep:
  - initialize # called by new
  - inspect # called by repl, to_s
  - respond_to_missing? # called by respond_to?
  - method_missing # called by method dispatch
  - coerce # called by Numeric
  - to_s # called by "#{}"
  - to_ary # called by Array(), []+
  - to_a # called by Array(), *splat
  - to_str # called by String(), ""+
  - to_hash # called by Hash(), **splat, {}.merge
  - to_int # called by Integer()
  - to_i # called by Integer()
  - to_f # called by Float()
  - <=> # called by Comparable
  - each # called by Enumerable
  - marshal_dump # called by Marshal.dump
  - marshal_load # called by Marshal.load
  - _dump # called by Marshal.dump
  - _load # called by Marshal.load
  - inherited # called by Subclass < Klass or Class.new(Klass)
  - extended # called by extend Module
  - included # called by include Module
  - $VERBOSE # called by whatever is outputting warnings i guess
  - === # called by when
  - == # called by Array value, Hash value equality, ===
  - hash # called by Hash key equality
  - eql? # called by Hash key equality
dynamic:
  - name:
      - send
      - public_send
      - __send__
      - method
      - respond_to?
      - instance_method
    calls: 0
  - name: attr_reader
    defines:
      argument: '*'
    calls:
      argument: '*'
      add_prefix: '@'
  - name: attr_writer
    defines:
      argument: '*'
      add_suffix: '='
  - name: attr_accessor
    defines:
      - argument: '*'
        add_suffix: '='
      - argument: '*'
    calls:
      argument: '*'
      add_prefix: '@'
  - name: define_method
    defines: 0
  - name: alias_method
    defines: 0
    calls: 1
  - name:
      - instance_variable_get
      - class_variable_get
    calls: 0
  - name:
      - instance_variable_set
      - class_variable_set
    defines: 0

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
leftovers-0.5.3 lib/config/ruby.yml
leftovers-0.5.2 lib/config/ruby.yml
leftovers-0.5.1 lib/config/ruby.yml
leftovers-0.5.0 lib/config/ruby.yml