Sha256: 5cf379a5b647695c0918af60754766a7c7081d8abe982c5768963f2aa2fef75a

Contents?: true

Size: 681 Bytes

Versions: 1

Compression:

Stored size: 681 Bytes

Contents

# frozen_string_literal: true

require_relative "nice_partials/version"
require_relative "nice_partials/helper"
require_relative "nice_partials/monkey_patch"
require_relative "partials"

module NicePartials
end

# TODO Is there somewhere better we can put this?
def nice_partials_locale_prefix_from_view_context_and_block(context, block)
  root_paths = context.view_renderer.lookup_context.view_paths.map(&:path)
  partial_location = block.source_location.first.dup
  root_paths.each { |path| partial_location.gsub!(/^#{path}\//, '') }
  partial_location.split('.').first.gsub('/_', '/').gsub('/', '.')
end

ActiveSupport.on_load :action_view do
  include NicePartials::Helper
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nice_partials-0.1.4 lib/nice_partials.rb