Sha256: 12585a2d72d71209362b1bddb351ab06484dd384f6d6c246d5c59cf67e818bf7
Contents?: true
Size: 361 Bytes
Versions: 21
Compression:
Stored size: 361 Bytes
Contents
require 'pathname' module DashingContrib class Configuration attr_accessor :template_paths def initialize @template_paths = [File.expand_path("../", dir)] end # __dir__ is only supported >= ruby 2.0, use __FILE__ approach # Gem should support wide range of ruby versions def dir File.dirname(__FILE__) end end end
Version data entries
21 entries across 21 versions & 1 rubygems