page_engine 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +14 -0
- data/app/assets/stylesheets/{jquery-ui/smoothness/jquery-ui-1.8.15.custom.css → jquery-ui.css} +17 -17
- data/app/assets/stylesheets/page_engine.css +1 -0
- data/lib/generators/page_engine/page_engine_generator.rb +1 -0
- data/lib/page_engine.rb +1 -1
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +11 -0
- data/spec/dummy/app/assets/stylesheets/application.css +8 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/welcome_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.haml +25 -0
- data/spec/dummy/app/views/welcome/index.html.haml +5 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +42 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +27 -0
- data/spec/dummy/config/environments/production.rb +51 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +12 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +58 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +78 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +215 -0
- data/spec/dummy/log/test.log +141 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/tmp/cache/assets/C50/9E0/sprockets%2F5273207c05e438fab77180339ef07418 +0 -0
- data/spec/dummy/tmp/cache/assets/CE7/5E0/sprockets%2F520141de9bf7351de829ee484b761d37 +0 -0
- data/spec/dummy/tmp/cache/assets/CF3/CF0/sprockets%2Fb9232c5dfbe22949e8559fc03898242e +0 -0
- data/spec/dummy/tmp/cache/assets/D10/500/sprockets%2F14244cebaa065f6e0c461f88521d89e7 +0 -0
- data/spec/dummy/tmp/cache/assets/D1B/490/sprockets%2Fe37c84afab109b736f593d271f94916c +0 -0
- data/spec/dummy/tmp/cache/assets/D22/630/sprockets%2F96268b95a26ee16a7b2d169e78af38c4 +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/D35/4A0/sprockets%2F1b20d80f1d472f213983c30fc7a8d8ad +0 -0
- data/spec/dummy/tmp/cache/assets/D40/A70/sprockets%2Fffa6c67811911b1a6624281ce7e7dea6 +0 -0
- data/spec/dummy/tmp/cache/assets/D4D/6A0/sprockets%2F34ff66b81d54df8b855b5ad0609d384f +0 -0
- data/spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
- data/spec/dummy/tmp/cache/assets/D58/450/sprockets%2F9bdf9046afa29f99222ffadf85572089 +0 -0
- data/spec/dummy/tmp/cache/assets/D59/BE0/sprockets%2Fb60619702caaaa748c6404a3a05fa7fc +0 -0
- data/spec/dummy/tmp/cache/assets/D69/7E0/sprockets%2F95dc7c01f25afc8afc40e4353395cb15 +0 -0
- data/spec/dummy/tmp/cache/assets/D70/280/sprockets%2F99a543e2b6be1d37c3ccc8a90261f87a +0 -0
- data/spec/dummy/tmp/cache/assets/D76/270/sprockets%2F7fa38bbc51591249e64f86df7da17d0a +0 -0
- data/spec/dummy/tmp/cache/assets/D7A/710/sprockets%2F082db977dca9043b3cf64dd7b9a1799b +0 -0
- data/spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
- data/spec/dummy/tmp/cache/assets/D96/510/sprockets%2F400b6fa7eb374fe27379be14bfb5ad13 +0 -0
- data/spec/dummy/tmp/cache/assets/DAF/F20/sprockets%2Ffefb6dc410d3c50be89565fb3e8e3788 +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/E59/310/sprockets%2Fbc56e556d3e7aae7c8bf341d3dcea2bd +0 -0
- data/spec/dummy/tmp/cache/assets/E70/2B0/sprockets%2F7eedcfada8bf8bff28c96d9ea93521d3 +0 -0
- data/spec/models/page_spec.rb +48 -0
- data/spec/spec_helper.rb +15 -0
- metadata +139 -15
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/404.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
23
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/422.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/500.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>We're sorry, but something went wrong.</h1>
|
23
|
+
<p>We've been notified about this issue and we'll take a look at it shortly.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
File without changes
|
@@ -0,0 +1,6 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
3
|
+
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
6
|
+
require 'rails/commands'
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Page do
|
4
|
+
|
5
|
+
before(:each) do
|
6
|
+
@attr = {
|
7
|
+
:title => "A topic"
|
8
|
+
}
|
9
|
+
@page = Page.create!(@attr)
|
10
|
+
end
|
11
|
+
|
12
|
+
describe 'validations' do
|
13
|
+
it 'should be valid with valid attributes' do
|
14
|
+
@page.should be_valid
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'requires a title' do
|
18
|
+
@page.title = nil
|
19
|
+
@page.should_not be_valid
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'requires a unique permalink' do
|
23
|
+
page = Page.new(@attr)
|
24
|
+
page.should_not be_valid
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'returns correct no_publish_window_set?' do
|
29
|
+
@page.no_publish_window_set?.should == true
|
30
|
+
|
31
|
+
@page.publish_from = 1.day.ago
|
32
|
+
@page.publish_to = 1.day.from_now
|
33
|
+
|
34
|
+
@page.no_publish_window_set?.should == false
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'returns correct controller_action' do
|
38
|
+
@page.controller_action.should == nil
|
39
|
+
@page.controller = 'welcome'
|
40
|
+
@page.action = 'index'
|
41
|
+
|
42
|
+
@page.controller_action.should == "welcome|index"
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'should return the permalink when as param' do
|
46
|
+
@page.to_param.should == 'a-topic'
|
47
|
+
end
|
48
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# Configure Rails Envinronment
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
3
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
4
|
+
|
5
|
+
require 'rspec/rails'
|
6
|
+
|
7
|
+
ENGINE_RAILS_ROOT=File.join(File.dirname(__FILE__), '../')
|
8
|
+
|
9
|
+
# Requires supporting ruby files with custom matchers and macros, etc,
|
10
|
+
# in spec/support/ and its subdirectories.
|
11
|
+
Dir[File.join(ENGINE_RAILS_ROOT, "spec/support/**/*.rb")].each {|f| require f }
|
12
|
+
|
13
|
+
RSpec.configure do |config|
|
14
|
+
config.use_transactional_fixtures = true
|
15
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: page_engine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -14,7 +14,7 @@ default_executable:
|
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: simple_form
|
17
|
-
requirement: &
|
17
|
+
requirement: &74318790 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ! '>='
|
@@ -22,10 +22,10 @@ dependencies:
|
|
22
22
|
version: '0'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *74318790
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: RedCloth
|
28
|
-
requirement: &
|
28
|
+
requirement: &74318310 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ! '>='
|
@@ -33,10 +33,10 @@ dependencies:
|
|
33
33
|
version: '0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *74318310
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: haml-rails
|
39
|
-
requirement: &
|
39
|
+
requirement: &74317930 !ruby/object:Gem::Requirement
|
40
40
|
none: false
|
41
41
|
requirements:
|
42
42
|
- - ! '>='
|
@@ -44,10 +44,10 @@ dependencies:
|
|
44
44
|
version: '0'
|
45
45
|
type: :runtime
|
46
46
|
prerelease: false
|
47
|
-
version_requirements: *
|
47
|
+
version_requirements: *74317930
|
48
48
|
- !ruby/object:Gem::Dependency
|
49
49
|
name: awesome_nested_set
|
50
|
-
requirement: &
|
50
|
+
requirement: &74317620 !ruby/object:Gem::Requirement
|
51
51
|
none: false
|
52
52
|
requirements:
|
53
53
|
- - ! '>='
|
@@ -55,10 +55,10 @@ dependencies:
|
|
55
55
|
version: '0'
|
56
56
|
type: :runtime
|
57
57
|
prerelease: false
|
58
|
-
version_requirements: *
|
58
|
+
version_requirements: *74317620
|
59
59
|
- !ruby/object:Gem::Dependency
|
60
60
|
name: BlueCloth
|
61
|
-
requirement: &
|
61
|
+
requirement: &74317260 !ruby/object:Gem::Requirement
|
62
62
|
none: false
|
63
63
|
requirements:
|
64
64
|
- - ! '>='
|
@@ -66,10 +66,10 @@ dependencies:
|
|
66
66
|
version: '0'
|
67
67
|
type: :runtime
|
68
68
|
prerelease: false
|
69
|
-
version_requirements: *
|
69
|
+
version_requirements: *74317260
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: rspec-rails
|
72
|
-
requirement: &
|
72
|
+
requirement: &74316780 !ruby/object:Gem::Requirement
|
73
73
|
none: false
|
74
74
|
requirements:
|
75
75
|
- - ! '>='
|
@@ -77,7 +77,7 @@ dependencies:
|
|
77
77
|
version: '0'
|
78
78
|
type: :development
|
79
79
|
prerelease: false
|
80
|
-
version_requirements: *
|
80
|
+
version_requirements: *74316780
|
81
81
|
description: Extends a rails application with pages, allowing the generation of navigation,
|
82
82
|
breadcrumbs etc. Content can be currentl written in markdown, textile or plain html.
|
83
83
|
email: mark@fatdude.net
|
@@ -132,7 +132,6 @@ files:
|
|
132
132
|
- app/assets/images/page_engine/bullet_add.png
|
133
133
|
- app/assets/images/page_engine/bullet_go.png
|
134
134
|
- app/assets/images/page_engine/page_red.png
|
135
|
-
- app/assets/stylesheets/jquery-ui/smoothness/jquery-ui-1.8.15.custom.css
|
136
135
|
- app/assets/stylesheets/page_engine.css
|
137
136
|
- app/assets/stylesheets/markitup/sets/css/style.css
|
138
137
|
- app/assets/stylesheets/markitup/sets/html/style.css
|
@@ -141,6 +140,7 @@ files:
|
|
141
140
|
- app/assets/stylesheets/markitup/sets/textile/style.css
|
142
141
|
- app/assets/stylesheets/markitup/skins/simple/style.css
|
143
142
|
- app/assets/stylesheets/markitup/skins/markitup/style.css
|
143
|
+
- app/assets/stylesheets/jquery-ui.css
|
144
144
|
- app/assets/javascripts/markitup/sets/css/set.js
|
145
145
|
- app/assets/javascripts/markitup/sets/html/set.js
|
146
146
|
- app/assets/javascripts/markitup/sets/markdown/set.js
|
@@ -164,6 +164,65 @@ files:
|
|
164
164
|
- MIT-LICENSE
|
165
165
|
- Rakefile
|
166
166
|
- README.markdown
|
167
|
+
- spec/dummy/db/test.sqlite3
|
168
|
+
- spec/dummy/db/schema.rb
|
169
|
+
- spec/dummy/db/development.sqlite3
|
170
|
+
- spec/dummy/log/development.log
|
171
|
+
- spec/dummy/log/test.log
|
172
|
+
- spec/dummy/config.ru
|
173
|
+
- spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
174
|
+
- spec/dummy/tmp/cache/assets/D7A/710/sprockets%2F082db977dca9043b3cf64dd7b9a1799b
|
175
|
+
- spec/dummy/tmp/cache/assets/D58/450/sprockets%2F9bdf9046afa29f99222ffadf85572089
|
176
|
+
- spec/dummy/tmp/cache/assets/D69/7E0/sprockets%2F95dc7c01f25afc8afc40e4353395cb15
|
177
|
+
- spec/dummy/tmp/cache/assets/D22/630/sprockets%2F96268b95a26ee16a7b2d169e78af38c4
|
178
|
+
- spec/dummy/tmp/cache/assets/C50/9E0/sprockets%2F5273207c05e438fab77180339ef07418
|
179
|
+
- spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
180
|
+
- spec/dummy/tmp/cache/assets/D4D/6A0/sprockets%2F34ff66b81d54df8b855b5ad0609d384f
|
181
|
+
- spec/dummy/tmp/cache/assets/D1B/490/sprockets%2Fe37c84afab109b736f593d271f94916c
|
182
|
+
- spec/dummy/tmp/cache/assets/E59/310/sprockets%2Fbc56e556d3e7aae7c8bf341d3dcea2bd
|
183
|
+
- spec/dummy/tmp/cache/assets/CE7/5E0/sprockets%2F520141de9bf7351de829ee484b761d37
|
184
|
+
- spec/dummy/tmp/cache/assets/D40/A70/sprockets%2Fffa6c67811911b1a6624281ce7e7dea6
|
185
|
+
- spec/dummy/tmp/cache/assets/CF3/CF0/sprockets%2Fb9232c5dfbe22949e8559fc03898242e
|
186
|
+
- spec/dummy/tmp/cache/assets/E70/2B0/sprockets%2F7eedcfada8bf8bff28c96d9ea93521d3
|
187
|
+
- spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
|
188
|
+
- spec/dummy/tmp/cache/assets/D10/500/sprockets%2F14244cebaa065f6e0c461f88521d89e7
|
189
|
+
- spec/dummy/tmp/cache/assets/D96/510/sprockets%2F400b6fa7eb374fe27379be14bfb5ad13
|
190
|
+
- spec/dummy/tmp/cache/assets/DAF/F20/sprockets%2Ffefb6dc410d3c50be89565fb3e8e3788
|
191
|
+
- spec/dummy/tmp/cache/assets/D70/280/sprockets%2F99a543e2b6be1d37c3ccc8a90261f87a
|
192
|
+
- spec/dummy/tmp/cache/assets/D35/4A0/sprockets%2F1b20d80f1d472f213983c30fc7a8d8ad
|
193
|
+
- spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
|
194
|
+
- spec/dummy/tmp/cache/assets/D59/BE0/sprockets%2Fb60619702caaaa748c6404a3a05fa7fc
|
195
|
+
- spec/dummy/tmp/cache/assets/D76/270/sprockets%2F7fa38bbc51591249e64f86df7da17d0a
|
196
|
+
- spec/dummy/Rakefile
|
197
|
+
- spec/dummy/config/environment.rb
|
198
|
+
- spec/dummy/config/boot.rb
|
199
|
+
- spec/dummy/config/application.rb
|
200
|
+
- spec/dummy/config/routes.rb
|
201
|
+
- spec/dummy/config/initializers/session_store.rb
|
202
|
+
- spec/dummy/config/initializers/inflections.rb
|
203
|
+
- spec/dummy/config/initializers/mime_types.rb
|
204
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
205
|
+
- spec/dummy/config/initializers/secret_token.rb
|
206
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
207
|
+
- spec/dummy/config/locales/en.yml
|
208
|
+
- spec/dummy/config/environments/development.rb
|
209
|
+
- spec/dummy/config/environments/test.rb
|
210
|
+
- spec/dummy/config/environments/production.rb
|
211
|
+
- spec/dummy/config/database.yml
|
212
|
+
- spec/dummy/script/rails
|
213
|
+
- spec/dummy/app/helpers/application_helper.rb
|
214
|
+
- spec/dummy/app/controllers/welcome_controller.rb
|
215
|
+
- spec/dummy/app/controllers/application_controller.rb
|
216
|
+
- spec/dummy/app/views/welcome/index.html.haml
|
217
|
+
- spec/dummy/app/views/layouts/application.html.haml
|
218
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
219
|
+
- spec/dummy/app/assets/javascripts/application.js
|
220
|
+
- spec/dummy/public/404.html
|
221
|
+
- spec/dummy/public/favicon.ico
|
222
|
+
- spec/dummy/public/422.html
|
223
|
+
- spec/dummy/public/500.html
|
224
|
+
- spec/models/page_spec.rb
|
225
|
+
- spec/spec_helper.rb
|
167
226
|
has_rdoc: true
|
168
227
|
homepage: http://www.fatdude.net
|
169
228
|
licenses: []
|
@@ -177,16 +236,81 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
177
236
|
- - ! '>='
|
178
237
|
- !ruby/object:Gem::Version
|
179
238
|
version: '0'
|
239
|
+
segments:
|
240
|
+
- 0
|
241
|
+
hash: -518266595
|
180
242
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
181
243
|
none: false
|
182
244
|
requirements:
|
183
245
|
- - ! '>='
|
184
246
|
- !ruby/object:Gem::Version
|
185
247
|
version: '0'
|
248
|
+
segments:
|
249
|
+
- 0
|
250
|
+
hash: -518266595
|
186
251
|
requirements: []
|
187
252
|
rubyforge_project:
|
188
253
|
rubygems_version: 1.6.2
|
189
254
|
signing_key:
|
190
255
|
specification_version: 3
|
191
256
|
summary: Extends a rails application with pages
|
192
|
-
test_files:
|
257
|
+
test_files:
|
258
|
+
- spec/dummy/db/test.sqlite3
|
259
|
+
- spec/dummy/db/schema.rb
|
260
|
+
- spec/dummy/db/development.sqlite3
|
261
|
+
- spec/dummy/log/development.log
|
262
|
+
- spec/dummy/log/test.log
|
263
|
+
- spec/dummy/config.ru
|
264
|
+
- spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
265
|
+
- spec/dummy/tmp/cache/assets/D7A/710/sprockets%2F082db977dca9043b3cf64dd7b9a1799b
|
266
|
+
- spec/dummy/tmp/cache/assets/D58/450/sprockets%2F9bdf9046afa29f99222ffadf85572089
|
267
|
+
- spec/dummy/tmp/cache/assets/D69/7E0/sprockets%2F95dc7c01f25afc8afc40e4353395cb15
|
268
|
+
- spec/dummy/tmp/cache/assets/D22/630/sprockets%2F96268b95a26ee16a7b2d169e78af38c4
|
269
|
+
- spec/dummy/tmp/cache/assets/C50/9E0/sprockets%2F5273207c05e438fab77180339ef07418
|
270
|
+
- spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
271
|
+
- spec/dummy/tmp/cache/assets/D4D/6A0/sprockets%2F34ff66b81d54df8b855b5ad0609d384f
|
272
|
+
- spec/dummy/tmp/cache/assets/D1B/490/sprockets%2Fe37c84afab109b736f593d271f94916c
|
273
|
+
- spec/dummy/tmp/cache/assets/E59/310/sprockets%2Fbc56e556d3e7aae7c8bf341d3dcea2bd
|
274
|
+
- spec/dummy/tmp/cache/assets/CE7/5E0/sprockets%2F520141de9bf7351de829ee484b761d37
|
275
|
+
- spec/dummy/tmp/cache/assets/D40/A70/sprockets%2Fffa6c67811911b1a6624281ce7e7dea6
|
276
|
+
- spec/dummy/tmp/cache/assets/CF3/CF0/sprockets%2Fb9232c5dfbe22949e8559fc03898242e
|
277
|
+
- spec/dummy/tmp/cache/assets/E70/2B0/sprockets%2F7eedcfada8bf8bff28c96d9ea93521d3
|
278
|
+
- spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
|
279
|
+
- spec/dummy/tmp/cache/assets/D10/500/sprockets%2F14244cebaa065f6e0c461f88521d89e7
|
280
|
+
- spec/dummy/tmp/cache/assets/D96/510/sprockets%2F400b6fa7eb374fe27379be14bfb5ad13
|
281
|
+
- spec/dummy/tmp/cache/assets/DAF/F20/sprockets%2Ffefb6dc410d3c50be89565fb3e8e3788
|
282
|
+
- spec/dummy/tmp/cache/assets/D70/280/sprockets%2F99a543e2b6be1d37c3ccc8a90261f87a
|
283
|
+
- spec/dummy/tmp/cache/assets/D35/4A0/sprockets%2F1b20d80f1d472f213983c30fc7a8d8ad
|
284
|
+
- spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
|
285
|
+
- spec/dummy/tmp/cache/assets/D59/BE0/sprockets%2Fb60619702caaaa748c6404a3a05fa7fc
|
286
|
+
- spec/dummy/tmp/cache/assets/D76/270/sprockets%2F7fa38bbc51591249e64f86df7da17d0a
|
287
|
+
- spec/dummy/Rakefile
|
288
|
+
- spec/dummy/config/environment.rb
|
289
|
+
- spec/dummy/config/boot.rb
|
290
|
+
- spec/dummy/config/application.rb
|
291
|
+
- spec/dummy/config/routes.rb
|
292
|
+
- spec/dummy/config/initializers/session_store.rb
|
293
|
+
- spec/dummy/config/initializers/inflections.rb
|
294
|
+
- spec/dummy/config/initializers/mime_types.rb
|
295
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
296
|
+
- spec/dummy/config/initializers/secret_token.rb
|
297
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
298
|
+
- spec/dummy/config/locales/en.yml
|
299
|
+
- spec/dummy/config/environments/development.rb
|
300
|
+
- spec/dummy/config/environments/test.rb
|
301
|
+
- spec/dummy/config/environments/production.rb
|
302
|
+
- spec/dummy/config/database.yml
|
303
|
+
- spec/dummy/script/rails
|
304
|
+
- spec/dummy/app/helpers/application_helper.rb
|
305
|
+
- spec/dummy/app/controllers/welcome_controller.rb
|
306
|
+
- spec/dummy/app/controllers/application_controller.rb
|
307
|
+
- spec/dummy/app/views/welcome/index.html.haml
|
308
|
+
- spec/dummy/app/views/layouts/application.html.haml
|
309
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
310
|
+
- spec/dummy/app/assets/javascripts/application.js
|
311
|
+
- spec/dummy/public/404.html
|
312
|
+
- spec/dummy/public/favicon.ico
|
313
|
+
- spec/dummy/public/422.html
|
314
|
+
- spec/dummy/public/500.html
|
315
|
+
- spec/models/page_spec.rb
|
316
|
+
- spec/spec_helper.rb
|