Sha256: e7963d9130999d667b155bceab95dd6cc2aa7f0004d0017ab4c101c5c4540fe5

Contents?: true

Size: 434 Bytes

Versions: 22

Compression:

Stored size: 434 Bytes

Contents

# frozen_string_literal: true

module LedgerSync
  module Ledgers
    class DashboardURLHelper
      attr_reader :resource,
                  :base_url

      def initialize(args = {})
        @resource = args.fetch(:resource)
        @base_url = args.fetch(:base_url)
      end

      def url
        File.join(base_url, resource_path)
      end

      def resource_path
        raise NotImplementedError
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
ledger_sync-2.6.0 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-2.5.0 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-2.4.4 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-2.3.1 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-2.2.3 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-2.2.1 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-2.2.0 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-2.0.2 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-2.0.1 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-2.0.0 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-2.0.0.pre.1 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-1.8.1 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-1.8.0 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-1.7.0 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-1.6.0 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-1.5.2 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-1.5.1 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-1.5.0 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-1.4.4 lib/ledger_sync/ledgers/dashboard_url_helper.rb
ledger_sync-1.4.2 lib/ledger_sync/ledgers/dashboard_url_helper.rb