kigster/secrets-cipher-base64

View on GitHub
lib/sym/app/short_name.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'active_support/inflector'
module Sym
  module App
    module ShortName
      def short_name
        self.name.split(/::/)[-1].underscore.to_sym
      end
    end
  end
end