Sha256: 99629574253d2ab259e3dc62b3b394000d53ab5b5b90035dd00c789e74280922

Contents?: true

Size: 630 Bytes

Versions: 6

Compression:

Stored size: 630 Bytes

Contents

namespace :bundles do
  
  BUNDLES = ["JavaScript\ jQuery.tmbundle", "JavaScript.tmbundle"]
 
  desc 'Install TextMate bundles from SVN for jQuery and Jsspec(include in general javascript). This requires svn to be installed.'
  task :tm do
    require 'tmpdir'
    require 'fileutils'
    BUNDLES.each { |bundle|
      bundle_filename = File.join(Dir.tmpdir, bundle)
      puts "Getting #{bundle} from svn http://svn.textmate.org/trunk/Bundles/#{bundle} and will open in Textmate"
      `svn export --force "http://svn.textmate.org/trunk/Bundles/#{bundle}" "#{bundle_filename}"`
      `open "#{bundle_filename}"`
    }
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jqueryplugingen-0.2.6 lib/jquery_plugin_gen/support/bundles.rake
jqueryplugingen-0.2.5 lib/jquery_plugin_gen/support/bundles.rake
jqueryplugingen-0.2.1 lib/jquery_plugin_gen/support/bundles.rake
jqueryplugingen-0.2.2 lib/jquery_plugin_gen/support/bundles.rake
jqueryplugingen-0.2.3 lib/jquery_plugin_gen/support/bundles.rake
jqueryplugingen-0.2.4 lib/jquery_plugin_gen/support/bundles.rake