rails-boilerplate 0.1.2 → 0.1.3

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/index.html.patch CHANGED
@@ -1,5 +1,5 @@
1
- --- html5-boilerplate/index.html 2011-09-22 15:54:55.849401000 +0200
2
- +++ lib/generators/boilerplate/install/templates/index.html 2011-09-22 16:19:57.965401001 +0200
1
+ --- html5-boilerplate/index.html 2011-09-24 10:26:27.000000000 +0200
2
+ +++ lib/generators/boilerplate/install/templates/index.html 2011-09-24 10:27:21.000000000 +0200
3
3
  @@ -12,7 +12,7 @@
4
4
  More info: h5bp.com/b/378 -->
5
5
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
@@ -9,13 +9,14 @@
9
9
  <meta name="description" content="">
10
10
  <meta name="author" content="">
11
11
 
12
- @@ -21,38 +21,21 @@
12
+ @@ -21,38 +21,22 @@
13
13
 
14
14
  <!-- Place favicon.ico and apple-touch-icon.png in the root directory: mathiasbynens.be/notes/touch-icons -->
15
15
 
16
16
  - <link rel="stylesheet" href="css/style.css">
17
17
  -
18
18
  + <%%= stylesheet_link_tag "application" %>
19
+ + <%%= csrf_meta_tags %>
19
20
  +
20
21
  <!-- More ideas for your <head> here: h5bp.com/d/head-Tips -->
21
22
 
@@ -22,6 +22,7 @@
22
22
  <!-- Place favicon.ico and apple-touch-icon.png in the root directory: mathiasbynens.be/notes/touch-icons -->
23
23
 
24
24
  <%%= stylesheet_link_tag "application" %>
25
+ <%%= csrf_meta_tags %>
25
26
 
26
27
  <!-- More ideas for your <head> here: h5bp.com/d/head-Tips -->
27
28
 
@@ -1,3 +1,3 @@
1
1
  module RailsBoilerplate
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-boilerplate
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 2
10
- version: 0.1.2
9
+ - 3
10
+ version: 0.1.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Christiaan Van den Poel
@@ -15,7 +15,8 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-09-22 00:00:00 Z
18
+ date: 2011-09-24 00:00:00 +02:00
19
+ default_executable:
19
20
  dependencies: []
20
21
 
21
22
  description: HTML5 boilerplate for Rails (>= 3.1)
@@ -93,6 +94,7 @@ files:
93
94
  - vendor/assets/javascripts/modernizr.js
94
95
  - vendor/assets/javascripts/plugins.js
95
96
  - vendor/assets/stylesheets/reset.css
97
+ has_rdoc: true
96
98
  homepage: http://github.com/khelben/rails-boilerplate
97
99
  licenses: []
98
100
 
@@ -122,9 +124,47 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
124
  requirements: []
123
125
 
124
126
  rubyforge_project: rails-boilerplate
125
- rubygems_version: 1.8.10
127
+ rubygems_version: 1.6.2
126
128
  signing_key:
127
129
  specification_version: 3
128
130
  summary: HTML5 boilerplate for Rails (>= 3.1)
129
- test_files: []
130
-
131
+ test_files:
132
+ - test/dummy/Rakefile
133
+ - test/dummy/app/controllers/application_controller.rb
134
+ - test/dummy/app/controllers/home_controller.rb
135
+ - test/dummy/app/helpers/application_helper.rb
136
+ - test/dummy/app/views/home/index.html.erb
137
+ - test/dummy/app/views/layouts/application.html.erb
138
+ - test/dummy/config.ru
139
+ - test/dummy/config/application.rb
140
+ - test/dummy/config/boot.rb
141
+ - test/dummy/config/database.yml
142
+ - test/dummy/config/environment.rb
143
+ - test/dummy/config/environments/development.rb
144
+ - test/dummy/config/environments/production.rb
145
+ - test/dummy/config/environments/test.rb
146
+ - test/dummy/config/initializers/backtrace_silencers.rb
147
+ - test/dummy/config/initializers/inflections.rb
148
+ - test/dummy/config/initializers/mime_types.rb
149
+ - test/dummy/config/initializers/secret_token.rb
150
+ - test/dummy/config/initializers/session_store.rb
151
+ - test/dummy/config/locales/en.yml
152
+ - test/dummy/config/routes.rb
153
+ - test/dummy/public/404.html
154
+ - test/dummy/public/422.html
155
+ - test/dummy/public/500.html
156
+ - test/dummy/public/favicon.ico
157
+ - test/dummy/public/javascripts/application.js
158
+ - test/dummy/public/javascripts/controls.js
159
+ - test/dummy/public/javascripts/dragdrop.js
160
+ - test/dummy/public/javascripts/effects.js
161
+ - test/dummy/public/javascripts/prototype.js
162
+ - test/dummy/public/javascripts/rails.js
163
+ - test/dummy/public/stylesheets/.gitkeep
164
+ - test/dummy/script/rails
165
+ - test/generators/fixtures/application.css
166
+ - test/generators/fixtures/application.js
167
+ - test/generators/generators_test_helper.rb
168
+ - test/generators/install_generator_test.rb
169
+ - test/rails_boilerplate_test.rb
170
+ - test/test_helper.rb