]> git.openstreetmap.org Git - rails.git/blob - Vendorfile
Don't disable History button
[rails.git] / Vendorfile
1 folder 'vendor/assets' do
2   folder 'jquery' do
3     file 'jquery.throttle-debounce.js', 'https://raw.github.com/cowboy/jquery-throttle-debounce/v1.1/jquery.ba-throttle-debounce.js'
4   end
5
6   folder 'bootstrap' do
7     file 'bootstrap.tooltip.js', 'https://raw.github.com/twbs/bootstrap/v2.3.2/js/bootstrap-tooltip.js'
8     file 'bootstrap.dropdown.js', 'https://raw.github.com/twbs/bootstrap/v2.3.2/js/bootstrap-dropdown.js'
9   end
10
11   folder 'leaflet' do
12     file 'leaflet.js', 'http://cdn.leafletjs.com/leaflet-0.6.3/leaflet-src.js'
13     file 'leaflet.css', 'http://cdn.leafletjs.com/leaflet-0.6.3/leaflet.css'
14     file 'leaflet.ie.css', 'http://cdn.leafletjs.com/leaflet-0.6.3/leaflet.ie.css'
15
16     [ 'layers.png', 'layers-2x.png',
17       'marker-icon.png', 'marker-icon-2x.png',
18       'marker-shadow.png' ].each do |image|
19       file "images/#{image}", "http://cdn.leafletjs.com/leaflet-0.6.3/images/#{image}"
20     end
21
22     from 'git://github.com/kajic/leaflet-locationfilter.git' do
23       file 'leaflet.locationfilter.css', 'src/locationfilter.css'
24       file 'leaflet.locationfilter.js', 'src/locationfilter.js'
25       folder 'img', 'src/img'
26     end
27
28     from 'git://github.com/domoritz/leaflet-locatecontrol.git' do
29       file 'leaflet.locate.js', 'src/L.Control.Locate.js'
30     end
31
32     from 'git://github.com/jfirebaugh/leaflet-osm.git' do
33       file 'leaflet.osm.js', 'leaflet-osm.js'
34     end
35
36     from 'git://github.com/mlevans/leaflet-hash.git' do
37       file 'leaflet.hash.js', 'leaflet-hash.js'
38     end
39   end
40
41   folder 'ohauth' do
42     from 'git://github.com/osmlab/ohauth.git' do
43       file 'ohauth.js'
44     end
45   end
46
47   folder 'iD' do
48     from 'git://github.com/systemed/iD', :branch => 'release' do
49       folder 'iD/img', 'dist/img'
50       folder 'iD/locales', 'dist/locales'
51       file 'iD.css.erb', 'dist/iD.css' do |path|
52         rewrite(path) { |content| content.gsub(/url\('?(img\/[^')]+)'?\)/, 'url(<%= asset_path("iD/\1") %>)') }
53       end
54       file 'iD.js', 'dist/iD.js'
55     end
56   end
57 end