Sha256: b351e38da1af1ecf832c74415a90026cb4de8d042ad0f2959f65d27401f28833

Contents?: true

Size: 222 Bytes

Versions: 46

Compression:

Stored size: 222 Bytes

Contents

module Tracksperanto::ConstName
  module C
    def const_name
      to_s.split('::').pop
    end
  end
  
  def const_name
    self.class.const_name
  end
  
  def self.included(into)
    into.extend(C)
    super
  end
end

Version data entries

46 entries across 46 versions & 1 rubygems

Version Path
tracksperanto-1.5.1 lib/tracksperanto/const_name.rb
tracksperanto-1.5.0 lib/tracksperanto/const_name.rb
tracksperanto-1.4.0 lib/tracksperanto/const_name.rb
tracksperanto-1.2.6 lib/tracksperanto/const_name.rb
tracksperanto-1.3.1 lib/tracksperanto/const_name.rb
tracksperanto-1.3.0 lib/tracksperanto/const_name.rb