Sha256: 274c59e03a59c4403b9096113b5e2c3001e15a8e48c45fb3f0acfe8ba533ee0b
Contents?: true
Size: 658 Bytes
Versions: 2
Compression:
Stored size: 658 Bytes
Contents
$:.unshift File.dirname(__FILE__) require 'rubygems' require 'activesupport' module SproutCore # Returns a library for the current working directory. This is useful when # working on the command line def self.library Library.library_for(Dir.pwd) end def self.library_for(path, opts={}) Library.library_for(path, opts) end def self.logger; @logger ||= Logger.new(STDOUT); end def self.logger=(new_logger); @logger = new_logger; end end # Force load the code files. Others may be loaded only as required %w(library bundle bundle_manifest jsdoc jsmin version).each do |fname| require "sproutcore/#{fname}" end SC= SproutCore
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sproutcore-0.9.12 | lib/sproutcore.rb |
sproutcore-0.9.13 | lib/sproutcore.rb |