File: awrence.rb

package info (click to toggle)
ruby-awrence 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 96 kB
  • sloc: ruby: 73; makefile: 4
file content (15 lines) | stat: -rw-r--r-- 257 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require "awrence/methods"
require "awrence/ext/array/to_camel_keys"
require "awrence/ext/hash/to_camel_keys"

module Awrence
  class << self
    attr_writer :acronyms

    def acronyms
      @acronyms ||= {}
    end
  end
end