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

Version Path
dapr-0.5.0 lib/dapr.rb
dapr-0.4.3 lib/dapr.rb
dapr-0.4.2 lib/dapr.rb
dapr-0.4.1 lib/dapr.rb
dapr-0.4.0 lib/dapr.rb
dapr-0.3.3 lib/dapr.rb
dapr-0.3.2 lib/dapr.rb
dapr-0.3.1 lib/dapr.rb
dapr-0.3.0 lib/dapr.rb
dapr-0.2.11 lib/dapr.rb
dapr-0.2.9 lib/dapr.rb
dapr-0.2.8 lib/dapr.rb
dapr-0.2.7 lib/dapr.rb
dapr-0.2.6 lib/dapr.rb
dapr-0.2.4 lib/dapr.rb
dapr-0.2.2 lib/dapr.rb