phenomenal_rails 1.2.2 → 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,6 +6,7 @@ class Phenomenal::Context
6
6
  def is_persistent
7
7
  @persistent = true
8
8
  activate
9
+ nil
9
10
  end
10
11
 
11
12
  def to_path
@@ -5,5 +5,6 @@ class Phenomenal::Feature
5
5
 
6
6
  def activation_condition(&block)
7
7
  @@middleware.add_condition(self,&block)
8
+ nil
8
9
  end
9
10
  end
@@ -1,3 +1,3 @@
1
1
  module PhenomenalRails
2
- VERSION = "1.2.2"
2
+ VERSION = "1.2.3"
3
3
  end
metadata CHANGED
@@ -1,182 +1,186 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: phenomenal_rails
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.3
4
5
  prerelease:
5
- version: 1.2.2
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Loic Vigneron - Thibault Poncelet
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2012-05-31 00:00:00 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
12
+ date: 2012-06-01 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
16
15
  name: rails
17
- prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
19
17
  none: false
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
23
21
  version: 3.1.0
24
22
  type: :runtime
25
- version_requirements: *id001
26
- - !ruby/object:Gem::Dependency
27
- name: phenomenal
28
23
  prerelease: false
29
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 3.1.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: phenomenal
32
+ requirement: !ruby/object:Gem::Requirement
30
33
  none: false
31
- requirements:
34
+ requirements:
32
35
  - - ~>
33
- - !ruby/object:Gem::Version
36
+ - !ruby/object:Gem::Version
34
37
  version: 1.2.0
35
38
  type: :runtime
36
- version_requirements: *id002
37
- - !ruby/object:Gem::Dependency
38
- name: rspec-rails
39
39
  prerelease: false
40
- requirement: &id003 !ruby/object:Gem::Requirement
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 1.2.0
46
+ - !ruby/object:Gem::Dependency
47
+ name: rspec-rails
48
+ requirement: !ruby/object:Gem::Requirement
41
49
  none: false
42
- requirements:
50
+ requirements:
43
51
  - - ~>
44
- - !ruby/object:Gem::Version
45
- version: "2.5"
52
+ - !ruby/object:Gem::Version
53
+ version: '2.5'
46
54
  type: :development
47
- version_requirements: *id003
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '2.5'
48
62
  description: Rails integration of phenomenal
49
- email: thibault.poncelet@student.uclouvain.be - loic.vigneron@student.uclouvain.be
63
+ email: team@phenomenal-gem.com
50
64
  executables: []
51
-
52
65
  extensions: []
53
-
54
66
  extra_rdoc_files: []
55
-
56
- files:
57
- - app/views/layouts/phenomenal_rails/application.html.erb
58
- - app/controllers/phenomenal_rails/application_controller.rb
59
- - app/assets/stylesheets/phenomenal_rails/application.css
67
+ files:
60
68
  - app/assets/javascripts/phenomenal_rails/application.js
69
+ - app/assets/stylesheets/phenomenal_rails/application.css
70
+ - app/controllers/phenomenal_rails/application_controller.rb
71
+ - app/views/layouts/phenomenal_rails/application.html.erb
61
72
  - config/routes.rb
62
- - lib/phenomenal_rails.rb
73
+ - lib/phenomenal_rails/context.rb
74
+ - lib/phenomenal_rails/engine.rb
63
75
  - lib/phenomenal_rails/feature.rb
76
+ - lib/phenomenal_rails/loader.rb
64
77
  - lib/phenomenal_rails/middleware.rb
65
78
  - lib/phenomenal_rails/path_set.rb
66
- - lib/phenomenal_rails/version.rb
67
- - lib/phenomenal_rails/context.rb
68
- - lib/phenomenal_rails/loader.rb
69
79
  - lib/phenomenal_rails/resolver.rb
70
- - lib/phenomenal_rails/engine.rb
80
+ - lib/phenomenal_rails/version.rb
81
+ - lib/phenomenal_rails.rb
71
82
  - lib/tasks/phenomenal_rails_tasks.rake
72
83
  - LICENSE
73
84
  - Rakefile
74
85
  - README.rdoc
