]> git.openstreetmap.org Git - rails.git/blob - Vendorfile
Merge remote-tracking branch 'upstream/pull/2431'
[rails.git] / Vendorfile
1 folder 'vendor/assets' do
2   folder 'jquery' do
3     file 'jquery.cookie.js', 'https://raw.githubusercontent.com/carhartl/jquery-cookie/master/src/jquery.cookie.js'
4     file 'jquery.throttle-debounce.js', 'https://raw.githubusercontent.com/cowboy/jquery-throttle-debounce/v1.1/jquery.ba-throttle-debounce.js'
5     file 'jquery.simulate.js', 'https://raw.githubusercontent.com/jquery/jquery-simulate/1.0.0/jquery.simulate.js'
6   end
7
8   folder 'leaflet' do
9     file 'leaflet.js', 'https://unpkg.com/leaflet@1.6.0/dist/leaflet-src.js'
10     file 'leaflet.css', 'https://unpkg.com/leaflet@1.6.0/dist/leaflet.css'
11
12     [ 'layers.png', 'layers-2x.png',
13       'marker-icon.png', 'marker-icon-2x.png',
14       'marker-shadow.png' ].each do |image|
15       file "images/#{image}", "https://unpkg.com/leaflet@1.6.0/dist/images/#{image}"
16     end
17
18     from 'git://github.com/aratcliffe/Leaflet.contextmenu.git', :tag => 'v1.5.1' do
19       file 'leaflet.contextmenu.js', 'dist/leaflet.contextmenu.js'
20       file 'leaflet.contextmenu.css', 'dist/leaflet.contextmenu.css'
21     end
22
23     from 'git://github.com/kajic/leaflet-locationfilter.git' do
24       file 'leaflet.locationfilter.css', 'src/locationfilter.css'
25       file 'leaflet.locationfilter.js', 'src/locationfilter.js'
26       folder 'img', 'src/img'
27     end
28
29     from 'git://github.com/domoritz/leaflet-locatecontrol.git', :tag => 'v0.71.0' do
30       file 'leaflet.locate.js', 'src/L.Control.Locate.js'
31     end
32
33     from 'git://github.com/jfirebaugh/leaflet-osm.git' do
34       file 'leaflet.osm.js', 'leaflet-osm.js'
35     end
36
37     from 'git://github.com/jieter/Leaflet.encoded.git', :tag => '0.0.9' do
38       file 'leaflet.polyline.js', 'Polyline.encoded.js'
39     end
40   end
41
42   folder 'ohauth' do
43     from 'git://github.com/osmlab/ohauth.git' do
44       file 'ohauth.js'
45     end
46   end
47
48   folder 'iD' do
49     from 'git://github.com/openstreetmap/iD', :branch => 'release' do
50       folder 'iD/img', 'dist/img'
51       folder 'iD/locales', 'dist/locales'
52       folder 'iD/mapillary-js', 'dist/mapillary-js'
53       folder 'iD/pannellum-streetside', 'dist/pannellum-streetside'
54
55       file 'iD.css.erb', 'dist/iD.css' do |path|
56         rewrite(path) do |content|
57           content.gsub(/url\('?(img\/[^')]+)'?\)/, 'url(<%= asset_path("iD/\1") %>)')
58         end
59       end
60
61       file 'iD.js', 'dist/iD.js'
62     end
63   end
64
65   folder 'polyfill' do
66     file 'es5.js', 'https://polyfill.io/v3/polyfill.js?features=es5&flags=gated,always'
67     file 'es6.js', 'https://polyfill.io/v3/polyfill.js?features=es6&flags=gated,always'
68   end
69
70   folder 'javascripts' do
71     file 'html5shiv.js', 'https://raw.githubusercontent.com/aFarkas/html5shiv/master/src/html5shiv.js'
72   end
73
74   folder 'swfobject' do
75     from 'git://github.com/swfobject/swfobject.git', :tag => '2.2' do
76       file 'expressInstall.swf', 'swfobject/expressInstall.swf'
77       file 'swfobject.js', 'swfobject/src/swfobject.js'
78     end
79   end
80 end