ignition 2.1.0 → 2.1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 962b9d59c35f9196c24d194993e29a60cab42a21
4
- data.tar.gz: 0c8f42c7b49362cab4e86ff580147d4a79944c92
3
+ metadata.gz: 5cd8ae70f5222ca22873308250907dc2dd2ee4d8
4
+ data.tar.gz: a7b750ab56bba607f77bef6c1e4c1bc3a11818b2
5
5
  SHA512:
6
- metadata.gz: 158cdf2639491679c9f1f1ce2a4dfb903db9d5a6137d39679d206133d563c6e840e79c114aed41923d155f8001a838402b77393dbe5c09305fcc5ae8f096d6a5
7
- data.tar.gz: 920759f5bf15ae390b381644963bcba70c59f6aa0b52b841c5f8a5c61b4afc1d2f6e6da02c72530d3a0f448dc6ed9c1f43de9e1b3d3f8a36ad40d52a13381969
6
+ metadata.gz: 2fdda887bc246da73fa92af0fb9745ae127b6c71dd1d8710ba53f3722e6f39e7cb76b6f1792552742141355b34121cf59ac39b049d5b505c49a72965ca76f35c
7
+ data.tar.gz: aa530187ac81fb5c70169eb832eac5d41c60f3f540810de80f88b1703c56ea6088e2cb7b526cd046fc9c548498ad16d484d71cb3e417680daf790c19fcff3802
@@ -0,0 +1,11 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ </head>
6
+ <body>
7
+
8
+ <%= yield %>
9
+
10
+ </body>
11
+ </html>
@@ -0,0 +1 @@
1
+ <p>Hello, World!</p>
@@ -0,0 +1 @@
1
+ <p>This is a nested page.</p>
@@ -0,0 +1 @@
1
+ <p>It is currently <%= @time.to_s %>.</p>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ignition
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Graham Edgecombe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-09 00:00:00.000000000 Z
11
+ date: 2014-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -24,7 +24,7 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '4.0'
27
- description: An engine for Rails 3 applications which allows easy management and caching
27
+ description: An engine for Rails 4 applications which allows easy management and caching
28
28
  of static pages.
29
29
  email: grahamedgecombe@gmail.com
30
30
  executables: []
@@ -40,6 +40,10 @@ files:
40
40
  - test/dummy/app/controllers/application_controller.rb
41
41
  - test/dummy/app/controllers/time_controller.rb
42
42
  - test/dummy/app/helpers/application_helper.rb
43
+ - test/dummy/app/views/layouts/application.html.erb
44
+ - test/dummy/app/views/pages/hello.html.erb
45
+ - test/dummy/app/views/pages/nested/page.html.erb
46
+ - test/dummy/app/views/time/now.html.erb
43
47
  - test/dummy/config.ru
44
48
  - test/dummy/config/application.rb
45
49
  - test/dummy/config/boot.rb
@@ -73,7 +77,7 @@ rubyforge_project:
73
77
  rubygems_version: 2.2.2
74
78
  signing_key:
75
79
  specification_version: 4
76
- summary: Static pages for Rails 3.
80
+ summary: Static pages for Rails 4.
77
81
  test_files:
78
82
  - test/url_helpers_test.rb
79
83
  - test/dummy/config/boot.rb
@@ -87,4 +91,8 @@ test_files:
87
91
  - test/dummy/app/controllers/application_controller.rb
88
92
  - test/test_helper.rb
89
93
  - test/routing_test.rb
94
+ - test/dummy/app/views/layouts/application.html.erb
95
+ - test/dummy/app/views/time/now.html.erb
96
+ - test/dummy/app/views/pages/nested/page.html.erb
97
+ - test/dummy/app/views/pages/hello.html.erb
90
98
  - test/dummy/config.ru