head_start 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/head_start/version.rb +1 -1
- data/templates/boilerplate/manifest.rb +22 -10
- data/templates/boilerplate/{404.html → root_files/404.html} +0 -0
- data/templates/boilerplate/root_files/apple-touch-icon-114x114-precomposed.png +0 -0
- data/templates/boilerplate/root_files/apple-touch-icon-57x57-precomposed.png +0 -0
- data/templates/boilerplate/root_files/apple-touch-icon-72x72-precomposed.png +0 -0
- data/templates/boilerplate/root_files/apple-touch-icon-precomposed.png +0 -0
- data/templates/boilerplate/root_files/apple-touch-icon.png +0 -0
- data/templates/boilerplate/{crossdomain.xml → root_files/crossdomain.xml} +0 -0
- data/templates/boilerplate/root_files/favicon.ico +0 -0
- data/templates/boilerplate/root_files/favicon_alternative.ico +0 -0
- data/templates/boilerplate/{htaccess → root_files/htaccess} +0 -0
- data/templates/boilerplate/{humans.txt → root_files/humans.txt} +0 -0
- data/templates/boilerplate/{robots.txt → root_files/robots.txt} +0 -0
- metadata +16 -15
- data/lib/assets/images/apple-touch-icon-114x114-precomposed.png +0 -0
- data/lib/assets/images/apple-touch-icon-57x57-precomposed.png +0 -0
- data/lib/assets/images/apple-touch-icon-72x72-precomposed.png +0 -0
- data/lib/assets/images/apple-touch-icon-precomposed.png +0 -0
- data/lib/assets/images/apple-touch-icon.png +0 -0
- data/lib/assets/images/favicon.ico +0 -0
data/lib/head_start/version.rb
CHANGED
@@ -12,11 +12,17 @@ if Compass.configuration.project_type == :rails
|
|
12
12
|
|
13
13
|
file 'javascripts/boilerplate.js', :to => 'app/assets/javascripts/layouts/boilerplate.js'
|
14
14
|
|
15
|
-
html '404.html'
|
16
|
-
html 'crossdomain.xml'
|
17
|
-
html 'htaccess', :to => '.htaccess'
|
18
|
-
html 'humans.txt'
|
19
|
-
html 'robots.txt'
|
15
|
+
html 'root_files/404.html', :to => "404.html"
|
16
|
+
html 'root_files/crossdomain.xml', :to => "crossdomain.xml"
|
17
|
+
html 'root_files/htaccess', :to => '.htaccess'
|
18
|
+
html 'root_files/humans.txt', :to => "humans.txt"
|
19
|
+
html 'root_files/robots.txt', :to => "robots.txt"
|
20
|
+
html 'root_files/apple-touch-icon-114x114-precomposed.png', :to => "apple-touch-icon-114x114-precomposed.png"
|
21
|
+
html 'root_files/apple-touch-icon-57x57-precomposed.png', :to => "apple-touch-icon-57x57-precomposed.png"
|
22
|
+
html 'root_files/apple-touch-icon-72x72-precomposed.png', :to => "apple-touch-icon-72x72-precomposed.png"
|
23
|
+
html 'root_files/apple-touch-icon-precomposed.png', :to => "apple-touch-icon-precomposed.png"
|
24
|
+
html 'root_files/apple-touch-icon.png', :to => "apple-touch-icon.png"
|
25
|
+
html 'root_files/favicon.ico', :to => "favicon.ico"
|
20
26
|
|
21
27
|
file 'layouts/boilerplate.html.haml', :to => 'app/views/layouts/boilerplate.html.haml'
|
22
28
|
file 'layouts/_head.html.haml', :to => 'app/views/layouts/boilerplate/_head.html.haml'
|
@@ -48,11 +54,17 @@ if Compass.configuration.project_type == :stand_alone
|
|
48
54
|
|
49
55
|
file 'javascripts/stand_alone/boilerplate.js', :to => 'static/js/boilerplate.js'
|
50
56
|
|
51
|
-
file '404.html', :to => "static/404.html"
|
52
|
-
file 'crossdomain.xml', :to => "static/crossdomain.xml"
|
53
|
-
file 'htaccess', :to => "static/.htaccess"
|
54
|
-
file 'humans.txt', :to => "static/humans.txt"
|
55
|
-
file 'robots.txt', :to => "static/robots.txt"
|
57
|
+
file 'root_files/404.html', :to => "static/404.html"
|
58
|
+
file 'root_files/crossdomain.xml', :to => "static/crossdomain.xml"
|
59
|
+
file 'root_files/htaccess', :to => "static/.htaccess"
|
60
|
+
file 'root_files/humans.txt', :to => "static/humans.txt"
|
61
|
+
file 'root_files/robots.txt', :to => "static/robots.txt"
|
62
|
+
file 'root_files/apple-touch-icon-114x114-precomposed.png', :to => "static/apple-touch-icon-114x114-precomposed.png"
|
63
|
+
file 'root_files/apple-touch-icon-57x57-precomposed.png', :to => "static/apple-touch-icon-57x57-precomposed.png"
|
64
|
+
file 'root_files/apple-touch-icon-72x72-precomposed.png', :to => "static/apple-touch-icon-72x72-precomposed.png"
|
65
|
+
file 'root_files/apple-touch-icon-precomposed.png', :to => "static/apple-touch-icon-precomposed.png"
|
66
|
+
file 'root_files/apple-touch-icon.png', :to => "static/apple-touch-icon.png"
|
67
|
+
file 'root_files/favicon.ico', :to => "static/favicon.ico"
|
56
68
|
|
57
69
|
end
|
58
70
|
|
File without changes
|
Binary file
|
Binary file
|
File without changes
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: head_start
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-10-
|
12
|
+
date: 2011-10-28 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: compass
|
16
|
-
requirement: &
|
16
|
+
requirement: &70180604799280 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70180604799280
|
25
25
|
description: This gem extends Compass with Foxsoft's own SCSS libraries and third
|
26
26
|
party Javascript libraries - full description pending
|
27
27
|
email:
|
@@ -38,12 +38,6 @@ files:
|
|
38
38
|
- Rakefile
|
39
39
|
- bin/head_start
|
40
40
|
- head_start.gemspec
|
41
|
-
- lib/assets/images/apple-touch-icon-114x114-precomposed.png
|
42
|
-
- lib/assets/images/apple-touch-icon-57x57-precomposed.png
|
43
|
-
- lib/assets/images/apple-touch-icon-72x72-precomposed.png
|
44
|
-
- lib/assets/images/apple-touch-icon-precomposed.png
|
45
|
-
- lib/assets/images/apple-touch-icon.png
|
46
|
-
- lib/assets/images/favicon.ico
|
47
41
|
- lib/assets/images/icons/buttons/geomicons/Layer_13.png
|
48
42
|
- lib/assets/images/icons/buttons/geomicons/Layer_14.png
|
49
43
|
- lib/assets/images/icons/buttons/geomicons/Layer_15.png
|
@@ -239,11 +233,7 @@ files:
|
|
239
233
|
- stylesheets/scorpion/_kathleene.scss
|
240
234
|
- stylesheets/scorpion/_web_app_theme.scss
|
241
235
|
- templates/boilerplate/.gitignore
|
242
|
-
- templates/boilerplate/404.html
|
243
|
-
- templates/boilerplate/crossdomain.xml
|
244
236
|
- templates/boilerplate/frank_setup.rb
|
245
|
-
- templates/boilerplate/htaccess
|
246
|
-
- templates/boilerplate/humans.txt
|
247
237
|
- templates/boilerplate/javascripts/boilerplate.js
|
248
238
|
- templates/boilerplate/javascripts/stand_alone/application.js
|
249
239
|
- templates/boilerplate/layouts/_flashes.html.haml
|
@@ -257,7 +247,18 @@ files:
|
|
257
247
|
- templates/boilerplate/layouts/stand_alone/_javascripts.haml
|
258
248
|
- templates/boilerplate/layouts/stand_alone/boilerplate.haml
|
259
249
|
- templates/boilerplate/manifest.rb
|
260
|
-
- templates/boilerplate/
|
250
|
+
- templates/boilerplate/root_files/404.html
|
251
|
+
- templates/boilerplate/root_files/apple-touch-icon-114x114-precomposed.png
|
252
|
+
- templates/boilerplate/root_files/apple-touch-icon-57x57-precomposed.png
|
253
|
+
- templates/boilerplate/root_files/apple-touch-icon-72x72-precomposed.png
|
254
|
+
- templates/boilerplate/root_files/apple-touch-icon-precomposed.png
|
255
|
+
- templates/boilerplate/root_files/apple-touch-icon.png
|
256
|
+
- templates/boilerplate/root_files/crossdomain.xml
|
257
|
+
- templates/boilerplate/root_files/favicon.ico
|
258
|
+
- templates/boilerplate/root_files/favicon_alternative.ico
|
259
|
+
- templates/boilerplate/root_files/htaccess
|
260
|
+
- templates/boilerplate/root_files/humans.txt
|
261
|
+
- templates/boilerplate/root_files/robots.txt
|
261
262
|
- templates/boilerplate/stylesheets/_custom_styles.scss
|
262
263
|
- templates/boilerplate/stylesheets/_helpers.scss
|
263
264
|
- templates/boilerplate/stylesheets/_media.scss
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|