Sha256: c050d1e6534bd73ae401a2c09d2967afb4aafb09c0c1545794908369614c74a6
Contents?: true
Size: 363 Bytes
Versions: 16
Compression:
Stored size: 363 Bytes
Contents
# frozen_string_literal: true require 'pathname' require_relative 'dapr/version' # Add a method to Pathname to join paths on / class Pathname def /(other) join(other.to_s) end end module Rubyists module Dapr class Error < StandardError; end ROOT = Pathname.new(__dir__).join('..').expand_path LIBROOT = ROOT.join('lib/dapr') end end
Version data entries
16 entries across 16 versions & 1 rubygems