75
- - spec/spec_helper.rb
76
- - spec/dummy/log/development.log
77
- - spec/dummy/config.ru
78
- - spec/dummy/db/development.sqlite3
79
- - spec/dummy/script/rails
80
- - spec/dummy/app/views/shared/_partial1.html.haml
81
- - spec/dummy/app/views/shared/_partial4.html.haml
82
- - spec/dummy/app/views/pages/home.html.haml
83
- - spec/dummy/app/views/layouts/application.html.erb
84
86
  - spec/dummy/app/assets/javascripts/application.js
85
87
  - spec/dummy/app/helpers/application_helper.rb
88
+ - spec/dummy/app/views/layouts/application.html.erb
89
+ - spec/dummy/app/views/pages/home.html.haml
90
+ - spec/dummy/app/views/shared/_partial1.html.haml
91
+ - spec/dummy/app/views/shared/_partial4.html.haml
92
+ - spec/dummy/app_phenomenal/persistent_feature/controllers/application_controller.rb
93
+ - spec/dummy/app_phenomenal/persistent_feature/models/model.rb
94
+ - spec/dummy/app_phenomenal/persistent_feature/persistent_feature.rb
95
+ - spec/dummy/app_phenomenal/persistent_feature/test_context/test_context.rb
96
+ - spec/dummy/app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml
97
+ - spec/dummy/app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml
98
+ - spec/dummy/app_phenomenal/persistent_feature/views/shared/_partial3.html.haml
99
+ - spec/dummy/app_phenomenal/test_feature/test_feature.rb
100
+ - spec/dummy/app_phenomenal/test_feature/views/shared/_partial4.html.haml
101
+ - spec/dummy/config/application.rb
102
+ - spec/dummy/config/boot.rb
86
103
  - spec/dummy/config/database.yml
87
- - spec/dummy/config/initializers/secret_token.rb
88
- - spec/dummy/config/initializers/mime_types.rb
104
+ - spec/dummy/config/environment.rb
105
+ - spec/dummy/config/environments/development.rb
106
+ - spec/dummy/config/environments/production.rb
107
+ - spec/dummy/config/environments/test.rb
89
108
  - spec/dummy/config/initializers/backtrace_silencers.rb
90
- - spec/dummy/config/initializers/session_store.rb
91
109
  - spec/dummy/config/initializers/inflections.rb
110
+ - spec/dummy/config/initializers/mime_types.rb
111
+ - spec/dummy/config/initializers/secret_token.rb
112
+ - spec/dummy/config/initializers/session_store.rb
92
113
  - spec/dummy/config/initializers/wrap_parameters.rb
93
- - spec/dummy/config/environments/test.rb
94
- - spec/dummy/config/environments/development.rb
95
- - spec/dummy/config/environments/production.rb
96
- - spec/dummy/config/environment.rb
97
- - spec/dummy/config/routes.rb
98
- - spec/dummy/config/boot.rb
99
114
  - spec/dummy/config/locales/en.yml
100
- - spec/dummy/config/application.rb
101
- - spec/dummy/app_phenomenal/persistent_feature/views/shared/_partial3.html.haml
102
- - spec/dummy/app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml
103
- - spec/dummy/app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml
104
- - spec/dummy/app_phenomenal/persistent_feature/test_context/test_context.rb
105
- - spec/dummy/app_phenomenal/persistent_feature/controllers/application_controller.rb
106
- - spec/dummy/app_phenomenal/persistent_feature/models/model.rb
107
- - spec/dummy/app_phenomenal/persistent_feature/persistent_feature.rb
108
- - spec/dummy/app_phenomenal/test_feature/views/shared/_partial4.html.haml
109
- - spec/dummy/app_phenomenal/test_feature/test_feature.rb
110
- - spec/dummy/public/favicon.ico
111
- - spec/dummy/public/500.html
112
- - spec/dummy/public/422.html
115
+ - spec/dummy/config/routes.rb
116
+ - spec/dummy/config.ru
113
117
  - spec/dummy/public/404.html
