Skip to content

Commit e4f7a48

Browse files
committedFeb 18, 2015
Add dependencies for small map
use middleman and bower, add mapbox and turf
0 parents  commit e4f7a48

File tree

4 files changed

+202
-0
lines changed

4 files changed

+202
-0
lines changed
 

‎.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile ~/.gitignore_global
6+
7+
# Ignore bundler config
8+
/.bundle
9+
10+
# Ignore the build directory
11+
/build
12+
13+
# Ignore cache
14+
/.sass-cache
15+
/.cache
16+
17+
# Ignore .DS_store file
18+
.DS_Store

‎Gemfile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# If you do not have OpenSSL installed, update
2+
# the following line to use "http://" instead
3+
source 'https://rubygems.org'
4+
5+
gem "middleman", "~>3.3.8"
6+
gem "middleman-deploy"
7+
8+
# Live-reloading plugin
9+
gem "middleman-livereload", "~> 3.1.0"
10+
11+
# For faster file watcher updates on Windows:
12+
gem "wdm", "~> 0.1.0", :platforms => [:mswin, :mingw]
13+
14+
# Windows does not come with time zone data
15+
gem "tzinfo-data", platforms: [:mswin, :mingw]
16+
17+
gem 'bourbon'
18+
gem 'neat'

‎Gemfile.lock

+146
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (4.1.9)
5+
i18n (~> 0.6, >= 0.6.9)
6+
json (~> 1.7, >= 1.7.7)
7+
minitest (~> 5.1)
8+
thread_safe (~> 0.1)
9+
tzinfo (~> 1.1)
10+
bourbon (4.2.0)
11+
sass (~> 3.4)
12+
thor
13+
celluloid (0.16.0)
14+
timers (~> 4.0.0)
15+
chunky_png (1.3.4)
16+
coffee-script (2.3.0)
17+
coffee-script-source
18+
execjs
19+
coffee-script-source (1.9.0)
20+
compass (1.0.3)
21+
chunky_png (~> 1.2)
22+
compass-core (~> 1.0.2)
23+
compass-import-once (~> 1.0.5)
24+
rb-fsevent (>= 0.9.3)
25+
rb-inotify (>= 0.9)
26+
sass (>= 3.3.13, < 3.5)
27+
compass-core (1.0.3)
28+
multi_json (~> 1.0)
29+
sass (>= 3.3.0, < 3.5)
30+
compass-import-once (1.0.5)
31+
sass (>= 3.2, < 3.5)
32+
em-websocket (0.5.1)
33+
eventmachine (>= 0.12.9)
34+
http_parser.rb (~> 0.6.0)
35+
erubis (2.7.0)
36+
eventmachine (1.0.7)
37+
execjs (2.3.0)
38+
ffi (1.9.6)
39+
haml (4.0.6)
40+
tilt
41+
hike (1.2.3)
42+
hitimes (1.2.2)
43+
hooks (0.4.0)
44+
uber (~> 0.0.4)
45+
http_parser.rb (0.6.0)
46+
i18n (0.7.0)
47+
json (1.8.2)
48+
kramdown (1.5.0)
49+
listen (2.8.5)
50+
celluloid (>= 0.15.2)
51+
rb-fsevent (>= 0.9.3)
52+
rb-inotify (>= 0.9)
53+
middleman (3.3.9)
54+
coffee-script (~> 2.2)
55+
compass (>= 1.0.0, < 2.0.0)
56+
compass-import-once (= 1.0.5)
57+
execjs (~> 2.0)
58+
haml (>= 4.0.5)
59+
kramdown (~> 1.2)
60+
middleman-core (= 3.3.9)
61+
middleman-sprockets (>= 3.1.2)
62+
sass (>= 3.4.0, < 4.0)
63+
uglifier (~> 2.5)
64+
middleman-core (3.3.9)
65+
activesupport (~> 4.1.0)
66+
bundler (~> 1.1)
67+
erubis
68+
hooks (~> 0.3)
69+
i18n (~> 0.7.0)
70+
listen (>= 2.7.9, < 3.0)
71+
padrino-helpers (~> 0.12.3)
72+
rack (>= 1.4.5, < 2.0)
73+
rack-test (~> 0.6.2)
74+
thor (>= 0.15.2, < 2.0)
75+
tilt (~> 1.4.1, < 2.0)
76+
middleman-deploy (1.0.0)
77+
middleman-core (>= 3.2)
78+
net-sftp
79+
ptools
80+
middleman-livereload (3.1.1)
81+
em-websocket (>= 0.2.0)
82+
middleman-core (>= 3.0.2)
83+
multi_json (~> 1.0)
84+
rack-livereload
85+
middleman-sprockets (3.4.1)
86+
middleman-core (>= 3.3)
87+
sprockets (~> 2.12.1)
88+
sprockets-helpers (~> 1.1.0)
89+
sprockets-sass (~> 1.3.0)
90+
minitest (5.5.1)
91+
multi_json (1.10.1)
92+
neat (1.7.1)
93+
bourbon (>= 4.0)
94+
sass (>= 3.3)
95+
net-sftp (2.1.2)
96+
net-ssh (>= 2.6.5)
97+
net-ssh (2.9.2)
98+
padrino-helpers (0.12.4)
99+
i18n (~> 0.6, >= 0.6.7)
100+
padrino-support (= 0.12.4)
101+
tilt (~> 1.4.1)
102+
padrino-support (0.12.4)
103+
activesupport (>= 3.1)
104+
ptools (1.3.2)
105+
rack (1.6.0)
106+
rack-livereload (0.3.15)
107+
rack
108+
rack-test (0.6.3)
109+
rack (>= 1.0)
110+
rb-fsevent (0.9.4)
111+
rb-inotify (0.9.5)
112+
ffi (>= 0.5.0)
113+
sass (3.4.12)
114+
sprockets (2.12.3)
115+
hike (~> 1.2)
116+
multi_json (~> 1.0)
117+
rack (~> 1.0)
118+
tilt (~> 1.1, != 1.3.0)
119+
sprockets-helpers (1.1.0)
120+
sprockets (~> 2.0)
121+
sprockets-sass (1.3.1)
122+
sprockets (~> 2.0)
123+
tilt (~> 1.1)
124+
thor (0.19.1)
125+
thread_safe (0.3.4)
126+
tilt (1.4.1)
127+
timers (4.0.1)
128+
hitimes
129+
tzinfo (1.2.2)
130+
thread_safe (~> 0.1)
131+
uber (0.0.13)
132+
uglifier (2.7.0)
133+
execjs (>= 0.3.0)
134+
json (>= 1.8.0)
135+
136+
PLATFORMS
137+
ruby
138+
139+
DEPENDENCIES
140+
bourbon
141+
middleman (~> 3.3.8)
142+
middleman-deploy
143+
middleman-livereload (~> 3.1.0)
144+
neat
145+
tzinfo-data
146+
wdm (~> 0.1.0)

‎bower.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "parkhaueser-mobile",
3+
"version": "0.0.0",
4+
"authors": [
5+
"Mila Frerichs <mila.frerichs@gmail.com>"
6+
],
7+
"license": "MIT",
8+
"private": true,
9+
"ignore": [
10+
"**/.*",
11+
"node_modules",
12+
"bower_components",
13+
"test",
14+
"tests"
15+
],
16+
"dependencies" : {
17+
"mapbox.js":"",
18+
"turf":""
19+
}
20+
}

0 commit comments

Comments
 (0)
Please sign in to comment.