Sha256: c595518ad4f20a613830d89aca75346bb9bed9ac35fdddc454036aa0823ea1d9
Contents?: true
Size: 535 Bytes
Versions: 7
Compression:
Stored size: 535 Bytes
Contents
# frozen_string_literal: true def read_json_file(file) JSON.parse(File.read(file)) rescue StandardError => e raise "JSON parsing error in #{file} #{e}" end # @return [ Symbol ] # @note As a class can not start with a digit or underscore, a D_ is # put as a prefix in such case. Ugly but well :x # Not only used to classify slugs though, but Dynamic Finder names as well def classify_slug(slug) classified = slug.to_s.tr('-', '_').camelize.to_s classified = "D_#{classified}" if classified[0] =~ /\d/ classified.to_sym end
Version data entries
7 entries across 7 versions & 1 rubygems