aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/extensions/pathname.rb
blob: 829f692d798003422e78340999cf89695617f405 (plain) (blame)
1
2
3
4
5
6
7
8
9
module Arel
  module PathnameExtensions
    def /(path)
      (self + path).expand_path
    end
    
    Pathname.send(:include, self)
  end
end