Sha256: 19138a9f2c3ca664504cbc2e2da7ae3606e9e89ca354b5454c54b226979c9544
Contents?: true
Size: 827 Bytes
Versions: 1
Compression:
Stored size: 827 Bytes
Contents
module Bowline VERSION = '0.1.1' # The raw JavaScript window object def self.js if defined?($app_window) $app_window else Class.new { def self.method_missing(*a) Bowline.logger.info "Sending to Window: #{a.inspect}" self end } end end # Change which page we're on def self.show_view(name) js.window.location = "app://public/#{name}.html" end class Base end end $LOAD_PATH << File.dirname(__FILE__) require 'bowline/ext/object' require 'bowline/ext/array' require 'bowline/ext/class' require 'bowline/ext/string' require 'bowline/gem_dependency' require 'bowline/initializer' require 'bowline/jquery' require 'bowline/observer' require 'bowline/binders' require 'bowline/binders/collection' require 'bowline/binders/singleton'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
maccman-bowline-0.1.1 | lib/bowline.rb |