decko-commons/decko

View on GitHub
decko/lib/decko.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Decko
  DECKO_GEM_ROOT = File.expand_path("..", __dir__)

  class << self
    delegate :application, :root, to: :Rails
    delegate :config, :paths, to: :application

    def gem_root
      DECKO_GEM_ROOT
    end
  end
end