From 915fca8862a1132209ef01b99f4879cfc673f7c2 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Fri, 19 Oct 2012 15:45:09 -0700 Subject: [PATCH] Add Vendorfile See https://github.com/grosser/vendorer --- Vendorfile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Vendorfile diff --git a/Vendorfile b/Vendorfile new file mode 100644 index 000000000..6d0eb1196 --- /dev/null +++ b/Vendorfile @@ -0,0 +1,24 @@ +folder 'vendor/assets' do + folder 'leaflet' do + from 'https://github.com/CloudMade/Leaflet.git' do + file 'leaflet.css', 'dist/leaflet.css' + file 'leaflet.ie.css', 'dist/leaflet.ie.css' + file 'leaflet.js', 'dist/leaflet-src.js' + folder 'images', 'dist/images' + end + + from 'https://github.com/jfirebaugh/leaflet-locationfilter.git', :branch => 'osm' do + file 'leaflet.locationfilter.css', 'src/locationfilter.css' + file 'leaflet.locationfilter.js', 'src/locationfilter.js' + folder 'img', 'src/img' + end + + file 'leaflet.pan.js', 'https://raw.github.com/kartena/Leaflet.Pancontrol/master/src/L.Control.Pan.js' + file 'leaflet.zoom.js', 'https://raw.github.com/kartena/Leaflet.zoomslider/master/src/L.Control.Zoomslider.js' + # CSS and sprite image are our own + + from 'https://github.com/jfirebaugh/leaflet-osm.git' do + file 'leaflet.osm.js', 'leaflet-osm.js' + end + end +end -- 2.43.2