+
+ from 'git://github.com/jieter/Leaflet.encoded.git' do
+ file 'leaflet.polyline.js', 'Polyline.encoded.js'
+ end
+ end
+
+ folder 'ohauth' do
+ from 'git://github.com/osmlab/ohauth.git' do
+ file 'ohauth.js'
+ end
+ end
+
+ folder 'iD' do
+ from 'git://github.com/openstreetmap/iD', :branch => 'release' do
+ folder 'iD/img', 'dist/img'
+ folder 'iD/locales', 'dist/locales'
+ folder 'iD/traffico', 'dist/traffico'
+
+ file 'iD.css.erb', 'dist/iD.css' do |path|
+ rewrite(path) do |content|
+ content.gsub(/url\('?(img\/[^')]+)'?\)/, 'url(<%= asset_path("iD/\1") %>)')
+ end
+ end
+
+ file 'iD/traffico/stylesheets/traffico.css.erb', 'dist/traffico/stylesheets/traffico.css' do |path|
+ rewrite(path) do |content|
+ content.gsub(/url\("?\.\.\/([^#?")]+)([^"]*)"?\)/, 'url(<%= asset_path("iD/traffico/\1") %>\2)')
+ end
+ end
+ puts "deleting vendor/assets/iD/iD/traffico/stylesheets/traffico.css"
+ File.delete('vendor/assets/iD/iD/traffico/stylesheets/traffico.css')
+
+ file 'iD.js', 'dist/iD.js'
+ file 'presets.js', 'dist/presets.js'
+ file 'imagery.js', 'dist/imagery.js'
+ end
+ end
+
+ folder 'javascripts' do
+ file 'html5shiv.js', 'https://raw.githubusercontent.com/aFarkas/html5shiv/master/src/html5shiv.js'