dolphins7.skeleton/client/lib/twenty/client.rb

11 lines
216 B
Ruby
Raw Permalink Normal View History

2023-12-08 19:27:00 +01:00
# frozen_string_literal: true
module Twenty
2024-05-24 04:37:51 +02:00
##
# @return [String]
# Returns an absolute path to the nanoc build/ directory
2023-12-08 19:27:00 +01:00
def self.build
2024-05-24 04:37:51 +02:00
File.realpath File.join(__dir__, "..", "..", "build")
2023-12-08 19:27:00 +01:00
end
end