Sha256: c782bebf5a599b07e81b69f1bdb6cdad86d777e8b5ae30a1b080267b724a9141
Contents?: true
Size: 387 Bytes
Versions: 2
Compression:
Stored size: 387 Bytes
Contents
module Ios module Box class Config attr_accessor :project attr_reader :targets def self.load(file = ".iosbox") config = self.new config.instance_eval(File.read(file), file) config end def initialize @targets = [] @project = nil end def config self end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ios-box-0.2.1 | lib/ios-box/config.rb |
ios-box-0.2.0 | lib/ios-box/config.rb |