headstart 0.5.3 → 0.5.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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.3
1
+ 0.5.4
@@ -9,6 +9,7 @@ class HeadstartGenerator < Rails::Generator::Base
9
9
  m.directory File.join("config", "initializers")
10
10
  m.file "headstart.rb", "config/initializers/headstart.rb"
11
11
  m.file "headstart.yml", "config/headstart.yml"
12
+ m.file "assets.yml", "config/assets.yml"
12
13
 
13
14
  m.directory File.join("app", "views", "layouts")
14
15
  m.directory File.join("app", "views", "sessions")
@@ -65,8 +66,8 @@ class HeadstartGenerator < Rails::Generator::Base
65
66
  m.file "user.rb", user_model
66
67
  end
67
68
 
68
- m.insert_into "config/routes.rb",
69
- "Headstart::Routes.draw(map)"
69
+ m.insert_into "config/routes.rb", "Headstart::Routes.draw(map)"
70
+ m.insert_into "config/routes.rb", "Jammit::Routes.draw(map)"
70
71
 
71
72
  m.directory File.join("test", "factories")
72
73
  m.file "factories.rb", "test/factories/user.rb"
@@ -7,14 +7,19 @@
7
7
  <meta name="keywords" content="<%= yield(:keywords) %>" />
8
8
  <meta name="robots" content="INDEX,FOLLOW" />
9
9
 
10
- <%= stylesheet_link_tag "reset", "layout", "text", "style", "report" %>
10
+ <link href='http://fonts.googleapis.com/css?family=Josefin+Sans+Std+Light' rel='stylesheet' type='text/css'>
11
+ <link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
12
+ <link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:200,300,400,700' rel='stylesheet' type='text/css'>
13
+
14
+ <%= include_stylesheets :workspace, :media => 'all' %>
15
+
11
16
 
12
17
  <%- if request.ssl? -%>
13
18
  <%= javascript_include_tag 'https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js' %>
14
19
  <%- else -%>
15
20
  <%= javascript_include_tag 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js' %>
16
21
  <%- end -%>
17
- <%= javascript_include_tag 'application','modernizr-1.5.min' %>
22
+ <%= include_javascripts :workspace %>
18
23
  </head>
19
24
  <body>
20
25
 
@@ -0,0 +1,14 @@
1
+ embed_assets: off
2
+
3
+ javascripts:
4
+ workspace:
5
+ - public/javascripts/application.js
6
+ - public/javascripts/modernizr-1.5.min.js
7
+
8
+ stylesheets:
9
+ workspace:
10
+ - public/stylesheets/layout.css
11
+ - public/stylesheets/report.css
12
+ - public/stylesheets/reset.css
13
+ - public/stylesheets/style.css
14
+ - public/stylesheets/text.css
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: headstart
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 3
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 3
10
- version: 0.5.3
9
+ - 4
10
+ version: 0.5.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Bran Burridge
@@ -126,6 +126,7 @@ files:
126
126
  - generators/headstart/templates/app/views/sessions/index.html.erb
127
127
  - generators/headstart/templates/application.html.erb
128
128
  - generators/headstart/templates/application_edit.png
129
+ - generators/headstart/templates/assets.yml
129
130
  - generators/headstart/templates/delete.png
130
131
  - generators/headstart/templates/factories.rb
131
132
  - generators/headstart/templates/headstart.rb