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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5cd8ae70f5222ca22873308250907dc2dd2ee4d8
|
|
4
|
+
data.tar.gz: a7b750ab56bba607f77bef6c1e4c1bc3a11818b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2fdda887bc246da73fa92af0fb9745ae127b6c71dd1d8710ba53f3722e6f39e7cb76b6f1792552742141355b34121cf59ac39b049d5b505c49a72965ca76f35c
|
|
7
|
+
data.tar.gz: aa530187ac81fb5c70169eb832eac5d41c60f3f540810de80f88b1703c56ea6088e2cb7b526cd046fc9c548498ad16d484d71cb3e417680daf790c19fcff3802
|
|
@@ -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.
|
|
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-
|
|
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
|
|
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
|
|
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
|