nesta-rails 0.0.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.
- data/MIT-LICENSE +20 -0
- data/README.md +48 -0
- data/Rakefile +38 -0
- data/lib/generators/nesta_generator.rb +143 -0
- data/lib/nesta-rails.rb +4 -0
- data/lib/nesta-rails/action_dispatch_patch.rb +13 -0
- data/lib/nesta-rails/version.rb +3 -0
- data/lib/tasks/nesta-rails_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/nesta_controller.rb +28 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/nesta_helper.rb +19 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/nesta/atom.haml +28 -0
- data/test/dummy/app/views/nesta/page.html.haml +1 -0
- data/test/dummy/app/views/nesta/sitemap.haml +11 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/nesta.rb +23 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +65 -0
- data/test/dummy/content/pages/page.mdown +5 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +46 -0
- data/test/dummy/log/test.log +290 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/CB8/150/sprockets%2F54e70388adcf4fb25740386a034685e7 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/D2C/B60/sprockets%2F5e6fb5a3a51f9123aed6ba502366a243 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D33/7D0/sprockets%2F393634e12da60d1edd73c961eb04a38b +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/DBF/3F0/sprockets%2F4724c5e5e48ef3fbdcf27e9fe9b97096 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/capybara/capybara-201207041532021383280359.html +18 -0
- data/test/nesta-rails_test.rb +15 -0
- data/test/test_helper.rb +22 -0
- metadata +222 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
ENV['NESTA_CONTENT'] = File.join(Rails.root, 'content')
|
2
|
+
ENV['NESTA_TITLE'] = 'Configure your title'
|
3
|
+
ENV['NESTA_SUBTITLE'] = 'Configure your subtitle'
|
4
|
+
|
5
|
+
# ENV['NESTA_AUTHOR__NAME'] = ''
|
6
|
+
# ENV['NESTA_AUTHOR__URI'] = ''
|
7
|
+
# ENV['NESTA_AUTHOR__EMAIL'] = ''
|
8
|
+
#
|
9
|
+
# ENV['NESTA_DISQUS_SHORT_NAME'] = ''
|
10
|
+
# ENV['NESTA_GOOGLE_ANALYTICS_CODE'] = ''
|
11
|
+
|
12
|
+
require 'sass/util'
|
13
|
+
|
14
|
+
require 'nesta/env'
|
15
|
+
Nesta::Env.root = Rails.root
|
16
|
+
|
17
|
+
require 'nesta/app'
|
18
|
+
|
19
|
+
Rails.application.config.middleware.insert_after(
|
20
|
+
Rack::Lock,
|
21
|
+
Rack::Static, :urls => ['/attachments'], :root => File.expand_path('content'))
|
22
|
+
|
23
|
+
Haml::Template.options[:format] = :xhtml
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = '0d146980e4b50ca852a0517e5f47b7f75c86cb6effae36202cf7f7f9928582da851845addcc08a2fa905ce5f6fe60f2fd45a64ee8d4616aec6ee6d366b082a7c'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
|
3
|
+
match 'articles.xml' => 'nesta#feed'
|
4
|
+
|
5
|
+
match 'sitemap.xml' => 'nesta#sitemap'
|
6
|
+
|
7
|
+
mount NestaController.action(:show), :at => '/'
|
8
|
+
|
9
|
+
# The priority is based upon order of creation:
|
10
|
+
# first created -> highest priority.
|
11
|
+
|
12
|
+
# Sample of regular route:
|
13
|
+
# match 'products/:id' => 'catalog#view'
|
14
|
+
# Keep in mind you can assign values other than :controller and :action
|
15
|
+
|
16
|
+
# Sample of named route:
|
17
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
18
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
19
|
+
|
20
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
21
|
+
# resources :products
|
22
|
+
|
23
|
+
# Sample resource route with options:
|
24
|
+
# resources :products do
|
25
|
+
# member do
|
26
|
+
# get 'short'
|
27
|
+
# post 'toggle'
|
28
|
+
# end
|
29
|
+
#
|
30
|
+
# collection do
|
31
|
+
# get 'sold'
|
32
|
+
# end
|
33
|
+
# end
|
34
|
+
|
35
|
+
# Sample resource route with sub-resources:
|
36
|
+
# resources :products do
|
37
|
+
# resources :comments, :sales
|
38
|
+
# resource :seller
|
39
|
+
# end
|
40
|
+
|
41
|
+
# Sample resource route with more complex sub-resources
|
42
|
+
# resources :products do
|
43
|
+
# resources :comments
|
44
|
+
# resources :sales do
|
45
|
+
# get 'recent', :on => :collection
|
46
|
+
# end
|
47
|
+
# end
|
48
|
+
|
49
|
+
# Sample resource route within a namespace:
|
50
|
+
# namespace :admin do
|
51
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
52
|
+
# # (app/controllers/admin/products_controller.rb)
|
53
|
+
# resources :products
|
54
|
+
# end
|
55
|
+
|
56
|
+
# You can have the root of your site routed with "root"
|
57
|
+
# just remember to delete public/index.html.
|
58
|
+
# root :to => 'welcome#index'
|
59
|
+
|
60
|
+
# See how all your routes lay out with "rake routes"
|
61
|
+
|
62
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
63
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
64
|
+
# match ':controller(/:action(/:id))(.:format)'
|
65
|
+
end
|
Binary file
|
File without changes
|
@@ -0,0 +1,46 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
4
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
5
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
7
|
+
|
8
|
+
|
9
|
+
Started HEAD "/" for 127.0.0.1 at 2012-07-04 16:14:44 +0100
|
10
|
+
Connecting to database specified by database.yml
|
11
|
+
Processing by NestaController#show as */*
|
12
|
+
Completed 500 Internal Server Error in 1ms
|
13
|
+
|
14
|
+
ActionController::RoutingError (Not Found):
|
15
|
+
app/controllers/nesta_controller.rb:9:in `show'
|
16
|
+
|
17
|
+
|
18
|
+
Rendered /Users/graham/.rbenv/versions/1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
19
|
+
|
20
|
+
|
21
|
+
Started HEAD "/page" for 127.0.0.1 at 2012-07-04 16:14:49 +0100
|
22
|
+
Processing by NestaController#show as */*
|
23
|
+
Rendered nesta/page.html.haml within layouts/application (6.2ms)
|
24
|
+
Compiled application.css (1ms) (pid 30675)
|
25
|
+
Compiled jquery.js (2ms) (pid 30675)
|
26
|
+
Compiled jquery_ujs.js (0ms) (pid 30675)
|
27
|
+
Compiled application.js (54ms) (pid 30675)
|
28
|
+
Completed 200 OK in 111ms (Views: 109.9ms | ActiveRecord: 0.0ms)
|
29
|
+
|
30
|
+
|
31
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 16:14:55 +0100
|
32
|
+
Processing by NestaController#show as */*
|
33
|
+
Rendered nesta/page.html.haml within layouts/application (0.4ms)
|
34
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
35
|
+
|
36
|
+
|
37
|
+
Started GET "/articles.xml" for 127.0.0.1 at 2012-07-04 16:14:59 +0100
|
38
|
+
Processing by NestaController#feed as */*
|
39
|
+
Rendered nesta/atom.haml (5.9ms)
|
40
|
+
Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
41
|
+
|
42
|
+
|
43
|
+
Started GET "/sitemap.xml" for 127.0.0.1 at 2012-07-04 16:15:20 +0100
|
44
|
+
Processing by NestaController#sitemap as */*
|
45
|
+
Rendered nesta/sitemap.haml (2.3ms)
|
46
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
@@ -0,0 +1,290 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
3
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4
|
+
Connecting to database specified by database.yml
|
5
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
6
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7
|
+
Connecting to database specified by database.yml
|
8
|
+
Connecting to database specified by database.yml
|
9
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
10
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11
|
+
Connecting to database specified by database.yml
|
12
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
13
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14
|
+
Connecting to database specified by database.yml
|
15
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
16
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17
|
+
Connecting to database specified by database.yml
|
18
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
19
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
20
|
+
Connecting to database specified by database.yml
|
21
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
22
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23
|
+
Connecting to database specified by database.yml
|
24
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
25
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26
|
+
Connecting to database specified by database.yml
|
27
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
28
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29
|
+
Connecting to database specified by database.yml
|
30
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
31
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
32
|
+
Connecting to database specified by database.yml
|
33
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
34
|
+
|
35
|
+
|
36
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-02 22:20:08 +0100
|
37
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
38
|
+
Connecting to database specified by database.yml
|
39
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
40
|
+
|
41
|
+
|
42
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 14:54:55 +0100
|
43
|
+
Processing by NestaController#show as HTML
|
44
|
+
Completed 500 Internal Server Error in 1ms
|
45
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
46
|
+
Connecting to database specified by database.yml
|
47
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
48
|
+
|
49
|
+
|
50
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 14:56:30 +0100
|
51
|
+
Processing by NestaController#show as HTML
|
52
|
+
Completed 500 Internal Server Error in 15249ms
|
53
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
54
|
+
Connecting to database specified by database.yml
|
55
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
56
|
+
|
57
|
+
|
58
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:04:41 +0100
|
59
|
+
Processing by NestaController#show as HTML
|
60
|
+
Completed 500 Internal Server Error in 2074ms
|
61
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
62
|
+
Connecting to database specified by database.yml
|
63
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
64
|
+
|
65
|
+
|
66
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:05:29 +0100
|
67
|
+
Processing by NestaController#show as HTML
|
68
|
+
Completed 500 Internal Server Error in 8ms
|
69
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
70
|
+
Connecting to database specified by database.yml
|
71
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
72
|
+
|
73
|
+
|
74
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:09:39 +0100
|
75
|
+
Processing by NestaController#show as HTML
|
76
|
+
Rendered nesta/page.html.haml within layouts/application (1.4ms)
|
77
|
+
Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
|
78
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
79
|
+
Connecting to database specified by database.yml
|
80
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
81
|
+
|
82
|
+
|
83
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:10:35 +0100
|
84
|
+
Processing by NestaController#show as HTML
|
85
|
+
Rendered nesta/page.html.haml within layouts/application (1.4ms)
|
86
|
+
Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
|
87
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
88
|
+
Connecting to database specified by database.yml
|
89
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
90
|
+
|
91
|
+
|
92
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:31:49 +0100
|
93
|
+
Processing by NestaController#show as HTML
|
94
|
+
Rendered nesta/page.html.haml within layouts/application (1.5ms)
|
95
|
+
Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
|
96
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
97
|
+
Connecting to database specified by database.yml
|
98
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
99
|
+
|
100
|
+
|
101
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:32:02 +0100
|
102
|
+
Processing by NestaController#show as HTML
|
103
|
+
Rendered nesta/page.html.haml within layouts/application (1.4ms)
|
104
|
+
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
105
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
106
|
+
Connecting to database specified by database.yml
|
107
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
108
|
+
|
109
|
+
|
110
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:32:49 +0100
|
111
|
+
Processing by NestaController#show as HTML
|
112
|
+
Rendered nesta/page.html.haml within layouts/application (1.4ms)
|
113
|
+
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
|
114
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
115
|
+
Connecting to database specified by database.yml
|
116
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
117
|
+
|
118
|
+
|
119
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:33:04 +0100
|
120
|
+
Processing by NestaController#show as HTML
|
121
|
+
Rendered nesta/page.html.haml within layouts/application (1.5ms)
|
122
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
123
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
124
|
+
Connecting to database specified by database.yml
|
125
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
126
|
+
|
127
|
+
|
128
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:34:32 +0100
|
129
|
+
Processing by NestaController#show as HTML
|
130
|
+
Rendered nesta/page.html.haml within layouts/application (4.1ms)
|
131
|
+
Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms)
|
132
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
133
|
+
Connecting to database specified by database.yml
|
134
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
135
|
+
|
136
|
+
|
137
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:34:48 +0100
|
138
|
+
Processing by NestaController#show as HTML
|
139
|
+
Rendered nesta/page.html.haml within layouts/application (3.1ms)
|
140
|
+
Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
|
141
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
142
|
+
Connecting to database specified by database.yml
|
143
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
144
|
+
|
145
|
+
|
146
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:35:12 +0100
|
147
|
+
Processing by NestaController#show as HTML
|
148
|
+
Rendered nesta/page.html.haml within layouts/application (3.8ms)
|
149
|
+
Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
|
150
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
151
|
+
Connecting to database specified by database.yml
|
152
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
153
|
+
|
154
|
+
|
155
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:36:50 +0100
|
156
|
+
Processing by NestaController#show as HTML
|
157
|
+
Rendered nesta/page.html.haml within layouts/application (3.1ms)
|
158
|
+
Completed 200 OK in 40ms (Views: 39.8ms | ActiveRecord: 0.0ms)
|
159
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
160
|
+
Connecting to database specified by database.yml
|
161
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
162
|
+
|
163
|
+
|
164
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:38:04 +0100
|
165
|
+
Processing by NestaController#show as HTML
|
166
|
+
Rendered nesta/page.html.haml within layouts/application (4.1ms)
|
167
|
+
Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
168
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
169
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
170
|
+
|
171
|
+
|
172
|
+
Started GET "/articles.xml" for 127.0.0.1 at 2012-07-04 15:38:04 +0100
|
173
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
174
|
+
Connecting to database specified by database.yml
|
175
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
176
|
+
|
177
|
+
|
178
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:38:57 +0100
|
179
|
+
Processing by NestaController#show as HTML
|
180
|
+
Rendered nesta/page.html.haml within layouts/application (3.8ms)
|
181
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
182
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
183
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
184
|
+
|
185
|
+
|
186
|
+
Started GET "/articles.xml" for 127.0.0.1 at 2012-07-04 15:38:57 +0100
|
187
|
+
Processing by NestaController#feed as HTML
|
188
|
+
Completed 500 Internal Server Error in 2ms
|
189
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
190
|
+
Connecting to database specified by database.yml
|
191
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
192
|
+
|
193
|
+
|
194
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:40:23 +0100
|
195
|
+
Processing by NestaController#show as HTML
|
196
|
+
Rendered nesta/page.html.haml within layouts/application (3.1ms)
|
197
|
+
Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
|
198
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
199
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
200
|
+
|
201
|
+
|
202
|
+
Started GET "/articles.xml" for 127.0.0.1 at 2012-07-04 15:40:23 +0100
|
203
|
+
Processing by NestaController#feed as HTML
|
204
|
+
Completed 500 Internal Server Error in 1ms
|
205
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
206
|
+
Connecting to database specified by database.yml
|
207
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
208
|
+
|
209
|
+
|
210
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 15:42:25 +0100
|
211
|
+
Processing by NestaController#show as HTML
|
212
|
+
Rendered nesta/page.html.haml within layouts/application (4.0ms)
|
213
|
+
Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
|
214
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
215
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
216
|
+
|
217
|
+
|
218
|
+
Started GET "/articles.xml" for 127.0.0.1 at 2012-07-04 15:42:25 +0100
|
219
|
+
Processing by NestaController#feed as HTML
|
220
|
+
Completed 500 Internal Server Error in 2ms
|
221
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
222
|
+
Connecting to database specified by database.yml
|
223
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
224
|
+
|
225
|
+
|
226
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 16:04:47 +0100
|
227
|
+
Processing by NestaController#show as HTML
|
228
|
+
Rendered nesta/page.html.haml within layouts/application (4.3ms)
|
229
|
+
Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
|
230
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
231
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
232
|
+
|
233
|
+
|
234
|
+
Started GET "/articles.xml" for 127.0.0.1 at 2012-07-04 16:04:47 +0100
|
235
|
+
Processing by NestaController#feed as HTML
|
236
|
+
Rendered nesta/atom.haml (3.4ms)
|
237
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
238
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
239
|
+
Connecting to database specified by database.yml
|
240
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
241
|
+
|
242
|
+
|
243
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 16:05:21 +0100
|
244
|
+
Processing by NestaController#show as HTML
|
245
|
+
Rendered nesta/page.html.haml within layouts/application (3.9ms)
|
246
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
247
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
248
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
249
|
+
|
250
|
+
|
251
|
+
Started GET "/articles.xml" for 127.0.0.1 at 2012-07-04 16:05:21 +0100
|
252
|
+
Processing by NestaController#feed as HTML
|
253
|
+
Rendered nesta/atom.haml (3.6ms)
|
254
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
255
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
256
|
+
Connecting to database specified by database.yml
|
257
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
258
|
+
|
259
|
+
|
260
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 16:11:47 +0100
|
261
|
+
Processing by NestaController#show as HTML
|
262
|
+
Rendered nesta/page.html.haml within layouts/application (3.8ms)
|
263
|
+
Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms)
|
264
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
265
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
266
|
+
|
267
|
+
|
268
|
+
Started GET "/articles.xml" for 127.0.0.1 at 2012-07-04 16:11:47 +0100
|
269
|
+
Processing by NestaController#feed as HTML
|
270
|
+
Rendered nesta/atom.haml (4.4ms)
|
271
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
272
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
273
|
+
Connecting to database specified by database.yml
|
274
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
275
|
+
|
276
|
+
|
277
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 16:40:10 +0100
|
278
|
+
Processing by NestaController#show as HTML
|
279
|
+
Rendered nesta/page.html.haml within layouts/application (3.8ms)
|
280
|
+
Completed 200 OK in 42ms (Views: 41.1ms | ActiveRecord: 0.0ms)
|
281
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
282
|
+
Connecting to database specified by database.yml
|
283
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
284
|
+
|
285
|
+
|
286
|
+
Started GET "/page" for 127.0.0.1 at 2012-07-04 16:41:57 +0100
|
287
|
+
Processing by NestaController#show as HTML
|
288
|
+
Rendered nesta/page.html.haml within layouts/application (4.0ms)
|
289
|
+
Completed 200 OK in 43ms (Views: 41.9ms | ActiveRecord: 0.0ms)
|
290
|
+
[1m[35m (0.1ms)[0m rollback transaction
|