Sha256: 6344f69e73c54421528e84e33fd43ddde767dab051786d0d0c5c2aa789cfeaa6

Contents?: true

Size: 1.6 KB

Versions: 48

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true

# Copyright (c) 2024 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

require 'pathname'

# Adding method +to_rel+ to all Ruby objects.
# Author:: Yegor Bugayenko (yegor256@gmail.com)
# Copyright:: Copyright (c) 2024 Yegor Bugayenko
# License:: MIT
class Object
  # Generates a relative name of a file (to the current dir).
  def to_rel
    s = File.absolute_path(to_s)
    p = Pathname.new(s).relative_path_from(Dir.getwd)
    t = p.to_s
    t = s if t.length > s.length
    t = "\"#{t}\"" if t.include?(' ')
    if p.directory?
      "#{t}/"
    else
      t
    end
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
judges-0.30.0 lib/judges/to_rel.rb
judges-0.29.0 lib/judges/to_rel.rb
judges-0.28.1 lib/judges/to_rel.rb
judges-0.28.0 lib/judges/to_rel.rb
judges-0.27.0 lib/judges/to_rel.rb
judges-0.26.1 lib/judges/to_rel.rb
judges-0.26.0 lib/judges/to_rel.rb
judges-0.25.2 lib/judges/to_rel.rb
judges-0.25.1 lib/judges/to_rel.rb
judges-0.25.0 lib/judges/to_rel.rb
judges-0.24.0 lib/judges/to_rel.rb
judges-0.23.0 lib/judges/to_rel.rb
judges-0.22.1 lib/judges/to_rel.rb
judges-0.22.0 lib/judges/to_rel.rb
judges-0.21.0 lib/judges/to_rel.rb
judges-0.20.0 lib/judges/to_rel.rb
judges-0.19.0 lib/judges/to_rel.rb
judges-0.18.1 lib/judges/to_rel.rb
judges-0.18.0 lib/judges/to_rel.rb
judges-0.17.0 lib/judges/to_rel.rb