118
+ - spec/dummy/public/422.html
119
+ - spec/dummy/public/500.html
120
+ - spec/dummy/public/favicon.ico
114
121
  - spec/dummy/Rakefile
122
+ - spec/dummy/script/rails
123
+ - spec/spec_helper.rb
115
124
  homepage: http://www.phenomenal-gem.com
116
125
  licenses: []
117
-
118
126
  post_install_message:
119
127
  rdoc_options: []
120
-
121
- require_paths:
128
+ require_paths:
122
129
  - lib
123
- required_ruby_version: !ruby/object:Gem::Requirement
130
+ required_ruby_version: !ruby/object:Gem::Requirement
124
131
  none: false
125
- requirements:
126
- - - ">="
127
- - !ruby/object:Gem::Version
128
- version: "0"
129
- required_rubygems_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ! '>='
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ required_rubygems_version: !ruby/object:Gem::Requirement
130
137
  none: false
131
- requirements:
132
- - - ">="
133
- - !ruby/object:Gem::Version
134
- version: "0"
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
135
142
  requirements: []
136
-
137
143
  rubyforge_project:
138
- rubygems_version: 1.8.17
144
+ rubygems_version: 1.8.22
139
145
  signing_key:
140
146
  specification_version: 3
141
147
  summary: Rails glue for phenomenal
142
- test_files:
143
- - spec/spec_helper.rb
144
- - spec/dummy/log/development.log
145
- - spec/dummy/config.ru
146
- - spec/dummy/db/development.sqlite3
147
- - spec/dummy/script/rails
148
- - spec/dummy/app/views/shared/_partial1.html.haml
149
- - spec/dummy/app/views/shared/_partial4.html.haml
150
- - spec/dummy/app/views/pages/home.html.haml
151
- - spec/dummy/app/views/layouts/application.html.erb
148
+ test_files:
152
149
  - spec/dummy/app/assets/javascripts/application.js
153
150
  - spec/dummy/app/helpers/application_helper.rb
151
+ - spec/dummy/app/views/layouts/application.html.erb
152
+ - spec/dummy/app/views/pages/home.html.haml
153
+ - spec/dummy/app/views/shared/_partial1.html.haml
154
+ - spec/dummy/app/views/shared/_partial4.html.haml
155
+ - spec/dummy/app_phenomenal/persistent_feature/controllers/application_controller.rb
156
+ - spec/dummy/app_phenomenal/persistent_feature/models/model.rb
157
+ - spec/dummy/app_phenomenal/persistent_feature/persistent_feature.rb
158
+ - spec/dummy/app_phenomenal/persistent_feature/test_context/test_context.rb
159
+ - spec/dummy/app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml
160
+ - spec/dummy/app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml
161
+ - spec/dummy/app_phenomenal/persistent_feature/views/shared/_partial3.html.haml
162
+ - spec/dummy/app_phenomenal/test_feature/test_feature.rb
163
+ - spec/dummy/app_phenomenal/test_feature/views/shared/_partial4.html.haml
164
+ - spec/dummy/config/application.rb
165
+ - spec/dummy/config/boot.rb
154
166
  - spec/dummy/config/database.yml
155
- - spec/dummy/config/initializers/secret_token.rb
156
- - spec/dummy/config/initializers/mime_types.rb
167
+ - spec/dummy/config/environment.rb
168
+ - spec/dummy/config/environments/development.rb
169
+ - spec/dummy/config/environments/production.rb
170
+ - spec/dummy/config/environments/test.rb
157
171
  - spec/dummy/config/initializers/backtrace_silencers.rb
158
- - spec/dummy/config/initializers/session_store.rb
159
172
  - spec/dummy/config/initializers/inflections.rb
173
+ - spec/dummy/config/initializers/mime_types.rb
174
+ - spec/dummy/config/initializers/secret_token.rb
175
+ - spec/dummy/config/initializers/session_store.rb
160
176
  - spec/dummy/config/initializers/wrap_parameters.rb
161
- - spec/dummy/config/environments/test.rb
162
- - spec/dummy/config/environments/development.rb
163
- - spec/dummy/config/environments/production.rb
164
- - spec/dummy/config/environment.rb
165
- - spec/dummy/config/routes.rb
166
- - spec/dummy/config/boot.rb
167
177
  - spec/dummy/config/locales/en.yml
