Skip to content

Commit

Permalink
Fix bug with helpers/binders
Browse files Browse the repository at this point in the history
  • Loading branch information
maccman committed Jul 10, 2009
1 parent 58cacf7 commit a1b8bb9
Show file tree
Hide file tree
Showing 11 changed files with 2,172 additions and 1,330 deletions.
8 changes: 5 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
require File.join(File.dirname(__FILE__), *%w[.. lib bowline])

begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "bowline"
gemspec.version = Bowline::Version::STRING
gemspec.summary = "Bowline GUI framework"
gemspec.email = "alex@leadthinking.com"
gemspec.homepage = "http://github.com/maccman/bowline"
Expand All @@ -15,4 +12,9 @@ begin
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

task :write_version do
require File.join(File.dirname(__FILE__), *%w[lib bowline])
File.open('VERSION', 'w') {|f| f.write Bowline::Version::STRING }
end
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.3.0
9 changes: 4 additions & 5 deletions assets/jquery.bowline.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,10 @@

$(function(){
$(document.body).trigger('loading.bowline');
// Todo - http://support.appcelerator.net/discussions/support/117-ruby-script-tag-cant-be-added-dynamically
// var script = $("<script />");
// script.attr('type', 'text/ruby');
// script.attr('src', '../script/init');
// $('head').append(script);
var script = $("<script />");
script.attr('type', 'text/ruby');
script.attr('src', '../script/init');
$('head').append(script);
$(document.body).trigger('loaded.bowline');
})
})(jQuery)
Loading

0 comments on commit a1b8bb9

Please sign in to comment.