suri_modal 0.0.5 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (26) hide show
  1. data/lib/assets/javascripts/model_view.js +7 -3
  2. data/lib/assets/javascripts/option_list.js +1 -1
  3. data/lib/assets/stylesheets/my_style.css.scss +52 -0
  4. data/lib/suri_modal/version.rb +1 -1
  5. data/test/dummy/app/assets/javascripts/welcome.js.coffee +254 -0
  6. data/test/dummy/app/views/welcomes/index.html.erb +14 -12
  7. data/test/dummy/log/development.log +2012 -0
  8. data/test/dummy/tmp/cache/assets/CB4/900/sprockets%2F160fc8b874f250696651b28530dc4db8 +0 -0
  9. data/test/dummy/tmp/cache/assets/CD0/AB0/sprockets%2F2211190fb757d05874e2b25fc37a31ad +0 -0
  10. data/test/dummy/tmp/cache/assets/CD4/9E0/sprockets%2Fa4b5072d12a9696c53ddb418267b71a1 +0 -0
  11. data/test/dummy/tmp/cache/assets/CD7/A50/sprockets%2Fda14ec03eb2e824f33b1b09718686642 +0 -0
  12. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  13. data/test/dummy/tmp/cache/assets/CE2/AD0/sprockets%2Fbd71546009ab5e606b3f27b4c6a79856 +0 -0
  14. data/test/dummy/tmp/cache/assets/CEE/EA0/sprockets%2Ffe80b470ec7729c4f729e8c4130618f5 +0 -0
  15. data/test/dummy/tmp/cache/assets/CFC/1D0/sprockets%2F59c017c3dd0a51d95af3e802200729ba +0 -0
  16. data/test/dummy/tmp/cache/assets/D1E/D00/sprockets%2Fdb4bfc1767775f3d99d17c747ab46800 +0 -0
  17. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  18. data/test/dummy/tmp/cache/assets/D46/6A0/sprockets%2F53d15648610e5c76afb293048fff2fdd +0 -0
  19. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  20. data/test/dummy/tmp/cache/assets/D59/880/sprockets%2Fc7cf8a97726aca758a7bd82a806769f6 +0 -0
  21. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  22. data/test/dummy/tmp/cache/assets/D9F/A30/sprockets%2F6ec7dc231f5505cf2ae1b66be9b4729d +0 -0
  23. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  24. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  25. data/test/dummy/tmp/cache/assets/E10/F30/sprockets%2F38c888ceee40a1a7dfe6f6f6657debd0 +0 -0
  26. metadata +45 -2
@@ -49,16 +49,18 @@ function modelView(){
49
49
 
50
50
  $dataWrapper.find('#data-holder-model').before("<span class='cross-button' style='font-family: sans-serif;font-size: 15px;float: right;margin-top: 3px;margin-right: 5px;cursor: pointer;color: red' >X</span>");
51
51
 
52
+ var window_height = $(window).height();
53
+
52
54
  $dataWrapper.css({
53
55
  'display': 'inline-block',
54
56
  'min-height': '200px',
55
57
  'min-width': '200px',
56
58
  'border': '1px lightgray solid',
57
59
  'box-shadow': '0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15)',
58
- 'max-height': '80%',
59
60
  'max-width': '80%',
60
61
  'border-radius': '6px',
61
- 'background-color': 'white'
62
+ 'background-color': 'white',
63
+ 'color': 'black'
62
64
  });
63
65
 
64
66
  $dataWrapper = $("<div class='suri-model-view' id='data-wrap-holder'></div>").append($dataWrapper);
@@ -68,7 +70,9 @@ function modelView(){
68
70
  'position': 'fixed',
69
71
  'z-index': 15,
70
72
  'width': '100%',
71
- 'top': '20%'
73
+ 'max-height': (window_height - 0.3 * window_height) + 'px' ,
74
+ 'top': '20%',
75
+ 'overflow-y': 'scroll'
72
76
  });
73
77
 
74
78
  $('body').append($dataWrapper);
@@ -21,7 +21,7 @@ Identifier = 1;
21
21
  var container = "<div class='popup_ option_list" + Identifier + "'><ul class='options_"+ Identifier +"' style='list-style-type: none;padding: 0px 0px 0px 0px;margin: 0px 0px 0px 0px'>";
22
22
 
23
23
  $.each(options, function(index, value){
24
- container = container + "<li>"+ value[0] +"</li>";
24
+ container = container + "<li style='color: black' >"+ value[0] +"</li>";
25
25
  });
26
26
 
27
27
  container = container + "</ul></div>";
@@ -0,0 +1,52 @@
1
+ $main-font-family: "BentonSans", "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
2
+
3
+ $main-background-color: #7462ad;
4
+
5
+ $main-text-color: white;
6
+
7
+ $link-color: darken($main-text-color, 10%);
8
+
9
+ $link-color-hover: lighten($link-color, 50%);
10
+
11
+ $button-color: orange;
12
+
13
+ body{
14
+ background-color: $main-background-color;
15
+ color: $main-text-color;
16
+ font-family: $main-font-family;
17
+ }
18
+
19
+ a{
20
+ color: $link-color;
21
+ text-decoration: none;
22
+ &:hover{
23
+ color: $link-color-hover;
24
+ }
25
+ }
26
+
27
+ .btn{
28
+ border: none;
29
+ border-radius: 6px;
30
+ min-height: 25px;
31
+ min-width: 80px;
32
+ color: $main-text-color;
33
+ padding: 6px 10px 6px 10px;
34
+ }
35
+ .btn-regular{
36
+ background-color: $button-color;
37
+ &:hover{
38
+ background-color: lighten($button-color, 20%);
39
+ }
40
+ }
41
+ .btn-failure{
42
+ background-color: red;
43
+ &:hover{
44
+ background-color: lighten(red, 20%);
45
+ }
46
+ }
47
+ .btn-success{
48
+ background-color: green;
49
+ &:hover{
50
+ background-color: lighten(green, 20%);
51
+ }
52
+ }
@@ -1,3 +1,3 @@
1
1
  module SuriModal
2
- VERSION = "0.0.5"
2
+ VERSION = "1.0.0"
3
3
  end