168
- - spec/dummy/config/application.rb
169
- - spec/dummy/app_phenomenal/persistent_feature/views/shared/_partial3.html.haml
170
- - spec/dummy/app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml
171
- - spec/dummy/app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml
172
- - spec/dummy/app_phenomenal/persistent_feature/test_context/test_context.rb
173
- - spec/dummy/app_phenomenal/persistent_feature/controllers/application_controller.rb
174
- - spec/dummy/app_phenomenal/persistent_feature/models/model.rb
175
- - spec/dummy/app_phenomenal/persistent_feature/persistent_feature.rb
176
- - spec/dummy/app_phenomenal/test_feature/views/shared/_partial4.html.haml
177
- - spec/dummy/app_phenomenal/test_feature/test_feature.rb
178
- - spec/dummy/public/favicon.ico
179
- - spec/dummy/public/500.html
180
- - spec/dummy/public/422.html
178
+ - spec/dummy/config/routes.rb
179
+ - spec/dummy/config.ru
181
180
  - spec/dummy/public/404.html
181
+ - spec/dummy/public/422.html
182
+ - spec/dummy/public/500.html
183
+ - spec/dummy/public/favicon.ico
182
184
  - spec/dummy/Rakefile
185
+ - spec/dummy/script/rails
186
+ - spec/spec_helper.rb
File without changes
@@ -1,233 +0,0 @@
1
-
2
-
3
- Started GET "/" for 127.0.0.1 at 2012-05-20 14:39:15 +0200
4
-
5
- SQLite3::CantOpenException (unable to open database file):
6
- activerecord (3.2.3) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `initialize'
7
- activerecord (3.2.3) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `new'
8
- activerecord (3.2.3) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `sqlite3_connection'
9
- activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:303:in `new_connection'
10
- activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:313:in `checkout_new_connection'
11
- activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:237:in `block (2 levels) in checkout'
12
- activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:232:in `loop'
13
- activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:232:in `block in checkout'
14
- /usr/lib/ruby/1.9.2/monitor.rb:201:in `mon_synchronize'
15
- activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:229:in `checkout'
16
- activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:95:in `connection'
17
- activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:398:in `retrieve_connection'
18
- activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_specification.rb:168:in `retrieve_connection'
19
- activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_specification.rb:142:in `connection'
20
- activerecord (3.2.3) lib/active_record/query_cache.rb:67:in `rescue in call'
21
- activerecord (3.2.3) lib/active_record/query_cache.rb:61:in `call'
22
- activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
23
- actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
24
- activesupport (3.2.3) lib/active_support/callbacks.rb:416:in `_run__1345679088280189959__call__4300169613754290206__callbacks'
25
- activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
26
- activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
27
- activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
28
- actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
29
- actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
30
- actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
31
- actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
32
- actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
33
- railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
34
- railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
35
- actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
37
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
38
- activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
39
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
40
- actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
41
- railties (3.2.3) lib/rails/engine.rb:479:in `call'
42
- railties (3.2.3) lib/rails/application.rb:220:in `call'
43
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
44
- railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
45
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
46
- /usr/lib/ruby/1.9.2/webrick/httpserver.rb:111:in `service'
47
- /usr/lib/ruby/1.9.2/webrick/httpserver.rb:70:in `run'
48
- /usr/lib/ruby/1.9.2/webrick/server.rb:183:in `block in start_thread'
49
-
50
-
51
- Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
52
- Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.0ms)
53
- Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.5ms)
54
-
55
-
56
- Started GET "/" for 127.0.0.1 at 2012-05-20 14:40:18 +0200
57
- Processing by ApplicationController#home as HTML
58
- Rendered shared/_partial1.html.haml (0.7ms)
59
- Rendered text template (0.0ms)
60
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.6ms)
61
- Rendered shared/_partial4.html.haml (0.5ms)
62
- Rendered pages/home.html.haml within layouts/application (85.3ms)
63
- Completed 200 OK in 168ms (Views: 168.0ms | ActiveRecord: 0.0ms)
64
-
65
-
66
- Started GET "/?activated=true" for 127.0.0.1 at 2012-05-20 14:41:05 +0200
67
- Processing by ApplicationController#home as HTML
68
- Parameters: {"activated"=>"true"}
69
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.7ms)
70
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.8ms)
71
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (2.2ms)
72
- Rendered app_phenomenal/test_feature/views/shared/_partial4.html.haml (0.5ms)
73
- Rendered pages/home.html.haml within layouts/application (36.4ms)
74
- Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.0ms)
75
-
76
-
77
- Started GET "/" for 127.0.0.1 at 2012-05-20 14:41:06 +0200
78
- Processing by ApplicationController#home as HTML
79
- Rendered shared/_partial1.html.haml (0.1ms)
80
- Rendered text template (0.0ms)
81
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.6ms)
82
- Rendered shared/_partial4.html.haml (0.1ms)
83
- Rendered pages/home.html.haml within layouts/application (4.6ms)
84
- Completed 200 OK in 6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
85
-
86
-
87
- Started GET "/?activated=true" for 127.0.0.1 at 2012-05-20 14:41:07 +0200
88
- Processing by ApplicationController#home as HTML
89
- Parameters: {"activated"=>"true"}
90
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (1.4ms)
91
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.5ms)
92
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.5ms)
93
- Rendered app_phenomenal/test_feature/views/shared/_partial4.html.haml (0.5ms)
94
- Rendered pages/home.html.haml within layouts/application (7.5ms)
95
- Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
96
-
97
-
98
- Started GET "/?activated=true" for 127.0.0.1 at 2012-05-20 14:41:08 +0200
99
- Processing by ApplicationController#home as HTML
100
- Parameters: {"activated"=>"true"}
101
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.6ms)
102
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.5ms)
103
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.5ms)
104
- Rendered app_phenomenal/test_feature/views/shared/_partial4.html.haml (0.5ms)
105
- Rendered pages/home.html.haml within layouts/application (5.6ms)
106
- Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
107
-
108
-
109
- Started GET "/" for 127.0.0.1 at 2012-05-20 14:41:08 +0200
110
- Processing by ApplicationController#home as HTML
111
- Rendered shared/_partial1.html.haml (0.1ms)
112
- Rendered text template (0.0ms)
113
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.6ms)
114
- Rendered shared/_partial4.html.haml (0.1ms)
115
- Rendered pages/home.html.haml within layouts/application (4.6ms)
116
- Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
117
-
118
-
119
- Started GET "/?activated=true" for 127.0.0.1 at 2012-05-20 14:41:08 +0200
120
- Processing by ApplicationController#home as HTML
121
- Parameters: {"activated"=>"true"}
122
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.6ms)
123
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.5ms)
124
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (2.1ms)
125
- Rendered app_phenomenal/test_feature/views/shared/_partial4.html.haml (0.5ms)
126
- Rendered pages/home.html.haml within layouts/application (7.2ms)
127
- Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
128
-
129
-
130
- Started GET "/" for 127.0.0.1 at 2012-05-20 16:20:24 +0200
131
- Processing by ApplicationController#home as HTML
132
- Rendered shared/_partial1.html.haml (0.6ms)
133
- Rendered text template (0.0ms)
134
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.6ms)
135
- Rendered shared/_partial4.html.haml (0.5ms)
136
- Rendered pages/home.html.haml within layouts/application (20.1ms)
137
- Completed 200 OK in 43ms (Views: 43.0ms | ActiveRecord: 0.0ms)
138
-
139
-
140
- Started GET "/?activated=true" for 127.0.0.1 at 2012-05-20 16:20:26 +0200
141
- Processing by ApplicationController#home as HTML
142
- Parameters: {"activated"=>"true"}
143
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.6ms)
144
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.5ms)
145
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.5ms)
146
- Rendered app_phenomenal/test_feature/views/shared/_partial4.html.haml (0.4ms)
147
- Rendered pages/home.html.haml within layouts/application (5.2ms)
148
- Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
149
-
150
-
151
- Started GET "/" for 127.0.0.1 at 2012-05-20 16:20:26 +0200
152
- Processing by ApplicationController#home as HTML
153
- Rendered shared/_partial1.html.haml (0.1ms)
154
- Rendered text template (0.0ms)
155
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (47.0ms)
156
- Rendered shared/_partial4.html.haml (0.1ms)
157
- Rendered pages/home.html.haml within layouts/application (52.2ms)
158
- Completed 200 OK in 55ms (Views: 54.5ms | ActiveRecord: 0.0ms)
159
-
160
-
161
- Started GET "/?activated=true" for 127.0.0.1 at 2012-05-20 16:20:27 +0200
162
- Processing by ApplicationController#home as HTML
163
- Parameters: {"activated"=>"true"}
164
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.6ms)
165
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.5ms)
166
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.5ms)
167
- Rendered app_phenomenal/test_feature/views/shared/_partial4.html.haml (0.5ms)
168
- Rendered pages/home.html.haml within layouts/application (5.6ms)
169
- Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
170
-
171
-
172
- Started GET "/" for 127.0.0.1 at 2012-05-20 16:20:27 +0200
173
- Processing by ApplicationController#home as HTML
174
- Rendered shared/_partial1.html.haml (0.1ms)
175
- Rendered text template (0.0ms)
176
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (1.3ms)
177
- Rendered shared/_partial4.html.haml (0.1ms)
178
- Rendered pages/home.html.haml within layouts/application (6.7ms)
179
- Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
180
-
181
-
182
- Started GET "/" for 127.0.0.1 at 2012-05-31 21:37:15 +0200
183
- Connecting to database specified by database.yml
184
- Processing by ApplicationController#home as HTML
185
- Rendered shared/_partial1.html.haml (0.8ms)
186
- Rendered text template (0.0ms)
187
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.6ms)
188
- Rendered shared/_partial4.html.haml (0.5ms)
189
- Rendered pages/home.html.haml within layouts/application (85.3ms)
190
- Completed 200 OK in 167ms (Views: 166.6ms | ActiveRecord: 0.0ms)
191
-
192
-
193
- Started GET "/?activated=true" for 127.0.0.1 at 2012-05-31 21:37:17 +0200
194
- Processing by ApplicationController#home as HTML
195
- Parameters: {"activated"=>"true"}
196
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.7ms)
197
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.5ms)
198
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.5ms)
199
- Rendered app_phenomenal/test_feature/views/shared/_partial4.html.haml (0.5ms)
200
- Rendered pages/home.html.haml within layouts/application (23.2ms)
201
- Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.0ms)
202
-
203
-
204
- Started GET "/?activated=true" for 127.0.0.1 at 2012-05-31 21:37:18 +0200
205
- Processing by ApplicationController#home as HTML
206
- Parameters: {"activated"=>"true"}
207
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.6ms)
208
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.5ms)
209
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.5ms)
210
- Rendered app_phenomenal/test_feature/views/shared/_partial4.html.haml (0.5ms)
211
- Rendered pages/home.html.haml within layouts/application (5.6ms)
212
- Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
213
-
214
-
215
- Started GET "/" for 127.0.0.1 at 2012-05-31 21:37:19 +0200
216
- Processing by ApplicationController#home as HTML
217
- Rendered shared/_partial1.html.haml (0.1ms)
218
- Rendered text template (0.0ms)
219
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.6ms)
220
- Rendered shared/_partial4.html.haml (0.1ms)
221
- Rendered pages/home.html.haml within layouts/application (4.5ms)
222
- Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
223
-
224
-
225
- Started GET "/?activated=true" for 127.0.0.1 at 2012-05-31 21:37:20 +0200
226
- Processing by ApplicationController#home as HTML
227
- Parameters: {"activated"=>"true"}
228
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.6ms)
229
- Rendered app_phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.5ms)
230
- Rendered app_phenomenal/persistent_feature/views/shared/_partial3.html.haml (0.5ms)
231
- Rendered app_phenomenal/test_feature/views/shared/_partial4.html.haml (0.5ms)
232
- Rendered pages/home.html.haml within layouts/application (5.4ms)
233
- Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)