faster_path 0.0.2

Alternative to Pathname
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
class RefinedPathname
  using FasterPath::RefinePathname
  def has_trailing_separator?(path)
    Pathname.new(path).has_trailing_separator?
  end
end

class HasTrailingSeparatorRefinementTest < Minitest::Test
  def test_refines_pathname_has_trailing_separator?
    assert RefinedPathname.new.has_trailing_separator? "a/"
  end
end