@@ -0,0 +1,254 @@
1
+ $(document).ready(
2
+ ->
3
+ $('#heading').click(
4
+ ->
5
+ data = """
6
+ <h1>Welcome to Rails</h1>
7
+ <p>Rails is a web-application framework that includes everything needed to create
8
+ database-backed web applications according to the Model-View-Control pattern.
9
+
10
+ This pattern splits the view (also called the presentation) into "dumb"
11
+ templates that are primarily responsible for inserting pre-built data in between
12
+ HTML tags. The model contains the "smart" domain objects (such as Account,
13
+ Product, Person, Post) that holds all the business logic and knows how to
14
+ persist themselves to a database. The controller handles the incoming requests
15
+ (such as Save New Account, Update Product, Show Post) by manipulating the model
16
+ and directing data to the view.
17
+
18
+ In Rails, the model is handled by what's called an object-relational mapping
19
+ layer entitled Active Record. This layer allows you to present the data from
20
+ database rows as objects and embellish these data objects with business logic
21
+ methods. You can read more about Active Record in
22
+ link:files/vendor/rails/activerecord/README.html.
23
+
24
+ The controller and view are handled by the Action Pack, which handles both
25
+ layers by its two parts: Action View and Action Controller. These two layers
26
+ are bundled in a single package due to their heavy interdependence. This is
27
+ unlike the relationship between the Active Record and Action Pack that is much
28
+ more separate. Each of these packages can be used independently outside of
29
+ Rails. You can read more about Action Pack in
30
+ link:files/vendor/rails/actionpack/README.html.
31
+ </p>
32
+
33
+ <h1>Getting Started</h1>
34
+
35
+ <p>1. At the command prompt, create a new Rails application:
36
+
37
+
38
+ 3. Go to http://localhost:3000/ and you'll see:
39
+ "Welcome aboard: You're riding Ruby on Rails!"
40
+
41
+ 4. Follow the guidelines to start developing your application. You can find
42
+ the following resources handy:
43
+
44
+ * The Getting Started Guide: http://guides.rubyonrails.org/getting_started.html
45
+ * Ruby on Rails Tutorial Book: http://www.railstutorial.org/
46
+
47
+
48
+ == Debugging Rails
49
+
50
+ Sometimes your application goes wrong. Fortunately there are a lot of tools that
51
+ will help you debug it and get it back on the rails.
52
+
53
+ First area to check is the application log files. Have "tail -f" commands
54
+ running on the server.log and development.log. Rails will automatically display
55
+ debugging and runtime information to these files. Debugging info will also be
56
+ shown in the browser on requests from 127.0.0.1.
57
+
58
+ You can also log your own messages directly into the log file from your code
59
+ using the Ruby logger class from inside your controllers. Example:
60
+
61
+ class WeblogController < ActionController::Base
62
+ def destroy
63
+ @weblog = Weblog.find(params[:id])
64
+ @weblog.destroy
65
+ logger.info(" Destroyed Weblog ID!")
66
+ end
67
+ end
68
+
69
+ The result will be a message in your log file along the lines of:
70
+
71
+ Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1!
72
+
73
+ More information on how to use the logger is at http://www.ruby-doc.org/core/
74
+
75
+ Also, Ruby documentation can be found at http://www.ruby-lang.org/. There are
76
+ several books available online as well:
77
+
78
+ * Programming Ruby: http://www.ruby-doc.org/docs/ProgrammingRuby/ (Pickaxe)
79
+ * Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)
80
+
81
+ These two books will bring you up to speed on the Ruby language and also on
82
+ programming in general.</p>
83
+
84
+
85
+ <h1>Debugger</h1>
86
+
87
+ <p>Debugger support is available through the debugger command when you start your
88
+ Mongrel or WEBrick server with --debugger. This means that you can break out of
89
+ execution at any point in the code, investigate and change the model, and then,
90
+ resume execution! You need to install ruby-debug to run the server in debugging
91
+
92
+ class WeblogController < ActionController::Base
93
+ def index
94
+ @posts = Post.all
95
+ debugger
96
+ end
97
+ end
98
+
99
+ So the controller will accept the action, run the first line, then present you
100
+ with a IRB prompt in the server window. Here you can do things like:
101
+
102
+ >> @posts.inspect
103
+ @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>,
104
+ @attributes={"title"=>"Rails", "body"=>"Only ten..", "id"=>"2"}>]"
105
+ >> @posts.first.title = "hello from a debugger"
106
+ => "hello from a debugger"
107
+
108
+ ...and even better, you can examine how your runtime objects actually work:
109
+
110
+ >> f = @posts.first
111
+ >> f.
112
+ Display all 152 possibilities? (y or n)
113
+
114
+ Finally, when you're ready to resume execution, you can enter "cont".
115
+ </p>
116
+
117
+ <h1>Console</h1>
118
+
119
+ <p>The console is a Ruby shell, which allows you to interact with your
120
+ application's domain model. Here you'll have all parts of the application
121
+ configured, just like it is when the application is <span id="console" >running</span>. You can inspect
122
+ domain models, change values, and save to the database. Starting the script
123
+ without arguments will launch it in the development environment.
124
+
125
+ directory.
126
+
127
+ Options:
128
+
129
+ made to the database.
130
+ * Passing an environment name as an argument will load the corresponding
131
+
132
+ To reload your controllers and models after launching the console run
133
+
134
+ More information about irb can be found at:
135
+ link:http://www.rubycentral.org/pickaxe/irb.html
136
+
137
+
138
+ == dbconsole
139
+
140
+ defined in database.yml. Starting the script without arguments will connect you
141
+ to the development database. Passing an argument will connect you to a different
142
+ PostgreSQL and SQLite 3.
143
+
144
+ == Description of Contents
145
+
146
+ The default directory structure of a generated Ruby on Rails application:
147
+
148
+ |-- app
149
+ | |-- assets
150
+ | | |-- images
151
+ | | |-- javascripts
152
+ | | `-- stylesheets
153
+ | |-- controllers
154
+ | |-- helpers
155
+ | |-- mailers
156
+ | |-- models
157
+ | `-- views
158
+ | `-- layouts
159
+ |-- config
160
+ | |-- environments
161
+ | |-- initializers
162
+ | `-- locales
163
+ |-- db
164
+ |-- doc
165
+ |-- lib
166
+ | |-- assets
167
+ | `-- tasks
168
+ |-- log
169
+ |-- public
170
+ |-- script
171
+ |-- test
172
+ | |-- fixtures
173
+ | |-- functional
174
+ | |-- integration
175
+ | |-- performance
176
+ | `-- unit
177
+ |-- tmp
178
+ | `-- cache
179
+ | `-- assets
180
+ `-- vendor
181
+ |-- assets
182
+ | |-- javascripts
183
+ | `-- stylesheets
184
+ `-- plugins
185
+
186
+ app
187
+ Holds all the code that's specific to this particular application.
188
+
189
+ app/assets
190
+ Contains subdirectories for images, stylesheets, and JavaScript files.
191
+
192
+ app/controllers
193
+ Holds controllers that should be named like weblogs_controller.rb for
194
+ automated URL mapping. All controllers should descend from
195
+ ApplicationController which itself descends from ActionController::Base.
196
+
197
+ app/models
198
+ Holds models that should be named like post.rb. Models descend from
199
+ ActiveRecord::Base by default.
200
+
201
+ app/views
202
+ Holds the template files for the view that should be named like
203
+ weblogs/index.html.erb for the WeblogsController#index action. All views use
204
+ eRuby syntax by default.
205
+
206
+ app/views/layouts
207
+ Holds the template files for layouts to be used with views. This models the
208
+ common header/footer method of wrapping views. In your views, define a layout
209
+ layout.
210
+
211
+ app/helpers
212
+ Holds view helpers that should be named like weblogs_helper.rb. These are
213
+ generated for you automatically when using generators for controllers.
214
+ Helpers can be used to wrap functionality for your views into methods.
215
+
216
+ config
217
+ Configuration files for the Rails environment, the routing map, the database,
218
+ and other dependencies.
219
+
220
+ db
221
+ Contains the database schema in schema.rb. db/migrate contains all the
222
+ sequence of Migrations for your schema.
223
+
224
+ doc
225
+ This directory is where your application documentation will be stored when
226
+
227
+ lib
228
+ Application specific libraries. Basically, any kind of custom code that
229
+ doesn't belong under controllers, models, or helpers. This directory is in
230
+ the load path.
231
+
232
+ public
233
+ The directory available for the web server. Also contains the dispatchers and the
234
+ default HTML files. This should be set as the DOCUMENT_ROOT of your web
235
+ server.
236
+
237
+ script
238
+ Helper scripts for automation and generation.
239
+
240
+ test
241
+ Unit and functional tests along with fixtures. When using the rails generate
242
+ command, template test files will be generated for you and placed in this
243
+ directory.
244
+
245
+ vendor
246
+ External libraries that the application depends on. Also includes the plugins
247
+ subdirectory. If the app has frozen rails, those gems also go here, under
248
+ vendor/rails/. This directory is in the load path.</p>
249
+ """
250
+ m = new modelView()
251
+ m.setData data
252
+ m.launch()
253
+ )
254
+ )
@@ -11,9 +11,9 @@
11
11
 
12
12
  <% @welcomes.each do |welcome| %>
13
13
  <tr>
14
- <td><%= link_to 'Show', welcome %></td>
15
- <td><%= link_to 'Edit', edit_welcome_path(welcome) %></td>
16
- <td><%= link_to 'Destroy', welcome, method: :delete, data: { confirm: 'Are you sure?' } %></td>
14
+ <td><%= link_to 'Show', welcome , class: 'btn btn-regular'%></td>
15
+ <td><%= link_to 'Edit', edit_welcome_path(welcome), class: 'btn btn-failure' %></td>
16
+ <td><%= link_to 'Destroy', welcome, method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-success' %></td>
17
17
  </tr>
18
18
  <% end %>
19
19
  </table>
@@ -266,17 +266,19 @@
266
266
  vendor/rails/. This directory is in the load path.</p>
267
267
 
268
268
 
269
+
270
+
269
271
  <script type="text/javascript">
