File: configuration.rb

package info (click to toggle)
ruby-bogus 0.1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 860 kB
  • sloc: ruby: 4,219; makefile: 8; sh: 2
file content (10 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
module Bogus
  class Configuration
    attr_writer :search_modules
    attr_accessor :fake_ar_attributes

    def search_modules
      @search_modules ||= [Object]
    end
  end
end