Sha256: 986a36bba931cb4161b23fba0c158e03e8fbf81b4515be382bc377ef7ae542a7
Contents?: true
Size: 388 Bytes
Versions: 8
Compression:
Stored size: 388 Bytes
Contents
#!/usr/bin/env ruby # coding: utf-8 module Cuesmash # # Provides an object to get information about the ios app that is being built # class App # Public: the xcode Derived Data temp directory attr_reader :tmp_dir # # Create a new App instance # # @return [App] A app instance def initialize @tmp_dir = Dir.mktmpdir(file_name) end end end
Version data entries
8 entries across 8 versions & 1 rubygems