270
272
  $(document).ready(function(){
271
273
  modelAlert('Welcome Suraj');
272
- $('#heading').click(function(){
273
- var m = new modelView();
274
-
275
- var data = "<h1>Console</h1><p>The console is a Ruby shell, which allows you to interact with your application's domain model. Here you'll have all parts of the application configured, just like it is when the application is running. You can inspect domain models, change values, and save to the database. Starting the script without arguments will launch it in the development environment.</p>";
276
-
277
- m.setData(data);
278
- m.launch();
279
- });
274
+ // $('#heading').click(function(){
275
+ // var m = new modelView();
276
+ //
277
+ // var data = "<h1>Console</h1><p>The console is a Ruby shell, which allows you to interact with your application's domain model. Here you'll have all parts of the application configured, just like it is when the application is running. You can inspect domain models, change values, and save to the database. Starting the script without arguments will launch it in the development environment.</p>";
278
+ //
279
+ // m.setData(data);
280
+ // m.launch();
281
+ // });
280
282
  $('#for_list').option_list([
281
283
  [ 'option 1.', function(){ alert('one') } ],
282
284
  [ 'option 2.', function(){ alert('two') } ]
@@ -285,4 +287,4 @@
285
287
  });
286
288
  </script>
287
289
 
288
- <%= link_to 'New Welcome', new_welcome_path %>
290
+ <%= link_to 'New Welcome', new_welcome_path, class: 'btn btn-regular' %>
@@ -5598,3 +5598,2015 @@ Served asset /option_list.js - 304 Not Modified (0ms)
5598
5598
 
5599
5599
  Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-16 09:25:43 +0530
5600
5600
  Served asset /application.js - 304 Not Modified (37ms)
5601
+ Connecting to database specified by database.yml
5602
+
5603
+
5604
+ Started GET "/" for 127.0.0.1 at 2013-08-16 19:06:59 +0530
5605
+ Processing by WelcomesController#index as HTML
5606
+ Welcome Load (10.6ms) SELECT "welcomes".* FROM "welcomes" 
5607
+ Rendered welcomes/index.html.erb within layouts/application (4.9ms)
5608
+ Completed 200 OK in 258ms (Views: 210.8ms | ActiveRecord: 12.4ms)
5609
+
5610
+
5611
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5612
+ Served asset /suri_modal.css - 200 OK (9ms)
5613
+
5614
+
5615
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5616
+ Served asset /model_view.css - 304 Not Modified (1ms)
5617
+
5618
+
5619
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5620
+ Served asset /model_alert.css - 304 Not Modified (1ms)
5621
+
5622
+
5623
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5624
+ Served asset /option_list.css - 304 Not Modified (2ms)
5625
+
5626
+
5627
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5628
+ Served asset /application.css - 304 Not Modified (8ms)
5629
+
5630
+
5631
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5632
+ Served asset /jquery.js - 304 Not Modified (3ms)
5633
+
5634
+
5635
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5636
+ Served asset /suri_modal.js - 200 OK (5ms)
5637
+
5638
+
5639
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5640
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
5641
+
5642
+
5643
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5644
+ Served asset /model_alert.js - 304 Not Modified (2ms)
5645
+
5646
+
5647
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5648
+ Served asset /model_view.js - 304 Not Modified (2ms)
5649
+
5650
+
5651
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5652
+ Served asset /option_list.js - 304 Not Modified (1ms)
5653
+
5654
+
5655
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-16 19:07:00 +0530
5656
+ Served asset /application.js - 304 Not Modified (8ms)
5657
+ Connecting to database specified by database.yml
5658
+
5659
+
5660
+ Started GET "/" for 127.0.0.1 at 2013-08-17 14:54:40 +0530
5661
+ Processing by WelcomesController#index as HTML
5662
+ Welcome Load (9.7ms) SELECT "welcomes".* FROM "welcomes" 
5663
+ Rendered welcomes/index.html.erb within layouts/application (5.5ms)
5664
+ Completed 500 Internal Server Error in 208ms
5665
+
5666
+ ActionView::Template::Error (cannot load such file -- sass
5667
+ (in /Users/surajpratap/RubymineProjects/SuriModal/lib/assets/stylesheets/my_style.css.scss)):
5668
+ 2: <html>
5669
+ 3: <head>
5670
+ 4: <title>Dummy</title>
5671
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
5672
+ 6: <%= javascript_include_tag "application" %>
5673
+ 7: <%= csrf_meta_tags %>
5674
+ 8: </head>
5675
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3338344624105764017_70193877394220'
5676
+ app/controllers/welcomes_controller.rb:7:in `index'
5677
+
5678
+
5679
+ Rendered /Users/surajpratap/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
5680
+ Rendered /Users/surajpratap/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
5681
+ Rendered /Users/surajpratap/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.7ms)
5682
+ Connecting to database specified by database.yml
5683
+
5684
+
5685
+ Started GET "/" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5686
+ Processing by WelcomesController#index as HTML
5687
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes" 
5688
+ Rendered welcomes/index.html.erb within layouts/application (16.9ms)
5689
+ Compiled my_style.css (208ms) (pid 1208)
5690
+ Compiled suri_modal.css (232ms) (pid 1208)
5691
+ Compiled application.css (3ms) (pid 1208)
5692
+ Completed 200 OK in 411ms (Views: 387.9ms | ActiveRecord: 1.9ms)
5693
+
5694
+
5695
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5696
+ Served asset /application.css - 200 OK (33ms)
5697
+
5698
+
5699
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5700
+ Served asset /model_alert.css - 200 OK (2ms)
5701
+
5702
+
5703
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5704
+ Served asset /suri_modal.css - 200 OK (8ms)
5705
+
5706
+
5707
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5708
+ Served asset /model_view.css - 200 OK (1ms)
5709
+
5710
+
5711
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5712
+ Served asset /option_list.css - 200 OK (2ms)
5713
+
5714
+
5715
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5716
+ Served asset /my_style.css - 200 OK (2ms)
5717
+
5718
+
5719
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5720
+ Served asset /jquery.js - 200 OK (4ms)
5721
+
5722
+
5723
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5724
+ Served asset /jquery_ujs.js - 200 OK (2ms)
5725
+
5726
+
5727
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5728
+ Served asset /model_alert.js - 200 OK (2ms)
5729
+
5730
+
5731
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5732
+ Served asset /model_view.js - 200 OK (1ms)
5733
+
5734
+
5735
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5736
+ Served asset /option_list.js - 200 OK (1ms)
5737
+
5738
+
5739
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5740
+ Served asset /suri_modal.js - 200 OK (4ms)
5741
+
5742
+
5743
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 14:56:41 +0530
5744
+ Served asset /application.js - 200 OK (10ms)
5745
+
5746
+
5747
+ Started GET "/" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5748
+ Processing by WelcomesController#index as HTML
5749
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes"
5750
+ Rendered welcomes/index.html.erb within layouts/application (1.2ms)
5751
+ Compiled model_view.js (0ms) (pid 1208)
5752
+ Compiled suri_modal.js (1ms) (pid 1208)
5753
+ Compiled application.js (2ms) (pid 1208)
5754
+ Completed 200 OK in 85ms (Views: 84.2ms | ActiveRecord: 0.2ms)
5755
+
5756
+
5757
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5758
+ Served asset /application.css - 304 Not Modified (0ms)
5759
+
5760
+
5761
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5762
+ Served asset /my_style.css - 304 Not Modified (0ms)
5763
+
5764
+
5765
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5766
+ Served asset /model_view.css - 304 Not Modified (0ms)
5767
+
5768
+
5769
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5770
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
5771
+
5772
+
5773
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5774
+ Served asset /option_list.css - 304 Not Modified (0ms)
5775
+
5776
+
5777
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5778
+ Served asset /model_alert.css - 304 Not Modified (0ms)
5779
+
5780
+
5781
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5782
+ Served asset /jquery.js - 304 Not Modified (0ms)
5783
+
5784
+
5785
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5786
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
5787
+
5788
+
5789
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5790
+ Served asset /model_alert.js - 304 Not Modified (0ms)
5791
+
5792
+
5793
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5794
+ Served asset /model_view.js - 200 OK (4ms)
5795
+
5796
+
5797
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5798
+ Served asset /option_list.js - 304 Not Modified (0ms)
5799
+
5800
+
5801
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5802
+ Served asset /application.js - 304 Not Modified (6ms)
5803
+
5804
+
5805
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 14:58:40 +0530
5806
+ Served asset /suri_modal.js - 304 Not Modified (5ms)
5807
+
5808
+
5809
+ Started GET "/" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5810
+ Processing by WelcomesController#index as HTML
5811
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes" 
5812
+ Rendered welcomes/index.html.erb within layouts/application (1.2ms)
5813
+ Compiled model_view.js (0ms) (pid 1208)
5814
+ Compiled suri_modal.js (1ms) (pid 1208)
5815
+ Compiled application.js (2ms) (pid 1208)
5816
+ Completed 200 OK in 50ms (Views: 48.9ms | ActiveRecord: 0.2ms)
5817
+
5818
+
5819
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5820
+ Served asset /application.css - 304 Not Modified (0ms)
5821
+
5822
+
5823
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5824
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
5825
+
5826
+
5827
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5828
+ Served asset /model_view.css - 304 Not Modified (0ms)
5829
+
5830
+
5831
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5832
+ Served asset /option_list.css - 304 Not Modified (0ms)
5833
+
5834
+
5835
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5836
+ Served asset /model_alert.css - 304 Not Modified (0ms)
5837
+
5838
+
5839
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5840
+ Served asset /my_style.css - 304 Not Modified (0ms)
5841
+
5842
+
5843
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5844
+ Served asset /jquery.js - 304 Not Modified (0ms)
5845
+
5846
+
5847
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5848
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
5849
+
5850
+
5851
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5852
+ Served asset /model_alert.js - 304 Not Modified (0ms)
5853
+
5854
+
5855
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5856
+ Served asset /model_view.js - 200 OK (3ms)
5857
+
5858
+
5859
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5860
+ Served asset /option_list.js - 304 Not Modified (0ms)
5861
+
5862
+
5863
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5864
+ Served asset /suri_modal.js - 304 Not Modified (3ms)
5865
+
5866
+
5867
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 14:59:25 +0530
5868
+ Served asset /application.js - 304 Not Modified (8ms)
5869
+
5870
+
5871
+ Started GET "/" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5872
+ Processing by WelcomesController#index as HTML
5873
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes"
5874
+ Rendered welcomes/index.html.erb within layouts/application (0.9ms)
5875
+ Compiled model_view.js (0ms) (pid 1208)
5876
+ Compiled suri_modal.js (0ms) (pid 1208)
5877
+ Compiled application.js (2ms) (pid 1208)
5878
+ Completed 200 OK in 50ms (Views: 48.7ms | ActiveRecord: 0.2ms)
5879
+
5880
+
5881
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5882
+ Served asset /application.css - 304 Not Modified (0ms)
5883
+
5884
+
5885
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5886
+ Served asset /model_alert.css - 304 Not Modified (0ms)
5887
+
5888
+
5889
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5890
+ Served asset /my_style.css - 304 Not Modified (0ms)
5891
+
5892
+
5893
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5894
+ Served asset /option_list.css - 304 Not Modified (0ms)
5895
+
5896
+
5897
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5898
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
5899
+
5900
+
5901
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5902
+ Served asset /model_view.css - 304 Not Modified (0ms)
5903
+
5904
+
5905
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5906
+ Served asset /jquery.js - 304 Not Modified (0ms)
5907
+
5908
+
5909
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5910
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
5911
+
5912
+
5913
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5914
+ Served asset /model_alert.js - 304 Not Modified (0ms)
5915
+
5916
+
5917
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5918
+ Served asset /model_view.js - 200 OK (1ms)
5919
+
5920
+
5921
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5922
+ Served asset /option_list.js - 304 Not Modified (0ms)
5923
+
5924
+
5925
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5926
+ Served asset /suri_modal.js - 304 Not Modified (6ms)
5927
+
5928
+
5929
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:00:22 +0530
5930
+ Served asset /application.js - 304 Not Modified (6ms)
5931
+
5932
+
5933
+ Started GET "/" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5934
+ Processing by WelcomesController#index as HTML
5935
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes" 
5936
+ Rendered welcomes/index.html.erb within layouts/application (1.8ms)
5937
+ Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.1ms)
5938
+
5939
+
5940
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5941
+ Served asset /application.css - 304 Not Modified (0ms)
5942
+
5943
+
5944
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5945
+ Served asset /model_alert.css - 304 Not Modified (0ms)
5946
+
5947
+
5948
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5949
+ Served asset /my_style.css - 304 Not Modified (0ms)
5950
+
5951
+
5952
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5953
+ Served asset /model_view.css - 304 Not Modified (0ms)
5954
+
5955
+
5956
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5957
+ Served asset /option_list.css - 304 Not Modified (0ms)
5958
+
5959
+
5960
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5961
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
5962
+
5963
+
5964
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5965
+ Served asset /jquery.js - 304 Not Modified (0ms)
5966
+
5967
+
5968
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5969
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
5970
+
5971
+
5972
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5973
+ Served asset /model_alert.js - 304 Not Modified (0ms)
5974
+
5975
+
5976
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5977
+ Served asset /option_list.js - 304 Not Modified (0ms)
5978
+
5979
+
5980
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5981
+ Served asset /model_view.js - 304 Not Modified (0ms)
5982
+
5983
+
5984
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5985
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
5986
+
5987
+
5988
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:02:12 +0530
5989
+ Served asset /application.js - 304 Not Modified (0ms)
5990
+
5991
+
5992
+ Started GET "/welcomes/1/edit" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
5993
+ Processing by WelcomesController#edit as HTML
5994
+ Parameters: {"id"=>"1"}
5995
+ Welcome Load (0.3ms) SELECT "welcomes".* FROM "welcomes" WHERE "welcomes"."id" = ? LIMIT 1 [["id", "1"]]
5996
+ Rendered welcomes/_form.html.erb (53.7ms)
5997
+ Rendered welcomes/edit.html.erb within layouts/application (73.9ms)
5998
+ Completed 200 OK in 120ms (Views: 117.7ms | ActiveRecord: 0.3ms)
5999
+
6000
+
6001
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6002
+ Served asset /application.css - 304 Not Modified (0ms)
6003
+
6004
+
6005
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6006
+ Served asset /option_list.css - 304 Not Modified (0ms)
6007
+
6008
+
6009
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6010
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6011
+
6012
+
6013
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6014
+ Served asset /model_view.css - 304 Not Modified (0ms)
6015
+
6016
+
6017
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6018
+ Served asset /my_style.css - 304 Not Modified (0ms)
6019
+
6020
+
6021
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6022
+ Served asset /jquery.js - 304 Not Modified (0ms)
6023
+
6024
+
6025
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6026
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6027
+
6028
+
6029
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6030
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6031
+
6032
+
6033
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6034
+ Served asset /model_view.js - 304 Not Modified (0ms)
6035
+
6036
+
6037
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6038
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6039
+
6040
+
6041
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6042
+ Served asset /option_list.js - 304 Not Modified (0ms)
6043
+
6044
+
6045
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6046
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6047
+
6048
+
6049
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:37 +0530
6050
+ Served asset /application.js - 304 Not Modified (0ms)
6051
+
6052
+
6053
+ Started GET "/welcomes/1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6054
+ Processing by WelcomesController#show as HTML
6055
+ Parameters: {"id"=>"1"}
6056
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes" WHERE "welcomes"."id" = ? LIMIT 1 [["id", "1"]]
6057
+ Rendered welcomes/show.html.erb within layouts/application (0.9ms)
6058
+ Completed 200 OK in 168ms (Views: 167.0ms | ActiveRecord: 0.1ms)
6059
+
6060
+
6061
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6062
+ Served asset /application.css - 304 Not Modified (0ms)
6063
+
6064
+
6065
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6066
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6067
+
6068
+
6069
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6070
+ Served asset /model_view.css - 304 Not Modified (0ms)
6071
+
6072
+
6073
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6074
+ Served asset /option_list.css - 304 Not Modified (0ms)
6075
+
6076
+
6077
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6078
+ Served asset /my_style.css - 304 Not Modified (0ms)
6079
+
6080
+
6081
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6082
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6083
+
6084
+
6085
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6086
+ Served asset /jquery.js - 304 Not Modified (0ms)
6087
+
6088
+
6089
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6090
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6091
+
6092
+
6093
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6094
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6095
+
6096
+
6097
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6098
+ Served asset /model_view.js - 304 Not Modified (0ms)
6099
+
6100
+
6101
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6102
+ Served asset /option_list.js - 304 Not Modified (0ms)
6103
+
6104
+
6105
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6106
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6107
+
6108
+
6109
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:03:41 +0530
6110
+ Served asset /application.js - 304 Not Modified (0ms)
6111
+
6112
+
6113
+ Started GET "/" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6114
+ Processing by WelcomesController#index as HTML
6115
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes"
6116
+ Rendered welcomes/index.html.erb within layouts/application (2.3ms)
6117
+ Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.2ms)
6118
+
6119
+
6120
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6121
+ Served asset /application.css - 304 Not Modified (0ms)
6122
+
6123
+
6124
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6125
+ Served asset /option_list.css - 304 Not Modified (0ms)
6126
+
6127
+
6128
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6129
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6130
+
6131
+
6132
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6133
+ Served asset /my_style.css - 304 Not Modified (0ms)
6134
+
6135
+
6136
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6137
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6138
+
6139
+
6140
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6141
+ Served asset /model_view.css - 304 Not Modified (0ms)
6142
+
6143
+
6144
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6145
+ Served asset /jquery.js - 304 Not Modified (0ms)
6146
+
6147
+
6148
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6149
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6150
+
6151
+
6152
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6153
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6154
+
6155
+
6156
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6157
+ Served asset /model_view.js - 304 Not Modified (0ms)
6158
+
6159
+
6160
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6161
+ Served asset /option_list.js - 304 Not Modified (0ms)
6162
+
6163
+
6164
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6165
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6166
+
6167
+
6168
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:04:21 +0530
6169
+ Served asset /application.js - 304 Not Modified (0ms)
6170
+
6171
+
6172
+ Started GET "/welcomes/1" for 127.0.0.1 at 2013-08-17 15:05:12 +0530
6173
+ Processing by WelcomesController#show as HTML
6174
+ Parameters: {"id"=>"1"}
6175
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes" WHERE "welcomes"."id" = ? LIMIT 1 [["id", "1"]]
6176
+ Rendered welcomes/show.html.erb within layouts/application (0.4ms)
6177
+ Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.1ms)
6178
+
6179
+
6180
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6181
+ Served asset /application.css - 304 Not Modified (0ms)
6182
+
6183
+
6184
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6185
+ Served asset /my_style.css - 304 Not Modified (0ms)
6186
+
6187
+
6188
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6189
+ Served asset /option_list.css - 304 Not Modified (0ms)
6190
+
6191
+
6192
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6193
+ Served asset /model_view.css - 304 Not Modified (0ms)
6194
+
6195
+
6196
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6197
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6198
+
6199
+
6200
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6201
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6202
+
6203
+
6204
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6205
+ Served asset /jquery.js - 304 Not Modified (0ms)
6206
+
6207
+
6208
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6209
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6210
+
6211
+
6212
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6213
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6214
+
6215
+
6216
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6217
+ Served asset /option_list.js - 304 Not Modified (0ms)
6218
+
6219
+
6220
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6221
+ Served asset /model_view.js - 304 Not Modified (0ms)
6222
+
6223
+
6224
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6225
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6226
+
6227
+
6228
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:13 +0530
6229
+ Served asset /application.js - 304 Not Modified (0ms)
6230
+
6231
+
6232
+ Started GET "/welcomes" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6233
+ Processing by WelcomesController#index as HTML
6234
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes"
6235
+ Rendered welcomes/index.html.erb within layouts/application (0.9ms)
6236
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.1ms)
6237
+
6238
+
6239
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6240
+ Served asset /application.css - 304 Not Modified (0ms)
6241
+
6242
+
6243
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6244
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6245
+
6246
+
6247
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6248
+ Served asset /model_view.css - 304 Not Modified (0ms)
6249
+
6250
+
6251
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6252
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6253
+
6254
+
6255
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6256
+ Served asset /my_style.css - 304 Not Modified (0ms)
6257
+
6258
+
6259
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6260
+ Served asset /option_list.css - 304 Not Modified (0ms)
6261
+
6262
+
6263
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6264
+ Served asset /jquery.js - 304 Not Modified (0ms)
6265
+
6266
+
6267
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6268
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6269
+
6270
+
6271
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6272
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6273
+
6274
+
6275
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6276
+ Served asset /model_view.js - 304 Not Modified (0ms)
6277
+
6278
+
6279
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6280
+ Served asset /option_list.js - 304 Not Modified (0ms)
6281
+
6282
+
6283
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6284
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6285
+
6286
+
6287
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:05:16 +0530
6288
+ Served asset /application.js - 304 Not Modified (0ms)
6289
+
6290
+
6291
+ Started GET "/welcomes/1/edit" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6292
+ Processing by WelcomesController#edit as HTML
6293
+ Parameters: {"id"=>"1"}
6294
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes" WHERE "welcomes"."id" = ? LIMIT 1 [["id", "1"]]
6295
+ Rendered welcomes/_form.html.erb (1.1ms)
6296
+ Rendered welcomes/edit.html.erb within layouts/application (2.0ms)
6297
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.1ms)
6298
+
6299
+
6300
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6301
+ Served asset /model_view.css - 304 Not Modified (0ms)
6302
+
6303
+
6304
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6305
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6306
+
6307
+
6308
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6309
+ Served asset /my_style.css - 304 Not Modified (0ms)
6310
+
6311
+
6312
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6313
+ Served asset /application.css - 304 Not Modified (0ms)
6314
+
6315
+
6316
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6317
+ Served asset /option_list.css - 304 Not Modified (0ms)
6318
+
6319
+
6320
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6321
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6322
+
6323
+
6324
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6325
+ Served asset /jquery.js - 304 Not Modified (0ms)
6326
+
6327
+
6328
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6329
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6330
+
6331
+
6332
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6333
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6334
+
6335
+
6336
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6337
+ Served asset /model_view.js - 304 Not Modified (0ms)
6338
+
6339
+
6340
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6341
+ Served asset /option_list.js - 304 Not Modified (0ms)
6342
+
6343
+
6344
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6345
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6346
+
6347
+
6348
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:11:19 +0530
6349
+ Served asset /application.js - 304 Not Modified (0ms)
6350
+
6351
+
6352
+ Started GET "/welcomes" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6353
+ Processing by WelcomesController#index as HTML
6354
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes"
6355
+ Rendered welcomes/index.html.erb within layouts/application (1.9ms)
6356
+ Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.2ms)
6357
+
6358
+
6359
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6360
+ Served asset /model_view.css - 304 Not Modified (0ms)
6361
+
6362
+
6363
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6364
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6365
+
6366
+
6367
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6368
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6369
+
6370
+
6371
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6372
+ Served asset /option_list.css - 304 Not Modified (0ms)
6373
+
6374
+
6375
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6376
+ Served asset /my_style.css - 304 Not Modified (0ms)
6377
+
6378
+
6379
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6380
+ Served asset /application.css - 304 Not Modified (0ms)
6381
+
6382
+
6383
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6384
+ Served asset /jquery.js - 304 Not Modified (0ms)
6385
+
6386
+
6387
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6388
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6389
+
6390
+
6391
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6392
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6393
+
6394
+
6395
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6396
+ Served asset /model_view.js - 304 Not Modified (0ms)
6397
+
6398
+
6399
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6400
+ Served asset /option_list.js - 304 Not Modified (0ms)
6401
+
6402
+
6403
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6404
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6405
+
6406
+
6407
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:23:11 +0530
6408
+ Served asset /application.js - 304 Not Modified (0ms)
6409
+
6410
+
6411
+ Started GET "/welcomes" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6412
+ Processing by WelcomesController#index as HTML
6413
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes" 
6414
+ Rendered welcomes/index.html.erb within layouts/application (1.0ms)
6415
+ Compiled option_list.js (0ms) (pid 1208)
6416
+ Compiled suri_modal.js (1ms) (pid 1208)
6417
+ Compiled application.js (2ms) (pid 1208)
6418
+ Completed 200 OK in 118ms (Views: 116.9ms | ActiveRecord: 0.2ms)
6419
+
6420
+
6421
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6422
+ Served asset /application.css - 304 Not Modified (0ms)
6423
+
6424
+
6425
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6426
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6427
+
6428
+
6429
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6430
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6431
+
6432
+
6433
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6434
+ Served asset /model_view.css - 304 Not Modified (0ms)
6435
+
6436
+
6437
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6438
+ Served asset /my_style.css - 304 Not Modified (0ms)
6439
+
6440
+
6441
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6442
+ Served asset /option_list.css - 304 Not Modified (0ms)
6443
+
6444
+
6445
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6446
+ Served asset /jquery.js - 304 Not Modified (0ms)
6447
+
6448
+
6449
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6450
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6451
+
6452
+
6453
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6454
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6455
+
6456
+
6457
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6458
+ Served asset /model_view.js - 304 Not Modified (0ms)
6459
+
6460
+
6461
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6462
+ Served asset /option_list.js - 200 OK (1ms)
6463
+
6464
+
6465
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6466
+ Served asset /application.js - 304 Not Modified (11ms)
6467
+
6468
+
6469
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:24:56 +0530
6470
+ Served asset /suri_modal.js - 304 Not Modified (5ms)
6471
+
6472
+
6473
+ Started GET "/welcomes/1/edit" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6474
+ Processing by WelcomesController#edit as HTML
6475
+ Parameters: {"id"=>"1"}
6476
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes" WHERE "welcomes"."id" = ? LIMIT 1 [["id", "1"]]
6477
+ Rendered welcomes/_form.html.erb (1.1ms)
6478
+ Rendered welcomes/edit.html.erb within layouts/application (1.9ms)
6479
+ Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.1ms)
6480
+
6481
+
6482
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6483
+ Served asset /application.css - 304 Not Modified (0ms)
6484
+
6485
+
6486
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6487
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6488
+
6489
+
6490
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6491
+ Served asset /option_list.css - 304 Not Modified (0ms)
6492
+
6493
+
6494
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6495
+ Served asset /my_style.css - 304 Not Modified (0ms)
6496
+
6497
+
6498
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6499
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6500
+
6501
+
6502
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6503
+ Served asset /model_view.css - 304 Not Modified (0ms)
6504
+
6505
+
6506
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6507
+ Served asset /jquery.js - 304 Not Modified (0ms)
6508
+
6509
+
6510
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6511
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6512
+
6513
+
6514
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6515
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6516
+
6517
+
6518
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6519
+ Served asset /model_view.js - 304 Not Modified (0ms)
6520
+
6521
+
6522
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6523
+ Served asset /option_list.js - 304 Not Modified (0ms)
6524
+
6525
+
6526
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6527
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6528
+
6529
+
6530
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:13 +0530
6531
+ Served asset /application.js - 304 Not Modified (0ms)
6532
+
6533
+
6534
+ Started PUT "/welcomes/1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6535
+ Processing by WelcomesController#update as HTML
6536
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"0MXSRHD5j3O5uZHcT9MBEOdtDGJeVgW+ipE5ofRokAc=", "commit"=>"Update Welcome", "id"=>"1"}
6537
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes" WHERE "welcomes"."id" = ? LIMIT 1 [["id", "1"]]
6538
+  (0.1ms) begin transaction
6539
+  (0.0ms) commit transaction
6540
+ Redirected to http://localhost:3000/welcomes/1
6541
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
6542
+
6543
+
6544
+ Started GET "/welcomes/1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6545
+ Processing by WelcomesController#show as HTML
6546
+ Parameters: {"id"=>"1"}
6547
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes" WHERE "welcomes"."id" = ? LIMIT 1 [["id", "1"]]
6548
+ Rendered welcomes/show.html.erb within layouts/application (0.4ms)
6549
+ Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.1ms)
6550
+
6551
+
6552
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6553
+ Served asset /application.css - 304 Not Modified (0ms)
6554
+
6555
+
6556
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6557
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6558
+
6559
+
6560
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6561
+ Served asset /option_list.css - 304 Not Modified (0ms)
6562
+
6563
+
6564
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6565
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6566
+
6567
+
6568
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6569
+ Served asset /my_style.css - 304 Not Modified (0ms)
6570
+
6571
+
6572
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6573
+ Served asset /model_view.css - 304 Not Modified (0ms)
6574
+
6575
+
6576
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6577
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6578
+
6579
+
6580
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6581
+ Served asset /jquery.js - 304 Not Modified (0ms)
6582
+
6583
+
6584
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6585
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6586
+
6587
+
6588
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6589
+ Served asset /model_view.js - 304 Not Modified (0ms)
6590
+
6591
+
6592
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6593
+ Served asset /option_list.js - 304 Not Modified (0ms)
6594
+
6595
+
6596
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6597
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6598
+
6599
+
6600
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:15 +0530
6601
+ Served asset /application.js - 304 Not Modified (0ms)
6602
+
6603
+
6604
+ Started GET "/welcomes/1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6605
+ Processing by WelcomesController#show as HTML
6606
+ Parameters: {"id"=>"1"}
6607
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes" WHERE "welcomes"."id" = ? LIMIT 1 [["id", "1"]]
6608
+ Rendered welcomes/show.html.erb within layouts/application (0.5ms)
6609
+ Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.1ms)
6610
+
6611
+
6612
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6613
+ Served asset /application.css - 304 Not Modified (0ms)
6614
+
6615
+
6616
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6617
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6618
+
6619
+
6620
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6621
+ Served asset /my_style.css - 304 Not Modified (0ms)
6622
+
6623
+
6624
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6625
+ Served asset /model_view.css - 304 Not Modified (0ms)
6626
+
6627
+
6628
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6629
+ Served asset /option_list.css - 304 Not Modified (0ms)
6630
+
6631
+
6632
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6633
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6634
+
6635
+
6636
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6637
+ Served asset /jquery.js - 304 Not Modified (0ms)
6638
+
6639
+
6640
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6641
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6642
+
6643
+
6644
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6645
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6646
+
6647
+
6648
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6649
+ Served asset /model_view.js - 304 Not Modified (0ms)
6650
+
6651
+
6652
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6653
+ Served asset /option_list.js - 304 Not Modified (0ms)
6654
+
6655
+
6656
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6657
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6658
+
6659
+
6660
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-17 15:25:23 +0530
6661
+ Served asset /application.js - 304 Not Modified (0ms)
6662
+ Connecting to database specified by database.yml
6663
+
6664
+
6665
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:06:14 +0530
6666
+ Processing by WelcomesController#index as HTML
6667
+ Welcome Load (16.9ms) SELECT "welcomes".* FROM "welcomes" 
6668
+ Rendered welcomes/index.html.erb within layouts/application (18.3ms)
6669
+ Completed 200 OK in 270ms (Views: 214.8ms | ActiveRecord: 18.9ms)
6670
+
6671
+
6672
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6673
+ Served asset /model_alert.css - 200 OK (1ms)
6674
+
6675
+
6676
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6677
+ Served asset /option_list.css - 200 OK (1ms)
6678
+
6679
+
6680
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6681
+ Served asset /model_alert.js - 200 OK (2ms)
6682
+
6683
+
6684
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6685
+ Served asset /model_view.css - 200 OK (2ms)
6686
+
6687
+
6688
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6689
+ Served asset /suri_modal.css - 200 OK (8ms)
6690
+
6691
+
6692
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6693
+ Served asset /my_style.css - 200 OK (2ms)
6694
+
6695
+
6696
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6697
+ Served asset /application.css - 200 OK (12ms)
6698
+
6699
+
6700
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6701
+ Served asset /model_view.js - 200 OK (2ms)
6702
+
6703
+
6704
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6705
+ Served asset /option_list.js - 200 OK (2ms)
6706
+
6707
+
6708
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6709
+ Served asset /suri_modal.js - 200 OK (7ms)
6710
+
6711
+
6712
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6713
+ Served asset /jquery.js - 200 OK (5ms)
6714
+
6715
+
6716
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6717
+ Served asset /jquery_ujs.js - 200 OK (15ms)
6718
+
6719
+
6720
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:06:15 +0530
6721
+ Served asset /application.js - 200 OK (9ms)
6722
+
6723
+
6724
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:09:59 +0530
6725
+ Processing by WelcomesController#index as HTML
6726
+ Welcome Load (0.4ms) SELECT "welcomes".* FROM "welcomes"
6727
+ Rendered welcomes/index.html.erb within layouts/application (5.5ms)
6728
+ Compiled welcome.js (353ms) (pid 2798)
6729
+ Compiled application.js (384ms) (pid 2798)
6730
+ Completed 200 OK in 489ms (Views: 487.0ms | ActiveRecord: 0.4ms)
6731
+
6732
+
6733
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6734
+ Served asset /application.css - 304 Not Modified (0ms)
6735
+
6736
+
6737
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6738
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6739
+
6740
+
6741
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6742
+ Served asset /model_view.css - 304 Not Modified (0ms)
6743
+
6744
+
6745
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6746
+ Served asset /option_list.css - 304 Not Modified (0ms)
6747
+
6748
+
6749
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6750
+ Served asset /my_style.css - 304 Not Modified (0ms)
6751
+
6752
+
6753
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6754
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6755
+
6756
+
6757
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6758
+ Served asset /jquery.js - 304 Not Modified (0ms)
6759
+
6760
+
6761
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6762
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6763
+
6764
+
6765
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6766
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6767
+
6768
+
6769
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6770
+ Served asset /model_view.js - 304 Not Modified (0ms)
6771
+
6772
+
6773
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6774
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6775
+
6776
+
6777
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6778
+ Served asset /option_list.js - 304 Not Modified (0ms)
6779
+
6780
+
6781
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6782
+ Served asset /welcome.js - 200 OK (2ms)
6783
+
6784
+
6785
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:00 +0530
6786
+ Served asset /application.js - 304 Not Modified (11ms)
6787
+
6788
+
6789
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6790
+ Processing by WelcomesController#index as HTML
6791
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes" 
6792
+ Rendered welcomes/index.html.erb within layouts/application (13.0ms)
6793
+ Compiled welcome.js (104ms) (pid 2798)
6794
+ Compiled application.js (3ms) (pid 2798)
6795
+ Completed 200 OK in 150ms (Views: 148.9ms | ActiveRecord: 0.2ms)
6796
+
6797
+
6798
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6799
+ Served asset /application.css - 304 Not Modified (0ms)
6800
+
6801
+
6802
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6803
+ Served asset /model_view.css - 304 Not Modified (0ms)
6804
+
6805
+
6806
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6807
+ Served asset /option_list.css - 304 Not Modified (0ms)
6808
+
6809
+
6810
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6811
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6812
+
6813
+
6814
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6815
+ Served asset /my_style.css - 304 Not Modified (0ms)
6816
+
6817
+
6818
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6819
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6820
+
6821
+
6822
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6823
+ Served asset /jquery.js - 304 Not Modified (0ms)
6824
+
6825
+
6826
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6827
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6828
+
6829
+
6830
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6831
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6832
+
6833
+
6834
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6835
+ Served asset /model_view.js - 304 Not Modified (0ms)
6836
+
6837
+
6838
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6839
+ Served asset /option_list.js - 304 Not Modified (0ms)
6840
+
6841
+
6842
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6843
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6844
+
6845
+
6846
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6847
+ Served asset /welcome.js - 200 OK (1ms)
6848
+
6849
+
6850
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:10:48 +0530
6851
+ Served asset /application.js - 304 Not Modified (8ms)
6852
+
6853
+
6854
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6855
+ Processing by WelcomesController#index as HTML
6856
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes"
6857
+ Rendered welcomes/index.html.erb within layouts/application (1.0ms)
6858
+ Compiled welcome.js (79ms) (pid 2798)
6859
+ Compiled application.js (3ms) (pid 2798)
6860
+ Completed 200 OK in 133ms (Views: 131.5ms | ActiveRecord: 0.2ms)
6861
+
6862
+
6863
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6864
+ Served asset /application.css - 304 Not Modified (0ms)
6865
+
6866
+
6867
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6868
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6869
+
6870
+
6871
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6872
+ Served asset /model_view.css - 304 Not Modified (0ms)
6873
+
6874
+
6875
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6876
+ Served asset /option_list.css - 304 Not Modified (0ms)
6877
+
6878
+
6879
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6880
+ Served asset /my_style.css - 304 Not Modified (0ms)
6881
+
6882
+
6883
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6884
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6885
+
6886
+
6887
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6888
+ Served asset /jquery.js - 304 Not Modified (0ms)
6889
+
6890
+
6891
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6892
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6893
+
6894
+
6895
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6896
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6897
+
6898
+
6899
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6900
+ Served asset /option_list.js - 304 Not Modified (0ms)
6901
+
6902
+
6903
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6904
+ Served asset /model_view.js - 304 Not Modified (0ms)
6905
+
6906
+
6907
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6908
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6909
+
6910
+
6911
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6912
+ Served asset /welcome.js - 200 OK (1ms)
6913
+
6914
+
6915
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:11:52 +0530
6916
+ Served asset /application.js - 304 Not Modified (13ms)
6917
+
6918
+
6919
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:12:22 +0530
6920
+ Processing by WelcomesController#index as HTML
6921
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes" 
6922
+ Rendered welcomes/index.html.erb within layouts/application (1.3ms)
6923
+ Compiled welcome.js (86ms) (pid 2798)
6924
+ Compiled application.js (4ms) (pid 2798)
6925
+ Completed 200 OK in 152ms (Views: 151.6ms | ActiveRecord: 0.2ms)
6926
+
6927
+
6928
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6929
+ Served asset /model_view.css - 304 Not Modified (0ms)
6930
+
6931
+
6932
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6933
+ Served asset /my_style.css - 304 Not Modified (0ms)
6934
+
6935
+
6936
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6937
+ Served asset /application.css - 304 Not Modified (0ms)
6938
+
6939
+
6940
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6941
+ Served asset /option_list.css - 304 Not Modified (0ms)
6942
+
6943
+
6944
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6945
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6946
+
6947
+
6948
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6949
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
6950
+
6951
+
6952
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6953
+ Served asset /jquery.js - 304 Not Modified (0ms)
6954
+
6955
+
6956
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6957
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
6958
+
6959
+
6960
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6961
+ Served asset /model_alert.js - 304 Not Modified (0ms)
6962
+
6963
+
6964
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6965
+ Served asset /model_view.js - 304 Not Modified (0ms)
6966
+
6967
+
6968
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6969
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
6970
+
6971
+
6972
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6973
+ Served asset /option_list.js - 304 Not Modified (0ms)
6974
+
6975
+
6976
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6977
+ Served asset /welcome.js - 200 OK (2ms)
6978
+
6979
+
6980
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:23 +0530
6981
+ Served asset /application.js - 304 Not Modified (12ms)
6982
+
6983
+
6984
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
6985
+ Processing by WelcomesController#index as HTML
6986
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes"
6987
+ Rendered welcomes/index.html.erb within layouts/application (1.3ms)
6988
+ Compiled welcome.js (93ms) (pid 2798)
6989
+ Compiled application.js (3ms) (pid 2798)
6990
+ Completed 200 OK in 137ms (Views: 136.2ms | ActiveRecord: 0.2ms)
6991
+
6992
+
6993
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
6994
+ Served asset /application.css - 304 Not Modified (0ms)
6995
+
6996
+
6997
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
6998
+ Served asset /model_alert.css - 304 Not Modified (0ms)
6999
+
7000
+
7001
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
7002
+ Served asset /option_list.css - 304 Not Modified (0ms)
7003
+
7004
+
7005
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
7006
+ Served asset /my_style.css - 304 Not Modified (0ms)
7007
+
7008
+
7009
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
7010
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
7011
+
7012
+
7013
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
7014
+ Served asset /jquery.js - 304 Not Modified (0ms)
7015
+
7016
+
7017
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
7018
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
7019
+
7020
+
7021
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
7022
+ Served asset /model_alert.js - 304 Not Modified (0ms)
7023
+
7024
+
7025
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
7026
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
7027
+
7028
+
7029
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
7030
+ Served asset /option_list.js - 304 Not Modified (0ms)
7031
+
7032
+
7033
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
7034
+ Served asset /model_view.js - 304 Not Modified (0ms)
7035
+
7036
+
7037
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
7038
+ Served asset /welcome.js - 200 OK (2ms)
7039
+
7040
+
7041
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:12:53 +0530
7042
+ Served asset /application.js - 304 Not Modified (10ms)
7043
+
7044
+
7045
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7046
+ Processing by WelcomesController#index as HTML
7047
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes" 
7048
+ Rendered welcomes/index.html.erb within layouts/application (1.2ms)
7049
+ Compiled welcome.js (79ms) (pid 2798)
7050
+ Compiled application.js (4ms) (pid 2798)
7051
+ Completed 200 OK in 132ms (Views: 130.7ms | ActiveRecord: 0.2ms)
7052
+
7053
+
7054
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7055
+ Served asset /application.css - 304 Not Modified (0ms)
7056
+
7057
+
7058
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7059
+ Served asset /my_style.css - 304 Not Modified (0ms)
7060
+
7061
+
7062
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7063
+ Served asset /model_alert.css - 304 Not Modified (0ms)
7064
+
7065
+
7066
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7067
+ Served asset /model_view.css - 304 Not Modified (0ms)
7068
+
7069
+
7070
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7071
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
7072
+
7073
+
7074
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7075
+ Served asset /option_list.css - 304 Not Modified (0ms)
7076
+
7077
+
7078
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7079
+ Served asset /model_alert.js - 304 Not Modified (0ms)
7080
+
7081
+
7082
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7083
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
7084
+
7085
+
7086
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7087
+ Served asset /jquery.js - 304 Not Modified (0ms)
7088
+
7089
+
7090
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7091
+ Served asset /model_view.js - 304 Not Modified (0ms)
7092
+
7093
+
7094
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7095
+ Served asset /option_list.js - 304 Not Modified (0ms)
7096
+
7097
+
7098
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7099
+ Served asset /welcome.js - 200 OK (2ms)
7100
+
7101
+
7102
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7103
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
7104
+
7105
+
7106
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:13:58 +0530
7107
+ Served asset /application.js - 304 Not Modified (10ms)
7108
+
7109
+
7110
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7111
+ Processing by WelcomesController#index as HTML
7112
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes"
7113
+ Rendered welcomes/index.html.erb within layouts/application (1.0ms)
7114
+ Compiled model_view.js (0ms) (pid 2798)
7115
+ Compiled suri_modal.js (1ms) (pid 2798)
7116
+ Compiled application.js (3ms) (pid 2798)
7117
+ Completed 200 OK in 83ms (Views: 82.4ms | ActiveRecord: 0.2ms)
7118
+
7119
+
7120
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7121
+ Served asset /model_alert.css - 304 Not Modified (0ms)
7122
+
7123
+
7124
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7125
+ Served asset /model_view.css - 304 Not Modified (0ms)
7126
+
7127
+
7128
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7129
+ Served asset /application.css - 304 Not Modified (0ms)
7130
+
7131
+
7132
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7133
+ Served asset /my_style.css - 304 Not Modified (0ms)
7134
+
7135
+
7136
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7137
+ Served asset /jquery.js - 304 Not Modified (0ms)
7138
+
7139
+
7140
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7141
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
7142
+
7143
+
7144
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7145
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
7146
+
7147
+
7148
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7149
+ Served asset /model_alert.js - 304 Not Modified (0ms)
7150
+
7151
+
7152
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7153
+ Served asset /model_view.js - 200 OK (2ms)
7154
+
7155
+
7156
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7157
+ Served asset /option_list.js - 304 Not Modified (0ms)
7158
+
7159
+
7160
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7161
+ Served asset /suri_modal.js - 304 Not Modified (24ms)
7162
+
7163
+
7164
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7165
+ Served asset /welcome.js - 304 Not Modified (0ms)
7166
+
7167
+
7168
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:14:58 +0530
7169
+ Served asset /application.js - 304 Not Modified (7ms)
7170
+
7171
+
7172
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7173
+ Processing by WelcomesController#index as HTML
7174
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes" 
7175
+ Rendered welcomes/index.html.erb within layouts/application (1.1ms)
7176
+ Compiled model_view.js (0ms) (pid 2798)
7177
+ Compiled suri_modal.js (0ms) (pid 2798)
7178
+ Compiled application.js (2ms) (pid 2798)
7179
+ Completed 200 OK in 40ms (Views: 38.6ms | ActiveRecord: 0.2ms)
7180
+
7181
+
7182
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7183
+ Served asset /application.css - 304 Not Modified (0ms)
7184
+
7185
+
7186
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7187
+ Served asset /model_alert.css - 304 Not Modified (0ms)
7188
+
7189
+
7190
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7191
+ Served asset /my_style.css - 304 Not Modified (0ms)
7192
+
7193
+
7194
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7195
+ Served asset /option_list.css - 304 Not Modified (0ms)
7196
+
7197
+
7198
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7199
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
7200
+
7201
+
7202
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7203
+ Served asset /model_view.css - 304 Not Modified (0ms)
7204
+
7205
+
7206
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7207
+ Served asset /jquery.js - 304 Not Modified (0ms)
7208
+
7209
+
7210
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7211
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
7212
+
7213
+
7214
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7215
+ Served asset /model_alert.js - 304 Not Modified (0ms)
7216
+
7217
+
7218
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7219
+ Served asset /model_view.js - 200 OK (2ms)
7220
+
7221
+
7222
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7223
+ Served asset /option_list.js - 304 Not Modified (0ms)
7224
+
7225
+
7226
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7227
+ Served asset /suri_modal.js - 304 Not Modified (4ms)
7228
+
7229
+
7230
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7231
+ Served asset /welcome.js - 304 Not Modified (0ms)
7232
+
7233
+
7234
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:35 +0530
7235
+ Served asset /application.js - 304 Not Modified (8ms)
7236
+
7237
+
7238
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7239
+ Processing by WelcomesController#index as HTML
7240
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes"
7241
+ Rendered welcomes/index.html.erb within layouts/application (1.1ms)
7242
+ Compiled model_view.js (0ms) (pid 2798)
7243
+ Compiled suri_modal.js (0ms) (pid 2798)
7244
+ Compiled application.js (2ms) (pid 2798)
7245
+ Completed 200 OK in 53ms (Views: 52.3ms | ActiveRecord: 0.2ms)
7246
+
7247
+
7248
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7249
+ Served asset /my_style.css - 304 Not Modified (0ms)
7250
+
7251
+
7252
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7253
+ Served asset /model_alert.css - 304 Not Modified (0ms)
7254
+
7255
+
7256
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7257
+ Served asset /application.css - 304 Not Modified (0ms)
7258
+
7259
+
7260
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7261
+ Served asset /option_list.css - 304 Not Modified (0ms)
7262
+
7263
+
7264
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7265
+ Served asset /jquery.js - 304 Not Modified (0ms)
7266
+
7267
+
7268
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7269
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
7270
+
7271
+
7272
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7273
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
7274
+
7275
+
7276
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7277
+ Served asset /model_alert.js - 304 Not Modified (0ms)
7278
+
7279
+
7280
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7281
+ Served asset /option_list.js - 304 Not Modified (0ms)
7282
+
7283
+
7284
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7285
+ Served asset /model_view.js - 200 OK (2ms)
7286
+
7287
+
7288
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7289
+ Served asset /suri_modal.js - 304 Not Modified (4ms)
7290
+
7291
+
7292
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7293
+ Served asset /welcome.js - 304 Not Modified (0ms)
7294
+
7295
+
7296
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:19:47 +0530
7297
+ Served asset /application.js - 304 Not Modified (26ms)
7298
+
7299
+
7300
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7301
+ Processing by WelcomesController#index as HTML
7302
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes" 
7303
+ Rendered welcomes/index.html.erb within layouts/application (1.3ms)
7304
+ Compiled model_view.js (0ms) (pid 2798)
7305
+ Compiled suri_modal.js (1ms) (pid 2798)
7306
+ Compiled application.js (2ms) (pid 2798)
7307
+ Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.1ms)
7308
+
7309
+
7310
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7311
+ Served asset /model_alert.css - 304 Not Modified (0ms)
7312
+
7313
+
7314
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7315
+ Served asset /application.css - 304 Not Modified (0ms)
7316
+
7317
+
7318
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7319
+ Served asset /my_style.css - 304 Not Modified (0ms)
7320
+
7321
+
7322
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7323
+ Served asset /model_view.css - 304 Not Modified (0ms)
7324
+
7325
+
7326
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7327
+ Served asset /option_list.css - 304 Not Modified (0ms)
7328
+
7329
+
7330
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7331
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
7332
+
7333
+
7334
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7335
+ Served asset /jquery.js - 304 Not Modified (0ms)
7336
+
7337
+
7338
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7339
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
7340
+
7341
+
7342
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7343
+ Served asset /model_view.js - 200 OK (5ms)
7344
+
7345
+
7346
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7347
+ Served asset /model_alert.js - 304 Not Modified (0ms)
7348
+
7349
+
7350
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7351
+ Served asset /suri_modal.js - 304 Not Modified (6ms)
7352
+
7353
+
7354
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7355
+ Served asset /option_list.js - 304 Not Modified (0ms)
7356
+
7357
+
7358
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7359
+ Served asset /welcome.js - 304 Not Modified (0ms)
7360
+
7361
+
7362
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:24:53 +0530
7363
+ Served asset /application.js - 304 Not Modified (28ms)
7364
+
7365
+
7366
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:25:00 +0530
7367
+ Processing by WelcomesController#index as HTML
7368
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes"
7369
+ Rendered welcomes/index.html.erb within layouts/application (1.0ms)
7370
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.1ms)
7371
+
7372
+
7373
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:25:00 +0530
7374
+ Served asset /application.css - 304 Not Modified (0ms)
7375
+
7376
+
7377
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:25:00 +0530
7378
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
7379
+
7380
+
7381
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:00 +0530
7382
+ Served asset /jquery.js - 304 Not Modified (0ms)
7383
+
7384
+
7385
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:25:00 +0530
7386
+ Served asset /model_alert.css - 304 Not Modified (0ms)
7387
+
7388
+
7389
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:25:00 +0530
7390
+ Served asset /my_style.css - 304 Not Modified (0ms)
7391
+
7392
+
7393
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-19 21:25:00 +0530
7394
+ Served asset /model_view.css - 304 Not Modified (0ms)
7395
+
7396
+
7397
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:00 +0530
7398
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
7399
+
7400
+
7401
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:01 +0530
7402
+ Served asset /model_alert.js - 304 Not Modified (0ms)
7403
+
7404
+
7405
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:01 +0530
7406
+ Served asset /model_view.js - 304 Not Modified (0ms)
7407
+
7408
+
7409
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:01 +0530
7410
+ Served asset /option_list.js - 304 Not Modified (0ms)
7411
+
7412
+
7413
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:01 +0530
7414
+ Served asset /suri_modal.js - 304 Not Modified (0ms)
7415
+
7416
+
7417
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:01 +0530
7418
+ Served asset /welcome.js - 304 Not Modified (0ms)
7419
+
7420
+
7421
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:01 +0530
7422
+ Served asset /application.js - 304 Not Modified (0ms)
7423
+
7424
+
7425
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:25:56 +0530
7426
+ Processing by WelcomesController#index as HTML
7427
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes" 
7428
+ Rendered welcomes/index.html.erb within layouts/application (1.2ms)
7429
+ Compiled model_view.js (0ms) (pid 2798)
7430
+ Compiled suri_modal.js (1ms) (pid 2798)
7431
+ Compiled application.js (3ms) (pid 2798)
7432
+ Completed 200 OK in 34ms (Views: 33.0ms | ActiveRecord: 0.2ms)
7433
+
7434
+
7435
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:25:56 +0530
7436
+ Served asset /model_alert.css - 304 Not Modified (0ms)
7437
+
7438
+
7439
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:25:56 +0530
7440
+ Served asset /application.css - 304 Not Modified (0ms)
7441
+
7442
+
7443
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:25:57 +0530
7444
+ Served asset /my_style.css - 304 Not Modified (0ms)
7445
+
7446
+
7447
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:25:57 +0530
7448
+ Served asset /option_list.css - 304 Not Modified (0ms)
7449
+
7450
+
7451
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:25:57 +0530
7452
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
7453
+
7454
+
7455
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:57 +0530
7456
+ Served asset /jquery.js - 304 Not Modified (0ms)
7457
+
7458
+
7459
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:57 +0530
7460
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
7461
+
7462
+
7463
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:57 +0530
7464
+ Served asset /model_alert.js - 304 Not Modified (0ms)
7465
+
7466
+
7467
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:57 +0530
7468
+ Served asset /model_view.js - 200 OK (2ms)
7469
+
7470
+
7471
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:57 +0530
7472
+ Served asset /option_list.js - 304 Not Modified (0ms)
7473
+
7474
+
7475
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:57 +0530
7476
+ Served asset /suri_modal.js - 304 Not Modified (4ms)
7477
+
7478
+
7479
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:57 +0530
7480
+ Served asset /welcome.js - 304 Not Modified (0ms)
7481
+
7482
+
7483
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:25:57 +0530
7484
+ Served asset /application.js - 304 Not Modified (11ms)
7485
+
7486
+
7487
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7488
+ Processing by WelcomesController#index as HTML
7489
+ Welcome Load (0.1ms) SELECT "welcomes".* FROM "welcomes"
7490
+ Rendered welcomes/index.html.erb within layouts/application (1.1ms)
7491
+ Compiled model_view.js (0ms) (pid 2798)
7492
+ Compiled suri_modal.js (1ms) (pid 2798)
7493
+ Compiled application.js (3ms) (pid 2798)
7494
+ Completed 200 OK in 44ms (Views: 43.4ms | ActiveRecord: 0.1ms)
7495
+
7496
+
7497
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7498
+ Served asset /application.css - 304 Not Modified (0ms)
7499
+
7500
+
7501
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7502
+ Served asset /model_alert.css - 304 Not Modified (0ms)
7503
+
7504
+
7505
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7506
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
7507
+
7508
+
7509
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7510
+ Served asset /my_style.css - 304 Not Modified (0ms)
7511
+
7512
+
7513
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7514
+ Served asset /option_list.css - 304 Not Modified (0ms)
7515
+
7516
+
7517
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7518
+ Served asset /jquery.js - 304 Not Modified (0ms)
7519
+
7520
+
7521
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7522
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
7523
+
7524
+
7525
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7526
+ Served asset /model_alert.js - 304 Not Modified (0ms)
7527
+
7528
+
7529
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7530
+ Served asset /model_view.js - 200 OK (3ms)
7531
+
7532
+
7533
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7534
+ Served asset /option_list.js - 304 Not Modified (0ms)
7535
+
7536
+
7537
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7538
+ Served asset /suri_modal.js - 304 Not Modified (4ms)
7539
+
7540
+
7541
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7542
+ Served asset /application.js - 304 Not Modified (9ms)
7543
+
7544
+
7545
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:26:45 +0530
7546
+ Served asset /welcome.js - 304 Not Modified (0ms)
7547
+
7548
+
7549
+ Started GET "/" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7550
+ Processing by WelcomesController#index as HTML
7551
+ Welcome Load (0.2ms) SELECT "welcomes".* FROM "welcomes" 
7552
+ Rendered welcomes/index.html.erb within layouts/application (1.3ms)
7553
+ Compiled model_view.js (0ms) (pid 2798)
7554
+ Compiled suri_modal.js (1ms) (pid 2798)
7555
+ Compiled application.js (3ms) (pid 2798)
7556
+ Completed 200 OK in 45ms (Views: 43.7ms | ActiveRecord: 0.2ms)
7557
+
7558
+
7559
+ Started GET "/assets/model_alert.css?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7560
+ Served asset /model_alert.css - 304 Not Modified (0ms)
7561
+
7562
+
7563
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7564
+ Served asset /application.css - 304 Not Modified (0ms)
7565
+
7566
+
7567
+ Started GET "/assets/my_style.css?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7568
+ Served asset /my_style.css - 304 Not Modified (0ms)
7569
+
7570
+
7571
+ Started GET "/assets/model_view.css?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7572
+ Served asset /model_view.css - 304 Not Modified (0ms)
7573
+
7574
+
7575
+ Started GET "/assets/option_list.css?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7576
+ Served asset /option_list.css - 304 Not Modified (0ms)
7577
+
7578
+
7579
+ Started GET "/assets/suri_modal.css?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7580
+ Served asset /suri_modal.css - 304 Not Modified (0ms)
7581
+
7582
+
7583
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7584
+ Served asset /jquery.js - 304 Not Modified (0ms)
7585
+
7586
+
7587
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7588
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
7589
+
7590
+
7591
+ Started GET "/assets/model_alert.js?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7592
+ Served asset /model_alert.js - 304 Not Modified (0ms)
7593
+
7594
+
7595
+ Started GET "/assets/model_view.js?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7596
+ Served asset /model_view.js - 200 OK (2ms)
7597
+
7598
+
7599
+ Started GET "/assets/option_list.js?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7600
+ Served asset /option_list.js - 304 Not Modified (0ms)
7601
+
7602
+
7603
+ Started GET "/assets/suri_modal.js?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7604
+ Served asset /suri_modal.js - 304 Not Modified (3ms)
7605
+
7606
+
7607
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7608
+ Served asset /welcome.js - 304 Not Modified (0ms)
7609
+
7610
+
7611
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 21:27:10 +0530
7612
+ Served asset /application.js - 304 Not Modified (6ms)