routesjs-rails 0.0.3 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +86 -9
- data/lib/generators/routes_js/module/module_generator.rb +36 -0
- data/lib/routesjs-rails.rb +1 -1
- data/lib/routesjs/rails/version.rb +1 -1
- data/lib/routesjs/routes.rb +7 -2
- data/lib/routesjs/routing/route.rb +39 -0
- data/test/dummy/config/application.rb +3 -2
- data/test/dummy/config/environments/development.rb +1 -1
- data/test/dummy/config/environments/production.rb +1 -1
- data/test/dummy/config/environments/test.rb +1 -1
- data/test/dummy/config/routes.rb +1 -1
- data/test/dummy/log/development.log +2269 -0
- data/test/dummy/log/test.log +2384 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1ef842e27a58c8d5c6c766a808769124 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2df1d6547949be98cd48ede842b34de8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3e71ddc988273b8745f0699a893f6fae +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5c5fe53e623b63ead476521957eb59ad +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7515bb9ad36eda8e3aac73de7b584b3c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7cfb78f56f62208e304eaee5a4687ff5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8e3d112db39b8bcf2303854a25c999b9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/96832d64502eeedb77b21df1afce651e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/96a60c4d6d1a4f2e334ce111b9b15a44 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ae24e9c0cdbfb9ec06caa64916150789 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bf36f67f2b6fbdcfe8d00c090481e768 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fbe3b083eab395ea58275e685320100c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/1ef842e27a58c8d5c6c766a808769124 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2df1d6547949be98cd48ede842b34de8 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5c5fe53e623b63ead476521957eb59ad +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/7515bb9ad36eda8e3aac73de7b584b3c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/7cfb78f56f62208e304eaee5a4687ff5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/96a60c4d6d1a4f2e334ce111b9b15a44 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ae24e9c0cdbfb9ec06caa64916150789 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/bf36f67f2b6fbdcfe8d00c090481e768 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/fbe3b083eab395ea58275e685320100c +0 -0
- data/test/generators/routes_js/module_generator_test.rb +35 -0
- data/test/generators/tmp/app/assets/javascripts/routesjs.js +75 -0
- data/test/javascripts/routesjs-rails_spec.js +74 -0
- data/test/javascripts/spec_helper.js +4 -0
- data/test/routesjs/routing/route_test.rb +62 -0
- data/test/test_helper.rb +7 -0
- data/vendor/assets/javascripts/routesjs-rails.js.erb +11 -2
- metadata +55 -17
- data/lib/routesjs/formatter.rb +0 -56
- data/lib/tasks/routesjs_tasks.rake +0 -9
- data/test/dummy/config/database.yml +0 -25
- data/test/javascripts/routesjs-rails_spec.coffee +0 -50
- data/test/javascripts/spec_helper.coffee +0 -31
- data/test/routesjs/formatter_test.rb +0 -65
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6ef30e7bbe93fd501dbcc0e613eb3278e8ab0e5
|
4
|
+
data.tar.gz: 5af5c49df356a3721b6e69c0db376f591bf0babc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef79f53e4bdf5b720a399411cdf75912c8fcb303db1c3e11238613518f2e062a3916f2a1c9778ff7b7e9a14ba2591fa05b94254a8f07fe96f55277947e9250bc
|
7
|
+
data.tar.gz: 0f4229e3c8fe46f5ccbfbbe5b70e2fb5e8d6111a4e4e7dedcb1b767e040b9b0d1e05b9847d3aed1c27c080aa43374bfb73a117478eec3cb57df906cb7bc11bdb
|
data/README.md
CHANGED
@@ -1,21 +1,98 @@
|
|
1
1
|
# routesjs-rails
|
2
2
|
|
3
|
-
[![Build
|
4
|
-
|
3
|
+
[![Build Status](https://travis-ci.org/pseudomuto/routesjs-rails.svg?branch=master)](https://travis-ci.org/pseudomuto/routesjs-rails)
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/routesjs-rails.svg)](https://rubygems.org/gems/routesjs-rails)
|
5
|
+
[![Code Climate](https://codeclimate.com/github/pseudomuto/routesjs-rails/badges/gpa.svg)](https://codeclimate.com/github/pseudomuto/routesjs-rails)
|
5
6
|
|
6
7
|
Make your Rails routes available in JS!
|
7
8
|
|
8
9
|
# Installation
|
9
10
|
|
10
|
-
Just add `gem routesjs-rails` to your _Gemfile_ and run `bundle install`
|
11
|
+
* Just add `gem routesjs-rails` to your _Gemfile_ and run `bundle install`
|
12
|
+
* Add `//= require routesjs-rails` to your _application.js_ file.
|
11
13
|
|
12
|
-
#
|
14
|
+
# Usage
|
13
15
|
|
14
|
-
|
16
|
+
Requiring `routesjs-rails` will make a global object available called `Routes`. This object
|
17
|
+
will have two methods for every _named_ route in config/routes.rb; the path method and the url
|
18
|
+
method.
|
15
19
|
|
16
|
-
|
20
|
+
The _path_ version of the method will return the absolute path to the resource, while the _url_
|
21
|
+
version will return the full (including protocol, hostname, port, etc) URL to the resource.
|
17
22
|
|
18
|
-
|
19
|
-
|
23
|
+
```
|
24
|
+
// e.g.
|
25
|
+
Routes.userPath(1);
|
26
|
+
Routes.rootUrl();
|
27
|
+
```
|
20
28
|
|
21
|
-
|
29
|
+
Suppose we have the following in _config/routes.rb_:
|
30
|
+
|
31
|
+
```
|
32
|
+
Rails.application.routes.draw do
|
33
|
+
root: "home#index"
|
34
|
+
get "/google", to: redirect("https://www.google.com/"), as: :google
|
35
|
+
|
36
|
+
namespace :api do
|
37
|
+
root "api#index"
|
38
|
+
resources :users, only: [:index, :show]
|
39
|
+
end
|
40
|
+
end
|
41
|
+
```
|
42
|
+
|
43
|
+
We would end up with the following routes being defined:
|
44
|
+
|
45
|
+
```
|
46
|
+
{
|
47
|
+
"root": "/",
|
48
|
+
"google": "https://www.google.com/",
|
49
|
+
"apiRoot": "/api",
|
50
|
+
"apiUsers": "/api/users",
|
51
|
+
"apiUser": "/api/users/:id"
|
52
|
+
}
|
53
|
+
```
|
54
|
+
|
55
|
+
This object will be passed to the Route object's initialization function, which will make the following
|
56
|
+
methods available (assuming you're running your site at `http://www.example.com/`):
|
57
|
+
|
58
|
+
Method | Result
|
59
|
+
------ | ------
|
60
|
+
`Routes.rootPath()` | `/`
|
61
|
+
`Routes.rootUrl()` | `http://www.example.com/`
|
62
|
+
`Routes.googlePath()` | `https://www.google.com/`
|
63
|
+
`Routes.googleUrl()` | `https://www.google.com/`
|
64
|
+
`Routes.apiRootPath()` | `/api`
|
65
|
+
`Routes.apiRootUrl()` | `http://www.example.com/api`
|
66
|
+
`Routes.apiUsersPath()` | `/api/users`
|
67
|
+
`Routes.apiUsersUrl()` | `http://www.example.com/api/users`
|
68
|
+
`Routes.apiUserPath()` | `/api/users/:id`
|
69
|
+
`Routes.apiUserUrl()` | `http://www.example.com/api/users/:id`
|
70
|
+
|
71
|
+
For routes with parameters, you can pass the as simple arguments to the method or as an object that
|
72
|
+
responds to the parameter name (see `apiUsersPath` above for an example).
|
73
|
+
|
74
|
+
## Route Parameters
|
75
|
+
|
76
|
+
Parameters can be passed to a route using arguments to the path/url method. There are two ways to do
|
77
|
+
this, using argument values in the order they're supplied, or by passing an object that responds to
|
78
|
+
each route parameter name.
|
79
|
+
|
80
|
+
```
|
81
|
+
// route in rails: /users/:id/roles/:role_id
|
82
|
+
Routes.userRolePath(1, 2); // returns /users/1/roles/2
|
83
|
+
Routes.userRolePath({ id: 1, role_id: 2 }); // also returns /users/1/roles/2
|
84
|
+
```
|
85
|
+
|
86
|
+
# Using as a CommonJS Module
|
87
|
+
|
88
|
+
If you'd like to use your routes in a CommonJS module, you'll need to generate the module file by
|
89
|
+
running the following (`-o` parameter is optional):
|
90
|
+
|
91
|
+
```
|
92
|
+
rails g routes_js:module [-o <full_path>]
|
93
|
+
```
|
94
|
+
|
95
|
+
By default, this will generate a JS module at _app/assets/javascripts/routejs.js_. If you've
|
96
|
+
specified the `-o` option, the file will be placed where you specified.
|
97
|
+
|
98
|
+
Now you can use your module by requiring it: `var Routes = require("routesjs")`
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require "rails/generators"
|
2
|
+
|
3
|
+
module RoutesJs
|
4
|
+
module Generators
|
5
|
+
class ModuleGenerator < ::Rails::Generators::Base
|
6
|
+
desc "Generates a CommonJS module based on the current Rails routes"
|
7
|
+
source_root File.expand_path("../", __FILE__)
|
8
|
+
|
9
|
+
class_option :output_file,
|
10
|
+
type: :string,
|
11
|
+
aliases: "-o",
|
12
|
+
default: "app/assets/javascripts/routesjs.js"
|
13
|
+
|
14
|
+
def generate_routes_module
|
15
|
+
js_module = rails_application.assets["routesjs-rails"].to_s
|
16
|
+
create_file(options[:output_file], js_module)
|
17
|
+
end
|
18
|
+
|
19
|
+
def show_post_install
|
20
|
+
readme_message if behavior == :invoke
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
|
25
|
+
def rails_application
|
26
|
+
Rails.application
|
27
|
+
end
|
28
|
+
|
29
|
+
def readme_message
|
30
|
+
log "+============================================================================+"
|
31
|
+
log "RoutesJS module was successfully generated. You can find it at:"
|
32
|
+
log options[:output_file]
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
data/lib/routesjs-rails.rb
CHANGED
data/lib/routesjs/routes.rb
CHANGED
@@ -2,8 +2,13 @@ module RoutesJS
|
|
2
2
|
class Routes
|
3
3
|
def self.as_json(routes = nil)
|
4
4
|
routes ||= ::Rails.application.routes.routes
|
5
|
-
|
6
|
-
|
5
|
+
js_routes = routes.inject({}) do |result, route|
|
6
|
+
derived_route = RoutesJS::Routing::Route.new(route)
|
7
|
+
result[derived_route.name] = derived_route.url if derived_route.valid?
|
8
|
+
result
|
9
|
+
end
|
10
|
+
|
11
|
+
js_routes.to_json
|
7
12
|
end
|
8
13
|
end
|
9
14
|
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
module RoutesJS
|
2
|
+
module Routing
|
3
|
+
class Route
|
4
|
+
attr_reader :name, :url
|
5
|
+
|
6
|
+
def initialize(rails_route)
|
7
|
+
@name = generate_name(rails_route)
|
8
|
+
@url = generate_url(rails_route)
|
9
|
+
end
|
10
|
+
|
11
|
+
def valid?
|
12
|
+
!(name.blank? || /^rails/.match(name))
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def generate_name(route)
|
18
|
+
route.name.try(:camelize, :lower)
|
19
|
+
end
|
20
|
+
|
21
|
+
def generate_url(route)
|
22
|
+
return redirect_url(route) if redirect?(route)
|
23
|
+
route.path.spec.to_s.sub(/\(\.:format\)\z/, "")
|
24
|
+
end
|
25
|
+
|
26
|
+
def redirect_url(route)
|
27
|
+
if route.app.block.is_a?(String)
|
28
|
+
route.app.block
|
29
|
+
else
|
30
|
+
route.app.block.call([], nil)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def redirect?(route)
|
35
|
+
route.app.respond_to?(:block)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -1,9 +1,10 @@
|
|
1
1
|
require File.expand_path('../boot', __FILE__)
|
2
2
|
|
3
|
-
|
3
|
+
%w(action_controller rails/test_unit sprockets).each do |framework|
|
4
|
+
require "#{framework}/railtie"
|
5
|
+
end
|
4
6
|
|
5
7
|
Bundler.require(*Rails.groups)
|
6
|
-
require "routesjs-rails"
|
7
8
|
|
8
9
|
module Dummy
|
9
10
|
class Application < Rails::Application
|
data/test/dummy/config/routes.rb
CHANGED
@@ -4620,3 +4620,2272 @@ close: 127.0.0.1:52571
|
|
4620
4620
|
close: 127.0.0.1:52574
|
4621
4621
|
going to shutdown ...
|
4622
4622
|
WEBrick::HTTPServer#start done.
|
4623
|
+
WEBrick 1.3.1
|
4624
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
4625
|
+
Rack::Handler::WEBrick is mounted on /.
|
4626
|
+
WEBrick::HTTPServer#start: pid=3260 port=34463
|
4627
|
+
accept: 127.0.0.1:54036
|
4628
|
+
close: 127.0.0.1:54036
|
4629
|
+
accept: 127.0.0.1:54037
|
4630
|
+
Rack::Handler::WEBrick is invoked.
|
4631
|
+
|
4632
|
+
|
4633
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 16:07:15 +0000
|
4634
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
4635
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
4636
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (7.0ms)
|
4637
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (44.7ms)
|
4638
|
+
Completed 500 Internal Server Error in 49ms
|
4639
|
+
close: 127.0.0.1:54037
|
4640
|
+
going to shutdown ...
|
4641
|
+
WEBrick::HTTPServer#start done.
|
4642
|
+
WEBrick 1.3.1
|
4643
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
4644
|
+
Rack::Handler::WEBrick is mounted on /.
|
4645
|
+
WEBrick::HTTPServer#start: pid=3318 port=46610
|
4646
|
+
accept: 127.0.0.1:58851
|
4647
|
+
close: 127.0.0.1:58851
|
4648
|
+
accept: 127.0.0.1:58852
|
4649
|
+
Rack::Handler::WEBrick is invoked.
|
4650
|
+
|
4651
|
+
|
4652
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 16:08:46 +0000
|
4653
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
4654
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
4655
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (10.8ms)
|
4656
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (39.8ms)
|
4657
|
+
Completed 500 Internal Server Error in 44ms
|
4658
|
+
going to shutdown ...
|
4659
|
+
close: 127.0.0.1:58852
|
4660
|
+
WEBrick::HTTPServer#start done.
|
4661
|
+
WEBrick 1.3.1
|
4662
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
4663
|
+
Rack::Handler::WEBrick is mounted on /.
|
4664
|
+
WEBrick::HTTPServer#start: pid=3377 port=33902
|
4665
|
+
accept: 127.0.0.1:60613
|
4666
|
+
close: 127.0.0.1:60613
|
4667
|
+
accept: 127.0.0.1:60614
|
4668
|
+
Rack::Handler::WEBrick is invoked.
|
4669
|
+
|
4670
|
+
|
4671
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 16:12:44 +0000
|
4672
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
4673
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
4674
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (72.6ms)
|
4675
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
4676
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (104.0ms)
|
4677
|
+
Completed 200 OK in 108ms (Views: 107.7ms)
|
4678
|
+
Rack::Handler::WEBrick is invoked.
|
4679
|
+
|
4680
|
+
|
4681
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 16:12:45 +0000
|
4682
|
+
accept: 127.0.0.1:60616
|
4683
|
+
accept: 127.0.0.1:60617
|
4684
|
+
accept: 127.0.0.1:60615
|
4685
|
+
accept: 127.0.0.1:60619
|
4686
|
+
accept: 127.0.0.1:60618
|
4687
|
+
Rack::Handler::WEBrick is invoked.
|
4688
|
+
|
4689
|
+
|
4690
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 16:12:45 +0000
|
4691
|
+
Rack::Handler::WEBrick is invoked.
|
4692
|
+
Rack::Handler::WEBrick is invoked.
|
4693
|
+
Rack::Handler::WEBrick is invoked.
|
4694
|
+
|
4695
|
+
|
4696
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 16:12:45 +0000
|
4697
|
+
Rack::Handler::WEBrick is invoked.
|
4698
|
+
|
4699
|
+
|
4700
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 16:12:45 +0000
|
4701
|
+
Rack::Handler::WEBrick is invoked.
|
4702
|
+
|
4703
|
+
|
4704
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 16:12:45 +0000
|
4705
|
+
|
4706
|
+
|
4707
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 16:12:45 +0000
|
4708
|
+
|
4709
|
+
|
4710
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 16:12:45 +0000
|
4711
|
+
close: 127.0.0.1:60614
|
4712
|
+
close: 127.0.0.1:60615
|
4713
|
+
close: 127.0.0.1:60618
|
4714
|
+
close: 127.0.0.1:60616
|
4715
|
+
close: 127.0.0.1:60617
|
4716
|
+
close: 127.0.0.1:60619
|
4717
|
+
going to shutdown ...
|
4718
|
+
WEBrick::HTTPServer#start done.
|
4719
|
+
WEBrick 1.3.1
|
4720
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
4721
|
+
Rack::Handler::WEBrick is mounted on /.
|
4722
|
+
WEBrick::HTTPServer#start: pid=3910 port=54633
|
4723
|
+
accept: 127.0.0.1:50427
|
4724
|
+
close: 127.0.0.1:50427
|
4725
|
+
accept: 127.0.0.1:50428
|
4726
|
+
Rack::Handler::WEBrick is invoked.
|
4727
|
+
|
4728
|
+
|
4729
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 16:26:40 +0000
|
4730
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
4731
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
4732
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (80.2ms)
|
4733
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
4734
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (116.7ms)
|
4735
|
+
Completed 200 OK in 122ms (Views: 121.8ms)
|
4736
|
+
accept: 127.0.0.1:50430
|
4737
|
+
Rack::Handler::WEBrick is invoked.
|
4738
|
+
|
4739
|
+
|
4740
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 16:26:40 +0000
|
4741
|
+
accept: 127.0.0.1:50429
|
4742
|
+
Rack::Handler::WEBrick is invoked.
|
4743
|
+
|
4744
|
+
|
4745
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 16:26:40 +0000
|
4746
|
+
Rack::Handler::WEBrick is invoked.
|
4747
|
+
accept: 127.0.0.1:50432
|
4748
|
+
accept: 127.0.0.1:50431
|
4749
|
+
|
4750
|
+
|
4751
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 16:26:40 +0000
|
4752
|
+
Rack::Handler::WEBrick is invoked.
|
4753
|
+
|
4754
|
+
|
4755
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 16:26:40 +0000
|
4756
|
+
Rack::Handler::WEBrick is invoked.
|
4757
|
+
|
4758
|
+
|
4759
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 16:26:40 +0000
|
4760
|
+
Rack::Handler::WEBrick is invoked.
|
4761
|
+
accept: 127.0.0.1:50433
|
4762
|
+
Rack::Handler::WEBrick is invoked.
|
4763
|
+
|
4764
|
+
|
4765
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 16:26:40 +0000
|
4766
|
+
|
4767
|
+
|
4768
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 16:26:40 +0000
|
4769
|
+
close: 127.0.0.1:50428
|
4770
|
+
close: 127.0.0.1:50429
|
4771
|
+
close: 127.0.0.1:50430
|
4772
|
+
close: 127.0.0.1:50432
|
4773
|
+
close: 127.0.0.1:50433
|
4774
|
+
close: 127.0.0.1:50431
|
4775
|
+
going to shutdown ...
|
4776
|
+
WEBrick::HTTPServer#start done.
|
4777
|
+
WEBrick 1.3.1
|
4778
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
4779
|
+
Rack::Handler::WEBrick is mounted on /.
|
4780
|
+
WEBrick::HTTPServer#start: pid=3955 port=45954
|
4781
|
+
accept: 127.0.0.1:41923
|
4782
|
+
close: 127.0.0.1:41923
|
4783
|
+
accept: 127.0.0.1:41924
|
4784
|
+
Rack::Handler::WEBrick is invoked.
|
4785
|
+
|
4786
|
+
|
4787
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 16:27:01 +0000
|
4788
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
4789
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
4790
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (61.0ms)
|
4791
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
4792
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (92.9ms)
|
4793
|
+
Completed 200 OK in 97ms (Views: 97.0ms)
|
4794
|
+
accept: 127.0.0.1:41925
|
4795
|
+
accept: 127.0.0.1:41926
|
4796
|
+
Rack::Handler::WEBrick is invoked.
|
4797
|
+
|
4798
|
+
|
4799
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:01 +0000
|
4800
|
+
Rack::Handler::WEBrick is invoked.
|
4801
|
+
|
4802
|
+
|
4803
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:01 +0000
|
4804
|
+
Rack::Handler::WEBrick is invoked.
|
4805
|
+
Rack::Handler::WEBrick is invoked.
|
4806
|
+
accept: 127.0.0.1:41927
|
4807
|
+
|
4808
|
+
|
4809
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 16:27:01 +0000
|
4810
|
+
accept: 127.0.0.1:41928
|
4811
|
+
Rack::Handler::WEBrick is invoked.
|
4812
|
+
|
4813
|
+
|
4814
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:01 +0000
|
4815
|
+
Rack::Handler::WEBrick is invoked.
|
4816
|
+
|
4817
|
+
|
4818
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:01 +0000
|
4819
|
+
|
4820
|
+
|
4821
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:01 +0000
|
4822
|
+
accept: 127.0.0.1:41929
|
4823
|
+
Rack::Handler::WEBrick is invoked.
|
4824
|
+
|
4825
|
+
|
4826
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:01 +0000
|
4827
|
+
close: 127.0.0.1:41924
|
4828
|
+
close: 127.0.0.1:41927
|
4829
|
+
close: 127.0.0.1:41929
|
4830
|
+
close: 127.0.0.1:41925
|
4831
|
+
close: 127.0.0.1:41926
|
4832
|
+
close: 127.0.0.1:41928
|
4833
|
+
going to shutdown ...
|
4834
|
+
WEBrick::HTTPServer#start done.
|
4835
|
+
WEBrick 1.3.1
|
4836
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
4837
|
+
Rack::Handler::WEBrick is mounted on /.
|
4838
|
+
WEBrick::HTTPServer#start: pid=4000 port=36483
|
4839
|
+
accept: 127.0.0.1:53969
|
4840
|
+
close: 127.0.0.1:53969
|
4841
|
+
accept: 127.0.0.1:53970
|
4842
|
+
Rack::Handler::WEBrick is invoked.
|
4843
|
+
|
4844
|
+
|
4845
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 16:27:14 +0000
|
4846
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
4847
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
4848
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (72.6ms)
|
4849
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
4850
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (103.5ms)
|
4851
|
+
Completed 200 OK in 108ms (Views: 107.4ms)
|
4852
|
+
accept: 127.0.0.1:53971
|
4853
|
+
accept: 127.0.0.1:53972
|
4854
|
+
accept: 127.0.0.1:53973
|
4855
|
+
Rack::Handler::WEBrick is invoked.
|
4856
|
+
|
4857
|
+
|
4858
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:14 +0000
|
4859
|
+
accept: 127.0.0.1:53975
|
4860
|
+
accept: 127.0.0.1:53974
|
4861
|
+
Rack::Handler::WEBrick is invoked.
|
4862
|
+
Rack::Handler::WEBrick is invoked.
|
4863
|
+
Rack::Handler::WEBrick is invoked.
|
4864
|
+
Rack::Handler::WEBrick is invoked.
|
4865
|
+
|
4866
|
+
|
4867
|
+
Rack::Handler::WEBrick is invoked.
|
4868
|
+
Rack::Handler::WEBrick is invoked.
|
4869
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:14 +0000
|
4870
|
+
|
4871
|
+
|
4872
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:14 +0000
|
4873
|
+
|
4874
|
+
|
4875
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:14 +0000
|
4876
|
+
|
4877
|
+
|
4878
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 16:27:14 +0000
|
4879
|
+
|
4880
|
+
|
4881
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:14 +0000
|
4882
|
+
|
4883
|
+
|
4884
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:14 +0000
|
4885
|
+
close: 127.0.0.1:53972
|
4886
|
+
close: 127.0.0.1:53974
|
4887
|
+
close: 127.0.0.1:53970
|
4888
|
+
close: 127.0.0.1:53971
|
4889
|
+
close: 127.0.0.1:53975
|
4890
|
+
close: 127.0.0.1:53973
|
4891
|
+
going to shutdown ...
|
4892
|
+
WEBrick::HTTPServer#start done.
|
4893
|
+
WEBrick 1.3.1
|
4894
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
4895
|
+
Rack::Handler::WEBrick is mounted on /.
|
4896
|
+
WEBrick::HTTPServer#start: pid=4045 port=38646
|
4897
|
+
accept: 127.0.0.1:51728
|
4898
|
+
close: 127.0.0.1:51728
|
4899
|
+
accept: 127.0.0.1:51729
|
4900
|
+
Rack::Handler::WEBrick is invoked.
|
4901
|
+
|
4902
|
+
|
4903
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 16:27:24 +0000
|
4904
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
4905
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
4906
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (64.1ms)
|
4907
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
4908
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (94.8ms)
|
4909
|
+
Completed 200 OK in 99ms (Views: 98.9ms)
|
4910
|
+
Rack::Handler::WEBrick is invoked.
|
4911
|
+
|
4912
|
+
|
4913
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 16:27:24 +0000
|
4914
|
+
accept: 127.0.0.1:51731
|
4915
|
+
accept: 127.0.0.1:51734
|
4916
|
+
accept: 127.0.0.1:51733
|
4917
|
+
Rack::Handler::WEBrick is invoked.
|
4918
|
+
|
4919
|
+
|
4920
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:24 +0000
|
4921
|
+
Rack::Handler::WEBrick is invoked.
|
4922
|
+
|
4923
|
+
|
4924
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:24 +0000
|
4925
|
+
Rack::Handler::WEBrick is invoked.
|
4926
|
+
|
4927
|
+
|
4928
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:24 +0000
|
4929
|
+
accept: 127.0.0.1:51732
|
4930
|
+
Rack::Handler::WEBrick is invoked.
|
4931
|
+
|
4932
|
+
|
4933
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:24 +0000
|
4934
|
+
Rack::Handler::WEBrick is invoked.
|
4935
|
+
accept: 127.0.0.1:51730
|
4936
|
+
Rack::Handler::WEBrick is invoked.
|
4937
|
+
|
4938
|
+
|
4939
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:24 +0000
|
4940
|
+
|
4941
|
+
|
4942
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 16:27:24 +0000
|
4943
|
+
close: 127.0.0.1:51731
|
4944
|
+
close: 127.0.0.1:51732
|
4945
|
+
close: 127.0.0.1:51729
|
4946
|
+
close: 127.0.0.1:51733
|
4947
|
+
close: 127.0.0.1:51734
|
4948
|
+
close: 127.0.0.1:51730
|
4949
|
+
going to shutdown ...
|
4950
|
+
WEBrick::HTTPServer#start done.
|
4951
|
+
WEBrick 1.3.1
|
4952
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
4953
|
+
Rack::Handler::WEBrick is mounted on /.
|
4954
|
+
WEBrick::HTTPServer#start: pid=4140 port=40644
|
4955
|
+
accept: 127.0.0.1:43223
|
4956
|
+
close: 127.0.0.1:43223
|
4957
|
+
accept: 127.0.0.1:43224
|
4958
|
+
Rack::Handler::WEBrick is invoked.
|
4959
|
+
|
4960
|
+
|
4961
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 16:27:59 +0000
|
4962
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
4963
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
4964
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (77.3ms)
|
4965
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
4966
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (111.6ms)
|
4967
|
+
Completed 200 OK in 116ms (Views: 115.6ms)
|
4968
|
+
Rack::Handler::WEBrick is invoked.
|
4969
|
+
|
4970
|
+
|
4971
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 16:28:00 +0000
|
4972
|
+
accept: 127.0.0.1:43229
|
4973
|
+
Rack::Handler::WEBrick is invoked.
|
4974
|
+
accept: 127.0.0.1:43227
|
4975
|
+
Rack::Handler::WEBrick is invoked.
|
4976
|
+
accept: 127.0.0.1:43228
|
4977
|
+
accept: 127.0.0.1:43226
|
4978
|
+
accept: 127.0.0.1:43225
|
4979
|
+
Rack::Handler::WEBrick is invoked.
|
4980
|
+
|
4981
|
+
|
4982
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 16:28:00 +0000
|
4983
|
+
Rack::Handler::WEBrick is invoked.
|
4984
|
+
|
4985
|
+
|
4986
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 16:28:00 +0000
|
4987
|
+
|
4988
|
+
|
4989
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 16:28:00 +0000
|
4990
|
+
Rack::Handler::WEBrick is invoked.
|
4991
|
+
|
4992
|
+
|
4993
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 16:28:00 +0000
|
4994
|
+
Rack::Handler::WEBrick is invoked.
|
4995
|
+
|
4996
|
+
|
4997
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 16:28:00 +0000
|
4998
|
+
|
4999
|
+
|
5000
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 16:28:00 +0000
|
5001
|
+
close: 127.0.0.1:43224
|
5002
|
+
close: 127.0.0.1:43226
|
5003
|
+
close: 127.0.0.1:43227
|
5004
|
+
close: 127.0.0.1:43228
|
5005
|
+
close: 127.0.0.1:43225
|
5006
|
+
close: 127.0.0.1:43229
|
5007
|
+
going to shutdown ...
|
5008
|
+
WEBrick::HTTPServer#start done.
|
5009
|
+
WEBrick 1.3.1
|
5010
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5011
|
+
Rack::Handler::WEBrick is mounted on /.
|
5012
|
+
WEBrick::HTTPServer#start: pid=4283 port=58191
|
5013
|
+
accept: 127.0.0.1:57141
|
5014
|
+
close: 127.0.0.1:57141
|
5015
|
+
accept: 127.0.0.1:57142
|
5016
|
+
Rack::Handler::WEBrick is invoked.
|
5017
|
+
|
5018
|
+
|
5019
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 16:33:37 +0000
|
5020
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5021
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5022
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (73.9ms)
|
5023
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5024
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (105.3ms)
|
5025
|
+
Completed 200 OK in 110ms (Views: 109.6ms)
|
5026
|
+
Rack::Handler::WEBrick is invoked.
|
5027
|
+
|
5028
|
+
|
5029
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 16:33:37 +0000
|
5030
|
+
accept: 127.0.0.1:57144
|
5031
|
+
accept: 127.0.0.1:57145
|
5032
|
+
accept: 127.0.0.1:57143
|
5033
|
+
accept: 127.0.0.1:57146
|
5034
|
+
accept: 127.0.0.1:57147
|
5035
|
+
Rack::Handler::WEBrick is invoked.
|
5036
|
+
Rack::Handler::WEBrick is invoked.
|
5037
|
+
Rack::Handler::WEBrick is invoked.
|
5038
|
+
Rack::Handler::WEBrick is invoked.
|
5039
|
+
|
5040
|
+
|
5041
|
+
Rack::Handler::WEBrick is invoked.
|
5042
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 16:33:37 +0000
|
5043
|
+
|
5044
|
+
|
5045
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 16:33:37 +0000
|
5046
|
+
|
5047
|
+
|
5048
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 16:33:37 +0000
|
5049
|
+
|
5050
|
+
|
5051
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 16:33:37 +0000
|
5052
|
+
Rack::Handler::WEBrick is invoked.
|
5053
|
+
|
5054
|
+
|
5055
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 16:33:37 +0000
|
5056
|
+
|
5057
|
+
|
5058
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 16:33:37 +0000
|
5059
|
+
close: 127.0.0.1:57145
|
5060
|
+
close: 127.0.0.1:57147
|
5061
|
+
close: 127.0.0.1:57143
|
5062
|
+
close: 127.0.0.1:57142
|
5063
|
+
close: 127.0.0.1:57146
|
5064
|
+
close: 127.0.0.1:57144
|
5065
|
+
going to shutdown ...
|
5066
|
+
WEBrick::HTTPServer#start done.
|
5067
|
+
WEBrick 1.3.1
|
5068
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5069
|
+
Rack::Handler::WEBrick is mounted on /.
|
5070
|
+
WEBrick::HTTPServer#start: pid=4467 port=37463
|
5071
|
+
accept: 127.0.0.1:46797
|
5072
|
+
close: 127.0.0.1:46797
|
5073
|
+
accept: 127.0.0.1:46798
|
5074
|
+
Rack::Handler::WEBrick is invoked.
|
5075
|
+
|
5076
|
+
|
5077
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 16:40:09 +0000
|
5078
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5079
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5080
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (74.3ms)
|
5081
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5082
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (107.4ms)
|
5083
|
+
Completed 200 OK in 113ms (Views: 112.3ms)
|
5084
|
+
accept: 127.0.0.1:46800
|
5085
|
+
accept: 127.0.0.1:46801
|
5086
|
+
Rack::Handler::WEBrick is invoked.
|
5087
|
+
|
5088
|
+
|
5089
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 16:40:10 +0000
|
5090
|
+
Rack::Handler::WEBrick is invoked.
|
5091
|
+
|
5092
|
+
|
5093
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 16:40:10 +0000
|
5094
|
+
Rack::Handler::WEBrick is invoked.
|
5095
|
+
|
5096
|
+
|
5097
|
+
accept: 127.0.0.1:46802
|
5098
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 16:40:10 +0000
|
5099
|
+
accept: 127.0.0.1:46799
|
5100
|
+
accept: 127.0.0.1:46803
|
5101
|
+
Rack::Handler::WEBrick is invoked.
|
5102
|
+
Rack::Handler::WEBrick is invoked.
|
5103
|
+
|
5104
|
+
|
5105
|
+
Rack::Handler::WEBrick is invoked.
|
5106
|
+
Rack::Handler::WEBrick is invoked.
|
5107
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 16:40:10 +0000
|
5108
|
+
|
5109
|
+
|
5110
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 16:40:10 +0000
|
5111
|
+
|
5112
|
+
|
5113
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 16:40:10 +0000
|
5114
|
+
|
5115
|
+
|
5116
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 16:40:10 +0000
|
5117
|
+
close: 127.0.0.1:46799
|
5118
|
+
close: 127.0.0.1:46802
|
5119
|
+
close: 127.0.0.1:46803
|
5120
|
+
close: 127.0.0.1:46798
|
5121
|
+
close: 127.0.0.1:46800
|
5122
|
+
close: 127.0.0.1:46801
|
5123
|
+
going to shutdown ...
|
5124
|
+
WEBrick::HTTPServer#start done.
|
5125
|
+
WEBrick 1.3.1
|
5126
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5127
|
+
Rack::Handler::WEBrick is mounted on /.
|
5128
|
+
WEBrick::HTTPServer#start: pid=24683 port=56046
|
5129
|
+
accept: 127.0.0.1:38268
|
5130
|
+
close: 127.0.0.1:38268
|
5131
|
+
accept: 127.0.0.1:38269
|
5132
|
+
Rack::Handler::WEBrick is invoked.
|
5133
|
+
|
5134
|
+
|
5135
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 17:21:54 +0000
|
5136
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5137
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5138
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (61.8ms)
|
5139
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5140
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (92.1ms)
|
5141
|
+
Completed 200 OK in 97ms (Views: 96.1ms)
|
5142
|
+
accept: 127.0.0.1:38274
|
5143
|
+
Rack::Handler::WEBrick is invoked.
|
5144
|
+
|
5145
|
+
|
5146
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 17:21:54 +0000
|
5147
|
+
accept: 127.0.0.1:38273
|
5148
|
+
accept: 127.0.0.1:38272
|
5149
|
+
Rack::Handler::WEBrick is invoked.
|
5150
|
+
|
5151
|
+
|
5152
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 17:21:54 +0000
|
5153
|
+
Rack::Handler::WEBrick is invoked.
|
5154
|
+
|
5155
|
+
|
5156
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 17:21:54 +0000
|
5157
|
+
Rack::Handler::WEBrick is invoked.
|
5158
|
+
accept: 127.0.0.1:38271
|
5159
|
+
Rack::Handler::WEBrick is invoked.
|
5160
|
+
|
5161
|
+
|
5162
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 17:21:54 +0000
|
5163
|
+
|
5164
|
+
|
5165
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 17:21:54 +0000
|
5166
|
+
accept: 127.0.0.1:38270
|
5167
|
+
Rack::Handler::WEBrick is invoked.
|
5168
|
+
Rack::Handler::WEBrick is invoked.
|
5169
|
+
|
5170
|
+
|
5171
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 17:21:54 +0000
|
5172
|
+
|
5173
|
+
|
5174
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 17:21:54 +0000
|
5175
|
+
close: 127.0.0.1:38274
|
5176
|
+
close: 127.0.0.1:38273
|
5177
|
+
close: 127.0.0.1:38269
|
5178
|
+
close: 127.0.0.1:38272
|
5179
|
+
close: 127.0.0.1:38271
|
5180
|
+
close: 127.0.0.1:38270
|
5181
|
+
going to shutdown ...
|
5182
|
+
WEBrick::HTTPServer#start done.
|
5183
|
+
WEBrick 1.3.1
|
5184
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5185
|
+
Rack::Handler::WEBrick is mounted on /.
|
5186
|
+
WEBrick::HTTPServer#start: pid=24819 port=53035
|
5187
|
+
accept: 127.0.0.1:50161
|
5188
|
+
close: 127.0.0.1:50161
|
5189
|
+
accept: 127.0.0.1:50162
|
5190
|
+
Rack::Handler::WEBrick is invoked.
|
5191
|
+
|
5192
|
+
|
5193
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 17:22:50 +0000
|
5194
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5195
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5196
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (61.1ms)
|
5197
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5198
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (91.5ms)
|
5199
|
+
Completed 200 OK in 96ms (Views: 95.6ms)
|
5200
|
+
accept: 127.0.0.1:50163
|
5201
|
+
accept: 127.0.0.1:50166
|
5202
|
+
Rack::Handler::WEBrick is invoked.
|
5203
|
+
|
5204
|
+
|
5205
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 17:22:50 +0000
|
5206
|
+
accept: 127.0.0.1:50165
|
5207
|
+
accept: 127.0.0.1:50167
|
5208
|
+
Rack::Handler::WEBrick is invoked.
|
5209
|
+
|
5210
|
+
|
5211
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 17:22:50 +0000
|
5212
|
+
Rack::Handler::WEBrick is invoked.
|
5213
|
+
|
5214
|
+
|
5215
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 17:22:50 +0000
|
5216
|
+
Rack::Handler::WEBrick is invoked.
|
5217
|
+
|
5218
|
+
|
5219
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 17:22:50 +0000
|
5220
|
+
Rack::Handler::WEBrick is invoked.
|
5221
|
+
|
5222
|
+
|
5223
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 17:22:51 +0000
|
5224
|
+
accept: 127.0.0.1:50164
|
5225
|
+
Rack::Handler::WEBrick is invoked.
|
5226
|
+
Rack::Handler::WEBrick is invoked.
|
5227
|
+
|
5228
|
+
|
5229
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 17:22:51 +0000
|
5230
|
+
|
5231
|
+
|
5232
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 17:22:51 +0000
|
5233
|
+
close: 127.0.0.1:50162
|
5234
|
+
close: 127.0.0.1:50164
|
5235
|
+
close: 127.0.0.1:50163
|
5236
|
+
close: 127.0.0.1:50165
|
5237
|
+
close: 127.0.0.1:50167
|
5238
|
+
close: 127.0.0.1:50166
|
5239
|
+
going to shutdown ...
|
5240
|
+
WEBrick::HTTPServer#start done.
|
5241
|
+
WEBrick 1.3.1
|
5242
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5243
|
+
Rack::Handler::WEBrick is mounted on /.
|
5244
|
+
WEBrick::HTTPServer#start: pid=26037 port=37232
|
5245
|
+
accept: 127.0.0.1:54108
|
5246
|
+
close: 127.0.0.1:54108
|
5247
|
+
accept: 127.0.0.1:54109
|
5248
|
+
Rack::Handler::WEBrick is invoked.
|
5249
|
+
|
5250
|
+
|
5251
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 17:55:30 +0000
|
5252
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5253
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5254
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (63.4ms)
|
5255
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5256
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (97.2ms)
|
5257
|
+
Completed 200 OK in 102ms (Views: 101.5ms)
|
5258
|
+
Rack::Handler::WEBrick is invoked.
|
5259
|
+
|
5260
|
+
|
5261
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 17:55:30 +0000
|
5262
|
+
accept: 127.0.0.1:54114
|
5263
|
+
accept: 127.0.0.1:54112
|
5264
|
+
Rack::Handler::WEBrick is invoked.
|
5265
|
+
|
5266
|
+
|
5267
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 17:55:30 +0000
|
5268
|
+
Rack::Handler::WEBrick is invoked.
|
5269
|
+
accept: 127.0.0.1:54110
|
5270
|
+
accept: 127.0.0.1:54113
|
5271
|
+
accept: 127.0.0.1:54111
|
5272
|
+
Rack::Handler::WEBrick is invoked.
|
5273
|
+
Rack::Handler::WEBrick is invoked.
|
5274
|
+
Rack::Handler::WEBrick is invoked.
|
5275
|
+
|
5276
|
+
|
5277
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 17:55:30 +0000
|
5278
|
+
|
5279
|
+
|
5280
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 17:55:30 +0000
|
5281
|
+
|
5282
|
+
|
5283
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 17:55:30 +0000
|
5284
|
+
|
5285
|
+
|
5286
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 17:55:30 +0000
|
5287
|
+
Rack::Handler::WEBrick is invoked.
|
5288
|
+
|
5289
|
+
|
5290
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 17:55:30 +0000
|
5291
|
+
close: 127.0.0.1:54109
|
5292
|
+
close: 127.0.0.1:54114
|
5293
|
+
close: 127.0.0.1:54113
|
5294
|
+
close: 127.0.0.1:54110
|
5295
|
+
close: 127.0.0.1:54111
|
5296
|
+
close: 127.0.0.1:54112
|
5297
|
+
going to shutdown ...
|
5298
|
+
WEBrick::HTTPServer#start done.
|
5299
|
+
WEBrick 1.3.1
|
5300
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5301
|
+
Rack::Handler::WEBrick is mounted on /.
|
5302
|
+
WEBrick::HTTPServer#start: pid=26666 port=37678
|
5303
|
+
accept: 127.0.0.1:39015
|
5304
|
+
close: 127.0.0.1:39015
|
5305
|
+
accept: 127.0.0.1:39016
|
5306
|
+
Rack::Handler::WEBrick is invoked.
|
5307
|
+
|
5308
|
+
|
5309
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 18:36:24 +0000
|
5310
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5311
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5312
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (65.0ms)
|
5313
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5314
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (96.0ms)
|
5315
|
+
Completed 200 OK in 101ms (Views: 100.2ms)
|
5316
|
+
accept: 127.0.0.1:39017
|
5317
|
+
accept: 127.0.0.1:39019
|
5318
|
+
Rack::Handler::WEBrick is invoked.
|
5319
|
+
|
5320
|
+
|
5321
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 18:36:24 +0000
|
5322
|
+
accept: 127.0.0.1:39020
|
5323
|
+
Rack::Handler::WEBrick is invoked.
|
5324
|
+
|
5325
|
+
|
5326
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 18:36:24 +0000
|
5327
|
+
accept: 127.0.0.1:39018
|
5328
|
+
Rack::Handler::WEBrick is invoked.
|
5329
|
+
|
5330
|
+
|
5331
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 18:36:24 +0000
|
5332
|
+
Rack::Handler::WEBrick is invoked.
|
5333
|
+
Rack::Handler::WEBrick is invoked.
|
5334
|
+
Rack::Handler::WEBrick is invoked.
|
5335
|
+
accept: 127.0.0.1:39021
|
5336
|
+
|
5337
|
+
|
5338
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 18:36:24 +0000
|
5339
|
+
|
5340
|
+
|
5341
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 18:36:24 +0000
|
5342
|
+
Rack::Handler::WEBrick is invoked.
|
5343
|
+
|
5344
|
+
|
5345
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 18:36:24 +0000
|
5346
|
+
|
5347
|
+
|
5348
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 18:36:24 +0000
|
5349
|
+
close: 127.0.0.1:39016
|
5350
|
+
close: 127.0.0.1:39017
|
5351
|
+
close: 127.0.0.1:39018
|
5352
|
+
close: 127.0.0.1:39019
|
5353
|
+
close: 127.0.0.1:39020
|
5354
|
+
close: 127.0.0.1:39021
|
5355
|
+
going to shutdown ...
|
5356
|
+
WEBrick::HTTPServer#start done.
|
5357
|
+
WEBrick 1.3.1
|
5358
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5359
|
+
Rack::Handler::WEBrick is mounted on /.
|
5360
|
+
WEBrick::HTTPServer#start: pid=26755 port=60980
|
5361
|
+
accept: 127.0.0.1:52163
|
5362
|
+
close: 127.0.0.1:52163
|
5363
|
+
accept: 127.0.0.1:52164
|
5364
|
+
Rack::Handler::WEBrick is invoked.
|
5365
|
+
|
5366
|
+
|
5367
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 18:39:45 +0000
|
5368
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5369
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5370
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (61.1ms)
|
5371
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5372
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (92.5ms)
|
5373
|
+
Completed 200 OK in 97ms (Views: 96.4ms)
|
5374
|
+
Rack::Handler::WEBrick is invoked.
|
5375
|
+
|
5376
|
+
|
5377
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 18:39:46 +0000
|
5378
|
+
accept: 127.0.0.1:52168
|
5379
|
+
accept: 127.0.0.1:52165
|
5380
|
+
Rack::Handler::WEBrick is invoked.
|
5381
|
+
|
5382
|
+
|
5383
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 18:39:46 +0000
|
5384
|
+
accept: 127.0.0.1:52166
|
5385
|
+
Rack::Handler::WEBrick is invoked.
|
5386
|
+
accept: 127.0.0.1:52169
|
5387
|
+
Rack::Handler::WEBrick is invoked.
|
5388
|
+
accept: 127.0.0.1:52167
|
5389
|
+
Rack::Handler::WEBrick is invoked.
|
5390
|
+
Rack::Handler::WEBrick is invoked.
|
5391
|
+
|
5392
|
+
|
5393
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 18:39:46 +0000
|
5394
|
+
|
5395
|
+
|
5396
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 18:39:46 +0000
|
5397
|
+
|
5398
|
+
|
5399
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 18:39:46 +0000
|
5400
|
+
Rack::Handler::WEBrick is invoked.
|
5401
|
+
|
5402
|
+
|
5403
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 18:39:46 +0000
|
5404
|
+
|
5405
|
+
|
5406
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 18:39:46 +0000
|
5407
|
+
close: 127.0.0.1:52164
|
5408
|
+
close: 127.0.0.1:52165
|
5409
|
+
close: 127.0.0.1:52166
|
5410
|
+
close: 127.0.0.1:52167
|
5411
|
+
close: 127.0.0.1:52169
|
5412
|
+
close: 127.0.0.1:52168
|
5413
|
+
going to shutdown ...
|
5414
|
+
WEBrick::HTTPServer#start done.
|
5415
|
+
WEBrick 1.3.1
|
5416
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5417
|
+
Rack::Handler::WEBrick is mounted on /.
|
5418
|
+
WEBrick::HTTPServer#start: pid=27159 port=50090
|
5419
|
+
accept: 127.0.0.1:50840
|
5420
|
+
close: 127.0.0.1:50840
|
5421
|
+
accept: 127.0.0.1:50841
|
5422
|
+
Rack::Handler::WEBrick is invoked.
|
5423
|
+
|
5424
|
+
|
5425
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 18:50:40 +0000
|
5426
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5427
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5428
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (61.3ms)
|
5429
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5430
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (93.1ms)
|
5431
|
+
Completed 200 OK in 98ms (Views: 97.3ms)
|
5432
|
+
Rack::Handler::WEBrick is invoked.
|
5433
|
+
|
5434
|
+
|
5435
|
+
accept: 127.0.0.1:50843
|
5436
|
+
Rack::Handler::WEBrick is invoked.
|
5437
|
+
accept: 127.0.0.1:50842
|
5438
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 18:50:40 +0000
|
5439
|
+
accept: 127.0.0.1:50844
|
5440
|
+
accept: 127.0.0.1:50846
|
5441
|
+
Rack::Handler::WEBrick is invoked.
|
5442
|
+
|
5443
|
+
|
5444
|
+
Rack::Handler::WEBrick is invoked.
|
5445
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 18:50:40 +0000
|
5446
|
+
|
5447
|
+
|
5448
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 18:50:40 +0000
|
5449
|
+
|
5450
|
+
|
5451
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 18:50:40 +0000
|
5452
|
+
accept: 127.0.0.1:50845
|
5453
|
+
Rack::Handler::WEBrick is invoked.
|
5454
|
+
|
5455
|
+
|
5456
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 18:50:40 +0000
|
5457
|
+
Rack::Handler::WEBrick is invoked.
|
5458
|
+
|
5459
|
+
|
5460
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 18:50:40 +0000
|
5461
|
+
Rack::Handler::WEBrick is invoked.
|
5462
|
+
|
5463
|
+
|
5464
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 18:50:40 +0000
|
5465
|
+
close: 127.0.0.1:50841
|
5466
|
+
close: 127.0.0.1:50842
|
5467
|
+
close: 127.0.0.1:50846
|
5468
|
+
close: 127.0.0.1:50844
|
5469
|
+
close: 127.0.0.1:50843
|
5470
|
+
close: 127.0.0.1:50845
|
5471
|
+
going to shutdown ...
|
5472
|
+
WEBrick::HTTPServer#start done.
|
5473
|
+
WEBrick 1.3.1
|
5474
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5475
|
+
Rack::Handler::WEBrick is mounted on /.
|
5476
|
+
WEBrick::HTTPServer#start: pid=27208 port=48892
|
5477
|
+
accept: 127.0.0.1:54815
|
5478
|
+
close: 127.0.0.1:54815
|
5479
|
+
accept: 127.0.0.1:54816
|
5480
|
+
Rack::Handler::WEBrick is invoked.
|
5481
|
+
|
5482
|
+
|
5483
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 18:51:50 +0000
|
5484
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5485
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5486
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (62.5ms)
|
5487
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5488
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (96.5ms)
|
5489
|
+
Completed 200 OK in 102ms (Views: 101.3ms)
|
5490
|
+
accept: 127.0.0.1:54820
|
5491
|
+
Rack::Handler::WEBrick is invoked.
|
5492
|
+
|
5493
|
+
|
5494
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 18:51:50 +0000
|
5495
|
+
Rack::Handler::WEBrick is invoked.
|
5496
|
+
|
5497
|
+
|
5498
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 18:51:50 +0000
|
5499
|
+
accept: 127.0.0.1:54818
|
5500
|
+
Rack::Handler::WEBrick is invoked.
|
5501
|
+
|
5502
|
+
|
5503
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 18:51:50 +0000
|
5504
|
+
accept: 127.0.0.1:54819
|
5505
|
+
accept: 127.0.0.1:54821
|
5506
|
+
Rack::Handler::WEBrick is invoked.
|
5507
|
+
Rack::Handler::WEBrick is invoked.
|
5508
|
+
accept: 127.0.0.1:54817
|
5509
|
+
Rack::Handler::WEBrick is invoked.
|
5510
|
+
Rack::Handler::WEBrick is invoked.
|
5511
|
+
|
5512
|
+
|
5513
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 18:51:50 +0000
|
5514
|
+
|
5515
|
+
|
5516
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 18:51:50 +0000
|
5517
|
+
|
5518
|
+
|
5519
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 18:51:50 +0000
|
5520
|
+
|
5521
|
+
|
5522
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 18:51:50 +0000
|
5523
|
+
close: 127.0.0.1:54816
|
5524
|
+
close: 127.0.0.1:54819
|
5525
|
+
close: 127.0.0.1:54821
|
5526
|
+
close: 127.0.0.1:54817
|
5527
|
+
close: 127.0.0.1:54818
|
5528
|
+
close: 127.0.0.1:54820
|
5529
|
+
going to shutdown ...
|
5530
|
+
WEBrick::HTTPServer#start done.
|
5531
|
+
WEBrick 1.3.1
|
5532
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5533
|
+
Rack::Handler::WEBrick is mounted on /.
|
5534
|
+
WEBrick::HTTPServer#start: pid=27360 port=38219
|
5535
|
+
accept: 127.0.0.1:58612
|
5536
|
+
close: 127.0.0.1:58612
|
5537
|
+
accept: 127.0.0.1:58613
|
5538
|
+
Rack::Handler::WEBrick is invoked.
|
5539
|
+
|
5540
|
+
|
5541
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 19:00:41 +0000
|
5542
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5543
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5544
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (62.6ms)
|
5545
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5546
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (97.1ms)
|
5547
|
+
Completed 200 OK in 105ms (Views: 104.4ms)
|
5548
|
+
Rack::Handler::WEBrick is invoked.
|
5549
|
+
|
5550
|
+
|
5551
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 19:00:41 +0000
|
5552
|
+
accept: 127.0.0.1:58618
|
5553
|
+
Rack::Handler::WEBrick is invoked.
|
5554
|
+
|
5555
|
+
|
5556
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 19:00:41 +0000
|
5557
|
+
accept: 127.0.0.1:58617
|
5558
|
+
Rack::Handler::WEBrick is invoked.
|
5559
|
+
|
5560
|
+
|
5561
|
+
Rack::Handler::WEBrick is invoked.
|
5562
|
+
accept: 127.0.0.1:58616
|
5563
|
+
Rack::Handler::WEBrick is invoked.
|
5564
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 19:00:41 +0000
|
5565
|
+
accept: 127.0.0.1:58615
|
5566
|
+
accept: 127.0.0.1:58614
|
5567
|
+
|
5568
|
+
|
5569
|
+
Rack::Handler::WEBrick is invoked.
|
5570
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 19:00:41 +0000
|
5571
|
+
Rack::Handler::WEBrick is invoked.
|
5572
|
+
|
5573
|
+
|
5574
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 19:00:41 +0000
|
5575
|
+
|
5576
|
+
|
5577
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 19:00:41 +0000
|
5578
|
+
|
5579
|
+
|
5580
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 19:00:41 +0000
|
5581
|
+
close: 127.0.0.1:58613
|
5582
|
+
close: 127.0.0.1:58616
|
5583
|
+
close: 127.0.0.1:58614
|
5584
|
+
close: 127.0.0.1:58617
|
5585
|
+
close: 127.0.0.1:58615
|
5586
|
+
close: 127.0.0.1:58618
|
5587
|
+
going to shutdown ...
|
5588
|
+
WEBrick::HTTPServer#start done.
|
5589
|
+
WEBrick 1.3.1
|
5590
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5591
|
+
Rack::Handler::WEBrick is mounted on /.
|
5592
|
+
WEBrick::HTTPServer#start: pid=27407 port=58586
|
5593
|
+
accept: 127.0.0.1:45251
|
5594
|
+
close: 127.0.0.1:45251
|
5595
|
+
accept: 127.0.0.1:45252
|
5596
|
+
Rack::Handler::WEBrick is invoked.
|
5597
|
+
|
5598
|
+
|
5599
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 19:01:28 +0000
|
5600
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5601
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5602
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (64.0ms)
|
5603
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5604
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (96.5ms)
|
5605
|
+
Completed 200 OK in 101ms (Views: 100.8ms)
|
5606
|
+
Rack::Handler::WEBrick is invoked.
|
5607
|
+
|
5608
|
+
|
5609
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 19:01:28 +0000
|
5610
|
+
accept: 127.0.0.1:45253
|
5611
|
+
accept: 127.0.0.1:45255
|
5612
|
+
Rack::Handler::WEBrick is invoked.
|
5613
|
+
accept: 127.0.0.1:45254
|
5614
|
+
Rack::Handler::WEBrick is invoked.
|
5615
|
+
Rack::Handler::WEBrick is invoked.
|
5616
|
+
accept: 127.0.0.1:45256
|
5617
|
+
Rack::Handler::WEBrick is invoked.
|
5618
|
+
|
5619
|
+
|
5620
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 19:01:28 +0000
|
5621
|
+
|
5622
|
+
|
5623
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 19:01:28 +0000
|
5624
|
+
|
5625
|
+
|
5626
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 19:01:28 +0000
|
5627
|
+
Rack::Handler::WEBrick is invoked.
|
5628
|
+
|
5629
|
+
|
5630
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 19:01:28 +0000
|
5631
|
+
accept: 127.0.0.1:45257
|
5632
|
+
Rack::Handler::WEBrick is invoked.
|
5633
|
+
|
5634
|
+
|
5635
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 19:01:28 +0000
|
5636
|
+
|
5637
|
+
|
5638
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 19:01:28 +0000
|
5639
|
+
close: 127.0.0.1:45252
|
5640
|
+
close: 127.0.0.1:45254
|
5641
|
+
close: 127.0.0.1:45255
|
5642
|
+
close: 127.0.0.1:45256
|
5643
|
+
close: 127.0.0.1:45253
|
5644
|
+
close: 127.0.0.1:45257
|
5645
|
+
going to shutdown ...
|
5646
|
+
WEBrick::HTTPServer#start done.
|
5647
|
+
WEBrick 1.3.1
|
5648
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5649
|
+
Rack::Handler::WEBrick is mounted on /.
|
5650
|
+
WEBrick::HTTPServer#start: pid=27526 port=54324
|
5651
|
+
accept: 127.0.0.1:51070
|
5652
|
+
close: 127.0.0.1:51070
|
5653
|
+
accept: 127.0.0.1:51071
|
5654
|
+
Rack::Handler::WEBrick is invoked.
|
5655
|
+
|
5656
|
+
|
5657
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-19 19:03:57 +0000
|
5658
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5659
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5660
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (61.9ms)
|
5661
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5662
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (95.2ms)
|
5663
|
+
Completed 200 OK in 100ms (Views: 99.5ms)
|
5664
|
+
Rack::Handler::WEBrick is invoked.
|
5665
|
+
|
5666
|
+
|
5667
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-19 19:03:58 +0000
|
5668
|
+
accept: 127.0.0.1:51076
|
5669
|
+
Rack::Handler::WEBrick is invoked.
|
5670
|
+
|
5671
|
+
|
5672
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-19 19:03:58 +0000
|
5673
|
+
accept: 127.0.0.1:51072
|
5674
|
+
accept: 127.0.0.1:51075
|
5675
|
+
Rack::Handler::WEBrick is invoked.
|
5676
|
+
accept: 127.0.0.1:51074
|
5677
|
+
Rack::Handler::WEBrick is invoked.
|
5678
|
+
accept: 127.0.0.1:51073
|
5679
|
+
Rack::Handler::WEBrick is invoked.
|
5680
|
+
|
5681
|
+
|
5682
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-19 19:03:58 +0000
|
5683
|
+
Rack::Handler::WEBrick is invoked.
|
5684
|
+
|
5685
|
+
|
5686
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-19 19:03:58 +0000
|
5687
|
+
|
5688
|
+
|
5689
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-19 19:03:58 +0000
|
5690
|
+
Rack::Handler::WEBrick is invoked.
|
5691
|
+
|
5692
|
+
|
5693
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-19 19:03:58 +0000
|
5694
|
+
|
5695
|
+
|
5696
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-19 19:03:58 +0000
|
5697
|
+
close: 127.0.0.1:51071
|
5698
|
+
close: 127.0.0.1:51075
|
5699
|
+
close: 127.0.0.1:51073
|
5700
|
+
close: 127.0.0.1:51072
|
5701
|
+
close: 127.0.0.1:51076
|
5702
|
+
close: 127.0.0.1:51074
|
5703
|
+
going to shutdown ...
|
5704
|
+
WEBrick::HTTPServer#start done.
|
5705
|
+
WEBrick 1.3.1
|
5706
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5707
|
+
Rack::Handler::WEBrick is mounted on /.
|
5708
|
+
WEBrick::HTTPServer#start: pid=11132 port=48144
|
5709
|
+
accept: 127.0.0.1:38489
|
5710
|
+
close: 127.0.0.1:38489
|
5711
|
+
accept: 127.0.0.1:38490
|
5712
|
+
Rack::Handler::WEBrick is invoked.
|
5713
|
+
|
5714
|
+
|
5715
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 14:24:31 +0000
|
5716
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5717
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5718
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (63.4ms)
|
5719
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5720
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (94.4ms)
|
5721
|
+
Completed 200 OK in 99ms (Views: 98.6ms)
|
5722
|
+
Rack::Handler::WEBrick is invoked.
|
5723
|
+
|
5724
|
+
|
5725
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 14:24:31 +0000
|
5726
|
+
accept: 127.0.0.1:38491
|
5727
|
+
Rack::Handler::WEBrick is invoked.
|
5728
|
+
|
5729
|
+
|
5730
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 14:24:31 +0000
|
5731
|
+
accept: 127.0.0.1:38494
|
5732
|
+
accept: 127.0.0.1:38495
|
5733
|
+
accept: 127.0.0.1:38492
|
5734
|
+
Rack::Handler::WEBrick is invoked.
|
5735
|
+
Rack::Handler::WEBrick is invoked.
|
5736
|
+
|
5737
|
+
|
5738
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 14:24:31 +0000
|
5739
|
+
|
5740
|
+
|
5741
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 14:24:31 +0000
|
5742
|
+
Rack::Handler::WEBrick is invoked.
|
5743
|
+
|
5744
|
+
|
5745
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 14:24:31 +0000
|
5746
|
+
accept: 127.0.0.1:38493
|
5747
|
+
Rack::Handler::WEBrick is invoked.
|
5748
|
+
|
5749
|
+
|
5750
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 14:24:31 +0000
|
5751
|
+
Rack::Handler::WEBrick is invoked.
|
5752
|
+
|
5753
|
+
|
5754
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 14:24:31 +0000
|
5755
|
+
close: 127.0.0.1:38490
|
5756
|
+
close: 127.0.0.1:38491
|
5757
|
+
close: 127.0.0.1:38494
|
5758
|
+
close: 127.0.0.1:38493
|
5759
|
+
close: 127.0.0.1:38492
|
5760
|
+
close: 127.0.0.1:38495
|
5761
|
+
going to shutdown ...
|
5762
|
+
WEBrick::HTTPServer#start done.
|
5763
|
+
WEBrick 1.3.1
|
5764
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5765
|
+
Rack::Handler::WEBrick is mounted on /.
|
5766
|
+
WEBrick::HTTPServer#start: pid=11190 port=36566
|
5767
|
+
accept: 127.0.0.1:45031
|
5768
|
+
close: 127.0.0.1:45031
|
5769
|
+
accept: 127.0.0.1:45032
|
5770
|
+
Rack::Handler::WEBrick is invoked.
|
5771
|
+
|
5772
|
+
|
5773
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 14:26:11 +0000
|
5774
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5775
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5776
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (71.4ms)
|
5777
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5778
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (102.1ms)
|
5779
|
+
Completed 200 OK in 107ms (Views: 106.3ms)
|
5780
|
+
accept: 127.0.0.1:45036
|
5781
|
+
Rack::Handler::WEBrick is invoked.
|
5782
|
+
|
5783
|
+
|
5784
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 14:26:11 +0000
|
5785
|
+
accept: 127.0.0.1:45034
|
5786
|
+
accept: 127.0.0.1:45033
|
5787
|
+
accept: 127.0.0.1:45035
|
5788
|
+
Rack::Handler::WEBrick is invoked.
|
5789
|
+
Rack::Handler::WEBrick is invoked.
|
5790
|
+
accept: 127.0.0.1:45037
|
5791
|
+
Rack::Handler::WEBrick is invoked.
|
5792
|
+
Rack::Handler::WEBrick is invoked.
|
5793
|
+
|
5794
|
+
|
5795
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 14:26:11 +0000
|
5796
|
+
Rack::Handler::WEBrick is invoked.
|
5797
|
+
|
5798
|
+
|
5799
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 14:26:11 +0000
|
5800
|
+
Rack::Handler::WEBrick is invoked.
|
5801
|
+
|
5802
|
+
|
5803
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 14:26:11 +0000
|
5804
|
+
|
5805
|
+
|
5806
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 14:26:11 +0000
|
5807
|
+
|
5808
|
+
|
5809
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 14:26:11 +0000
|
5810
|
+
|
5811
|
+
|
5812
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 14:26:11 +0000
|
5813
|
+
close: 127.0.0.1:45033
|
5814
|
+
close: 127.0.0.1:45034
|
5815
|
+
close: 127.0.0.1:45037
|
5816
|
+
close: 127.0.0.1:45032
|
5817
|
+
close: 127.0.0.1:45035
|
5818
|
+
close: 127.0.0.1:45036
|
5819
|
+
going to shutdown ...
|
5820
|
+
WEBrick::HTTPServer#start done.
|
5821
|
+
WEBrick 1.3.1
|
5822
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5823
|
+
Rack::Handler::WEBrick is mounted on /.
|
5824
|
+
WEBrick::HTTPServer#start: pid=11236 port=55902
|
5825
|
+
accept: 127.0.0.1:53862
|
5826
|
+
close: 127.0.0.1:53862
|
5827
|
+
accept: 127.0.0.1:53863
|
5828
|
+
Rack::Handler::WEBrick is invoked.
|
5829
|
+
|
5830
|
+
|
5831
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 14:27:31 +0000
|
5832
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5833
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5834
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (70.2ms)
|
5835
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5836
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (100.5ms)
|
5837
|
+
Completed 200 OK in 105ms (Views: 104.6ms)
|
5838
|
+
Rack::Handler::WEBrick is invoked.
|
5839
|
+
|
5840
|
+
|
5841
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 14:27:32 +0000
|
5842
|
+
accept: 127.0.0.1:53866
|
5843
|
+
accept: 127.0.0.1:53868
|
5844
|
+
accept: 127.0.0.1:53864
|
5845
|
+
Rack::Handler::WEBrick is invoked.
|
5846
|
+
|
5847
|
+
|
5848
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:32 +0000
|
5849
|
+
Rack::Handler::WEBrick is invoked.
|
5850
|
+
Rack::Handler::WEBrick is invoked.
|
5851
|
+
accept: 127.0.0.1:53865
|
5852
|
+
Rack::Handler::WEBrick is invoked.
|
5853
|
+
|
5854
|
+
|
5855
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:32 +0000
|
5856
|
+
accept: 127.0.0.1:53867
|
5857
|
+
Rack::Handler::WEBrick is invoked.
|
5858
|
+
|
5859
|
+
|
5860
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:32 +0000
|
5861
|
+
|
5862
|
+
|
5863
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:32 +0000
|
5864
|
+
Rack::Handler::WEBrick is invoked.
|
5865
|
+
|
5866
|
+
|
5867
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:32 +0000
|
5868
|
+
|
5869
|
+
|
5870
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:32 +0000
|
5871
|
+
close: 127.0.0.1:53863
|
5872
|
+
close: 127.0.0.1:53864
|
5873
|
+
close: 127.0.0.1:53867
|
5874
|
+
close: 127.0.0.1:53868
|
5875
|
+
close: 127.0.0.1:53865
|
5876
|
+
close: 127.0.0.1:53866
|
5877
|
+
going to shutdown ...
|
5878
|
+
WEBrick::HTTPServer#start done.
|
5879
|
+
WEBrick 1.3.1
|
5880
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5881
|
+
Rack::Handler::WEBrick is mounted on /.
|
5882
|
+
WEBrick::HTTPServer#start: pid=11276 port=58543
|
5883
|
+
accept: 127.0.0.1:52019
|
5884
|
+
close: 127.0.0.1:52019
|
5885
|
+
accept: 127.0.0.1:52020
|
5886
|
+
Rack::Handler::WEBrick is invoked.
|
5887
|
+
|
5888
|
+
|
5889
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 14:27:47 +0000
|
5890
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5891
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5892
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (71.4ms)
|
5893
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
5894
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (102.0ms)
|
5895
|
+
Completed 200 OK in 106ms (Views: 106.0ms)
|
5896
|
+
accept: 127.0.0.1:52025
|
5897
|
+
accept: 127.0.0.1:52022
|
5898
|
+
Rack::Handler::WEBrick is invoked.
|
5899
|
+
|
5900
|
+
|
5901
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:47 +0000
|
5902
|
+
accept: 127.0.0.1:52024
|
5903
|
+
Rack::Handler::WEBrick is invoked.
|
5904
|
+
|
5905
|
+
|
5906
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:47 +0000
|
5907
|
+
Rack::Handler::WEBrick is invoked.
|
5908
|
+
accept: 127.0.0.1:52021
|
5909
|
+
accept: 127.0.0.1:52023
|
5910
|
+
Rack::Handler::WEBrick is invoked.
|
5911
|
+
Rack::Handler::WEBrick is invoked.
|
5912
|
+
Rack::Handler::WEBrick is invoked.
|
5913
|
+
Rack::Handler::WEBrick is invoked.
|
5914
|
+
|
5915
|
+
|
5916
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:47 +0000
|
5917
|
+
|
5918
|
+
|
5919
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 14:27:47 +0000
|
5920
|
+
|
5921
|
+
|
5922
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:47 +0000
|
5923
|
+
|
5924
|
+
|
5925
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:47 +0000
|
5926
|
+
|
5927
|
+
|
5928
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 14:27:47 +0000
|
5929
|
+
close: 127.0.0.1:52021
|
5930
|
+
close: 127.0.0.1:52025
|
5931
|
+
close: 127.0.0.1:52020
|
5932
|
+
close: 127.0.0.1:52023
|
5933
|
+
close: 127.0.0.1:52022
|
5934
|
+
close: 127.0.0.1:52024
|
5935
|
+
going to shutdown ...
|
5936
|
+
WEBrick::HTTPServer#start done.
|
5937
|
+
WEBrick 1.3.1
|
5938
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5939
|
+
Rack::Handler::WEBrick is mounted on /.
|
5940
|
+
WEBrick::HTTPServer#start: pid=11326 port=52929
|
5941
|
+
accept: 127.0.0.1:54774
|
5942
|
+
close: 127.0.0.1:54774
|
5943
|
+
accept: 127.0.0.1:54775
|
5944
|
+
Rack::Handler::WEBrick is invoked.
|
5945
|
+
|
5946
|
+
|
5947
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 14:29:51 +0000
|
5948
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
5949
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
5950
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (70.2ms)
|
5951
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.4ms)
|
5952
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (100.5ms)
|
5953
|
+
Completed 200 OK in 105ms (Views: 104.4ms)
|
5954
|
+
accept: 127.0.0.1:54776
|
5955
|
+
Rack::Handler::WEBrick is invoked.
|
5956
|
+
|
5957
|
+
|
5958
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 14:29:52 +0000
|
5959
|
+
Rack::Handler::WEBrick is invoked.
|
5960
|
+
accept: 127.0.0.1:54779
|
5961
|
+
Rack::Handler::WEBrick is invoked.
|
5962
|
+
accept: 127.0.0.1:54780
|
5963
|
+
Rack::Handler::WEBrick is invoked.
|
5964
|
+
|
5965
|
+
|
5966
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 14:29:52 +0000
|
5967
|
+
|
5968
|
+
|
5969
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 14:29:52 +0000
|
5970
|
+
accept: 127.0.0.1:54778
|
5971
|
+
Rack::Handler::WEBrick is invoked.
|
5972
|
+
|
5973
|
+
|
5974
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 14:29:52 +0000
|
5975
|
+
|
5976
|
+
|
5977
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 14:29:52 +0000
|
5978
|
+
accept: 127.0.0.1:54777
|
5979
|
+
Rack::Handler::WEBrick is invoked.
|
5980
|
+
|
5981
|
+
|
5982
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 14:29:52 +0000
|
5983
|
+
Rack::Handler::WEBrick is invoked.
|
5984
|
+
|
5985
|
+
|
5986
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 14:29:52 +0000
|
5987
|
+
close: 127.0.0.1:54775
|
5988
|
+
close: 127.0.0.1:54779
|
5989
|
+
close: 127.0.0.1:54780
|
5990
|
+
close: 127.0.0.1:54776
|
5991
|
+
close: 127.0.0.1:54778
|
5992
|
+
close: 127.0.0.1:54777
|
5993
|
+
going to shutdown ...
|
5994
|
+
WEBrick::HTTPServer#start done.
|
5995
|
+
WEBrick 1.3.1
|
5996
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
5997
|
+
Rack::Handler::WEBrick is mounted on /.
|
5998
|
+
WEBrick::HTTPServer#start: pid=11375 port=42166
|
5999
|
+
accept: 127.0.0.1:48066
|
6000
|
+
close: 127.0.0.1:48066
|
6001
|
+
accept: 127.0.0.1:48067
|
6002
|
+
Rack::Handler::WEBrick is invoked.
|
6003
|
+
|
6004
|
+
|
6005
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 14:32:02 +0000
|
6006
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6007
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6008
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (70.4ms)
|
6009
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6010
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (100.7ms)
|
6011
|
+
Completed 200 OK in 105ms (Views: 104.9ms)
|
6012
|
+
accept: 127.0.0.1:48069
|
6013
|
+
Rack::Handler::WEBrick is invoked.
|
6014
|
+
|
6015
|
+
|
6016
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 14:32:02 +0000
|
6017
|
+
Rack::Handler::WEBrick is invoked.
|
6018
|
+
|
6019
|
+
|
6020
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 14:32:02 +0000
|
6021
|
+
accept: 127.0.0.1:48068
|
6022
|
+
Rack::Handler::WEBrick is invoked.
|
6023
|
+
|
6024
|
+
|
6025
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 14:32:02 +0000
|
6026
|
+
accept: 127.0.0.1:48071
|
6027
|
+
Rack::Handler::WEBrick is invoked.
|
6028
|
+
|
6029
|
+
|
6030
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 14:32:02 +0000
|
6031
|
+
accept: 127.0.0.1:48070
|
6032
|
+
Rack::Handler::WEBrick is invoked.
|
6033
|
+
Rack::Handler::WEBrick is invoked.
|
6034
|
+
accept: 127.0.0.1:48072
|
6035
|
+
Rack::Handler::WEBrick is invoked.
|
6036
|
+
|
6037
|
+
|
6038
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 14:32:02 +0000
|
6039
|
+
|
6040
|
+
|
6041
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 14:32:02 +0000
|
6042
|
+
|
6043
|
+
|
6044
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 14:32:02 +0000
|
6045
|
+
close: 127.0.0.1:48067
|
6046
|
+
close: 127.0.0.1:48068
|
6047
|
+
close: 127.0.0.1:48070
|
6048
|
+
close: 127.0.0.1:48071
|
6049
|
+
close: 127.0.0.1:48072
|
6050
|
+
close: 127.0.0.1:48069
|
6051
|
+
going to shutdown ...
|
6052
|
+
WEBrick::HTTPServer#start done.
|
6053
|
+
WEBrick 1.3.1
|
6054
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6055
|
+
Rack::Handler::WEBrick is mounted on /.
|
6056
|
+
WEBrick::HTTPServer#start: pid=12147 port=52833
|
6057
|
+
accept: 127.0.0.1:48726
|
6058
|
+
close: 127.0.0.1:48726
|
6059
|
+
accept: 127.0.0.1:48727
|
6060
|
+
Rack::Handler::WEBrick is invoked.
|
6061
|
+
|
6062
|
+
|
6063
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 17:10:45 +0000
|
6064
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6065
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6066
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (64.1ms)
|
6067
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6068
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (96.5ms)
|
6069
|
+
Completed 200 OK in 101ms (Views: 100.7ms)
|
6070
|
+
accept: 127.0.0.1:48729
|
6071
|
+
accept: 127.0.0.1:48731
|
6072
|
+
Rack::Handler::WEBrick is invoked.
|
6073
|
+
|
6074
|
+
|
6075
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 17:10:45 +0000
|
6076
|
+
accept: 127.0.0.1:48732
|
6077
|
+
Rack::Handler::WEBrick is invoked.
|
6078
|
+
|
6079
|
+
|
6080
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 17:10:45 +0000
|
6081
|
+
Rack::Handler::WEBrick is invoked.
|
6082
|
+
accept: 127.0.0.1:48730
|
6083
|
+
Rack::Handler::WEBrick is invoked.
|
6084
|
+
accept: 127.0.0.1:48728
|
6085
|
+
|
6086
|
+
Rack::Handler::WEBrick is invoked.
|
6087
|
+
|
6088
|
+
Rack::Handler::WEBrick is invoked.
|
6089
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 17:10:45 +0000
|
6090
|
+
Rack::Handler::WEBrick is invoked.
|
6091
|
+
|
6092
|
+
|
6093
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 17:10:45 +0000
|
6094
|
+
|
6095
|
+
|
6096
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 17:10:45 +0000
|
6097
|
+
|
6098
|
+
|
6099
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 17:10:45 +0000
|
6100
|
+
|
6101
|
+
|
6102
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 17:10:45 +0000
|
6103
|
+
close: 127.0.0.1:48731
|
6104
|
+
close: 127.0.0.1:48729
|
6105
|
+
close: 127.0.0.1:48728
|
6106
|
+
close: 127.0.0.1:48727
|
6107
|
+
close: 127.0.0.1:48730
|
6108
|
+
close: 127.0.0.1:48732
|
6109
|
+
going to shutdown ...
|
6110
|
+
WEBrick::HTTPServer#start done.
|
6111
|
+
WEBrick 1.3.1
|
6112
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6113
|
+
Rack::Handler::WEBrick is mounted on /.
|
6114
|
+
WEBrick::HTTPServer#start: pid=12201 port=53730
|
6115
|
+
accept: 127.0.0.1:47878
|
6116
|
+
close: 127.0.0.1:47878
|
6117
|
+
accept: 127.0.0.1:47879
|
6118
|
+
Rack::Handler::WEBrick is invoked.
|
6119
|
+
|
6120
|
+
|
6121
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 17:11:08 +0000
|
6122
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6123
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6124
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (61.5ms)
|
6125
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6126
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (93.1ms)
|
6127
|
+
Completed 200 OK in 98ms (Views: 97.1ms)
|
6128
|
+
Rack::Handler::WEBrick is invoked.
|
6129
|
+
|
6130
|
+
|
6131
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 17:11:08 +0000
|
6132
|
+
accept: 127.0.0.1:47881
|
6133
|
+
accept: 127.0.0.1:47880
|
6134
|
+
accept: 127.0.0.1:47883
|
6135
|
+
Rack::Handler::WEBrick is invoked.
|
6136
|
+
|
6137
|
+
|
6138
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 17:11:08 +0000
|
6139
|
+
Rack::Handler::WEBrick is invoked.
|
6140
|
+
|
6141
|
+
|
6142
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 17:11:08 +0000
|
6143
|
+
accept: 127.0.0.1:47882
|
6144
|
+
Rack::Handler::WEBrick is invoked.
|
6145
|
+
|
6146
|
+
|
6147
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 17:11:08 +0000
|
6148
|
+
accept: 127.0.0.1:47884
|
6149
|
+
Rack::Handler::WEBrick is invoked.
|
6150
|
+
|
6151
|
+
|
6152
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 17:11:08 +0000
|
6153
|
+
Rack::Handler::WEBrick is invoked.
|
6154
|
+
|
6155
|
+
|
6156
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 17:11:08 +0000
|
6157
|
+
Rack::Handler::WEBrick is invoked.
|
6158
|
+
|
6159
|
+
|
6160
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 17:11:08 +0000
|
6161
|
+
close: 127.0.0.1:47881
|
6162
|
+
close: 127.0.0.1:47882
|
6163
|
+
close: 127.0.0.1:47883
|
6164
|
+
close: 127.0.0.1:47884
|
6165
|
+
close: 127.0.0.1:47879
|
6166
|
+
close: 127.0.0.1:47880
|
6167
|
+
going to shutdown ...
|
6168
|
+
WEBrick::HTTPServer#start done.
|
6169
|
+
WEBrick 1.3.1
|
6170
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6171
|
+
Rack::Handler::WEBrick is mounted on /.
|
6172
|
+
WEBrick::HTTPServer#start: pid=12890 port=50599
|
6173
|
+
accept: 127.0.0.1:34134
|
6174
|
+
close: 127.0.0.1:34134
|
6175
|
+
accept: 127.0.0.1:34135
|
6176
|
+
Rack::Handler::WEBrick is invoked.
|
6177
|
+
|
6178
|
+
|
6179
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 17:42:54 +0000
|
6180
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6181
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6182
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (63.7ms)
|
6183
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6184
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (95.5ms)
|
6185
|
+
Completed 200 OK in 100ms (Views: 99.5ms)
|
6186
|
+
accept: 127.0.0.1:34140
|
6187
|
+
accept: 127.0.0.1:34138
|
6188
|
+
Rack::Handler::WEBrick is invoked.
|
6189
|
+
|
6190
|
+
|
6191
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 17:42:54 +0000
|
6192
|
+
accept: 127.0.0.1:34137
|
6193
|
+
Rack::Handler::WEBrick is invoked.
|
6194
|
+
accept: 127.0.0.1:34139
|
6195
|
+
Rack::Handler::WEBrick is invoked.
|
6196
|
+
Rack::Handler::WEBrick is invoked.
|
6197
|
+
accept: 127.0.0.1:34136
|
6198
|
+
Rack::Handler::WEBrick is invoked.
|
6199
|
+
Rack::Handler::WEBrick is invoked.
|
6200
|
+
|
6201
|
+
|
6202
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 17:42:54 +0000
|
6203
|
+
|
6204
|
+
|
6205
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 17:42:54 +0000
|
6206
|
+
Rack::Handler::WEBrick is invoked.
|
6207
|
+
|
6208
|
+
|
6209
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 17:42:54 +0000
|
6210
|
+
|
6211
|
+
|
6212
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 17:42:54 +0000
|
6213
|
+
|
6214
|
+
|
6215
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 17:42:54 +0000
|
6216
|
+
|
6217
|
+
|
6218
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 17:42:54 +0000
|
6219
|
+
close: 127.0.0.1:34140
|
6220
|
+
close: 127.0.0.1:34137
|
6221
|
+
close: 127.0.0.1:34136
|
6222
|
+
close: 127.0.0.1:34139
|
6223
|
+
close: 127.0.0.1:34138
|
6224
|
+
close: 127.0.0.1:34135
|
6225
|
+
going to shutdown ...
|
6226
|
+
WEBrick::HTTPServer#start done.
|
6227
|
+
WEBrick 1.3.1
|
6228
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6229
|
+
Rack::Handler::WEBrick is mounted on /.
|
6230
|
+
WEBrick::HTTPServer#start: pid=13093 port=48581
|
6231
|
+
accept: 127.0.0.1:42967
|
6232
|
+
close: 127.0.0.1:42967
|
6233
|
+
accept: 127.0.0.1:42968
|
6234
|
+
Rack::Handler::WEBrick is invoked.
|
6235
|
+
|
6236
|
+
|
6237
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 17:45:19 +0000
|
6238
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6239
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6240
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (61.4ms)
|
6241
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6242
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (92.7ms)
|
6243
|
+
Completed 200 OK in 97ms (Views: 96.8ms)
|
6244
|
+
Rack::Handler::WEBrick is invoked.
|
6245
|
+
|
6246
|
+
|
6247
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 17:45:19 +0000
|
6248
|
+
accept: 127.0.0.1:42972
|
6249
|
+
accept: 127.0.0.1:42969
|
6250
|
+
accept: 127.0.0.1:42971
|
6251
|
+
Rack::Handler::WEBrick is invoked.
|
6252
|
+
|
6253
|
+
|
6254
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 17:45:19 +0000
|
6255
|
+
accept: 127.0.0.1:42970
|
6256
|
+
Rack::Handler::WEBrick is invoked.
|
6257
|
+
|
6258
|
+
|
6259
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 17:45:19 +0000
|
6260
|
+
Rack::Handler::WEBrick is invoked.
|
6261
|
+
|
6262
|
+
|
6263
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 17:45:19 +0000
|
6264
|
+
accept: 127.0.0.1:42973
|
6265
|
+
Rack::Handler::WEBrick is invoked.
|
6266
|
+
Rack::Handler::WEBrick is invoked.
|
6267
|
+
Rack::Handler::WEBrick is invoked.
|
6268
|
+
|
6269
|
+
|
6270
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 17:45:19 +0000
|
6271
|
+
|
6272
|
+
|
6273
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 17:45:19 +0000
|
6274
|
+
|
6275
|
+
|
6276
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 17:45:19 +0000
|
6277
|
+
close: 127.0.0.1:42968
|
6278
|
+
close: 127.0.0.1:42970
|
6279
|
+
close: 127.0.0.1:42973
|
6280
|
+
close: 127.0.0.1:42972
|
6281
|
+
close: 127.0.0.1:42971
|
6282
|
+
close: 127.0.0.1:42969
|
6283
|
+
going to shutdown ...
|
6284
|
+
WEBrick::HTTPServer#start done.
|
6285
|
+
WEBrick 1.3.1
|
6286
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6287
|
+
Rack::Handler::WEBrick is mounted on /.
|
6288
|
+
WEBrick::HTTPServer#start: pid=13278 port=39785
|
6289
|
+
accept: 127.0.0.1:52087
|
6290
|
+
close: 127.0.0.1:52087
|
6291
|
+
accept: 127.0.0.1:52088
|
6292
|
+
Rack::Handler::WEBrick is invoked.
|
6293
|
+
|
6294
|
+
|
6295
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 17:47:00 +0000
|
6296
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6297
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6298
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (65.2ms)
|
6299
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6300
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (98.3ms)
|
6301
|
+
Completed 200 OK in 103ms (Views: 102.9ms)
|
6302
|
+
accept: 127.0.0.1:52089
|
6303
|
+
Rack::Handler::WEBrick is invoked.
|
6304
|
+
|
6305
|
+
|
6306
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 17:47:00 +0000
|
6307
|
+
Rack::Handler::WEBrick is invoked.
|
6308
|
+
|
6309
|
+
|
6310
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:00 +0000
|
6311
|
+
accept: 127.0.0.1:52090
|
6312
|
+
accept: 127.0.0.1:52092
|
6313
|
+
accept: 127.0.0.1:52091
|
6314
|
+
Rack::Handler::WEBrick is invoked.
|
6315
|
+
Rack::Handler::WEBrick is invoked.
|
6316
|
+
Rack::Handler::WEBrick is invoked.
|
6317
|
+
|
6318
|
+
|
6319
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:00 +0000
|
6320
|
+
|
6321
|
+
|
6322
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:00 +0000
|
6323
|
+
Rack::Handler::WEBrick is invoked.
|
6324
|
+
|
6325
|
+
|
6326
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:00 +0000
|
6327
|
+
accept: 127.0.0.1:52093
|
6328
|
+
Rack::Handler::WEBrick is invoked.
|
6329
|
+
|
6330
|
+
|
6331
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:00 +0000
|
6332
|
+
|
6333
|
+
|
6334
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:00 +0000
|
6335
|
+
close: 127.0.0.1:52090
|
6336
|
+
close: 127.0.0.1:52092
|
6337
|
+
close: 127.0.0.1:52089
|
6338
|
+
close: 127.0.0.1:52088
|
6339
|
+
close: 127.0.0.1:52091
|
6340
|
+
close: 127.0.0.1:52093
|
6341
|
+
going to shutdown ...
|
6342
|
+
WEBrick::HTTPServer#start done.
|
6343
|
+
WEBrick 1.3.1
|
6344
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6345
|
+
Rack::Handler::WEBrick is mounted on /.
|
6346
|
+
WEBrick::HTTPServer#start: pid=13327 port=55493
|
6347
|
+
accept: 127.0.0.1:53952
|
6348
|
+
close: 127.0.0.1:53952
|
6349
|
+
accept: 127.0.0.1:53953
|
6350
|
+
Rack::Handler::WEBrick is invoked.
|
6351
|
+
|
6352
|
+
|
6353
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 17:47:58 +0000
|
6354
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6355
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6356
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (60.4ms)
|
6357
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6358
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (91.2ms)
|
6359
|
+
Completed 200 OK in 96ms (Views: 95.6ms)
|
6360
|
+
Rack::Handler::WEBrick is invoked.
|
6361
|
+
|
6362
|
+
|
6363
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 17:47:58 +0000
|
6364
|
+
accept: 127.0.0.1:53955
|
6365
|
+
accept: 127.0.0.1:53957
|
6366
|
+
accept: 127.0.0.1:53954
|
6367
|
+
accept: 127.0.0.1:53958
|
6368
|
+
accept: 127.0.0.1:53956
|
6369
|
+
Rack::Handler::WEBrick is invoked.
|
6370
|
+
|
6371
|
+
|
6372
|
+
Rack::Handler::WEBrick is invoked.
|
6373
|
+
Rack::Handler::WEBrick is invoked.
|
6374
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:58 +0000
|
6375
|
+
Rack::Handler::WEBrick is invoked.
|
6376
|
+
Rack::Handler::WEBrick is invoked.
|
6377
|
+
Rack::Handler::WEBrick is invoked.
|
6378
|
+
|
6379
|
+
|
6380
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:58 +0000
|
6381
|
+
|
6382
|
+
|
6383
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:58 +0000
|
6384
|
+
|
6385
|
+
|
6386
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:58 +0000
|
6387
|
+
|
6388
|
+
|
6389
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:58 +0000
|
6390
|
+
|
6391
|
+
|
6392
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 17:47:58 +0000
|
6393
|
+
close: 127.0.0.1:53953
|
6394
|
+
close: 127.0.0.1:53958
|
6395
|
+
close: 127.0.0.1:53955
|
6396
|
+
close: 127.0.0.1:53956
|
6397
|
+
close: 127.0.0.1:53957
|
6398
|
+
close: 127.0.0.1:53954
|
6399
|
+
going to shutdown ...
|
6400
|
+
WEBrick::HTTPServer#start done.
|
6401
|
+
WEBrick 1.3.1
|
6402
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6403
|
+
Rack::Handler::WEBrick is mounted on /.
|
6404
|
+
WEBrick::HTTPServer#start: pid=14338 port=47791
|
6405
|
+
accept: 127.0.0.1:49101
|
6406
|
+
close: 127.0.0.1:49101
|
6407
|
+
accept: 127.0.0.1:49102
|
6408
|
+
Rack::Handler::WEBrick is invoked.
|
6409
|
+
|
6410
|
+
|
6411
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-21 19:29:21 +0000
|
6412
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6413
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6414
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (76.8ms)
|
6415
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6416
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (110.1ms)
|
6417
|
+
Completed 200 OK in 115ms (Views: 114.6ms)
|
6418
|
+
accept: 127.0.0.1:49103
|
6419
|
+
Rack::Handler::WEBrick is invoked.
|
6420
|
+
accept: 127.0.0.1:49104
|
6421
|
+
accept: 127.0.0.1:49105
|
6422
|
+
accept: 127.0.0.1:49106
|
6423
|
+
accept: 127.0.0.1:49107
|
6424
|
+
Rack::Handler::WEBrick is invoked.
|
6425
|
+
|
6426
|
+
|
6427
|
+
Rack::Handler::WEBrick is invoked.
|
6428
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-21 19:29:22 +0000
|
6429
|
+
Rack::Handler::WEBrick is invoked.
|
6430
|
+
Rack::Handler::WEBrick is invoked.
|
6431
|
+
Rack::Handler::WEBrick is invoked.
|
6432
|
+
|
6433
|
+
|
6434
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-21 19:29:22 +0000
|
6435
|
+
|
6436
|
+
|
6437
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-21 19:29:22 +0000
|
6438
|
+
|
6439
|
+
|
6440
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-21 19:29:22 +0000
|
6441
|
+
|
6442
|
+
|
6443
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-21 19:29:22 +0000
|
6444
|
+
|
6445
|
+
|
6446
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-21 19:29:22 +0000
|
6447
|
+
Rack::Handler::WEBrick is invoked.
|
6448
|
+
|
6449
|
+
|
6450
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-21 19:29:22 +0000
|
6451
|
+
close: 127.0.0.1:49102
|
6452
|
+
close: 127.0.0.1:49105
|
6453
|
+
close: 127.0.0.1:49107
|
6454
|
+
close: 127.0.0.1:49106
|
6455
|
+
close: 127.0.0.1:49104
|
6456
|
+
close: 127.0.0.1:49103
|
6457
|
+
going to shutdown ...
|
6458
|
+
WEBrick::HTTPServer#start done.
|
6459
|
+
WEBrick 1.3.1
|
6460
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6461
|
+
Rack::Handler::WEBrick is mounted on /.
|
6462
|
+
WEBrick::HTTPServer#start: pid=4237 port=46858
|
6463
|
+
accept: 127.0.0.1:44533
|
6464
|
+
close: 127.0.0.1:44533
|
6465
|
+
accept: 127.0.0.1:44534
|
6466
|
+
Rack::Handler::WEBrick is invoked.
|
6467
|
+
|
6468
|
+
|
6469
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-24 20:18:44 +0000
|
6470
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6471
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6472
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (89.2ms)
|
6473
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6474
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (133.2ms)
|
6475
|
+
Completed 200 OK in 142ms (Views: 141.8ms)
|
6476
|
+
accept: 127.0.0.1:44536
|
6477
|
+
Rack::Handler::WEBrick is invoked.
|
6478
|
+
|
6479
|
+
|
6480
|
+
accept: 127.0.0.1:44538
|
6481
|
+
accept: 127.0.0.1:44539
|
6482
|
+
Rack::Handler::WEBrick is invoked.
|
6483
|
+
accept: 127.0.0.1:44535
|
6484
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-24 20:18:44 +0000
|
6485
|
+
accept: 127.0.0.1:44537
|
6486
|
+
Rack::Handler::WEBrick is invoked.
|
6487
|
+
|
6488
|
+
|
6489
|
+
Started GET "/assets/routesjs.js?body=1" for 127.0.0.1 at 2014-09-24 20:18:44 +0000
|
6490
|
+
Rack::Handler::WEBrick is invoked.
|
6491
|
+
|
6492
|
+
|
6493
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-24 20:18:44 +0000
|
6494
|
+
Rack::Handler::WEBrick is invoked.
|
6495
|
+
Rack::Handler::WEBrick is invoked.
|
6496
|
+
|
6497
|
+
|
6498
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-24 20:18:44 +0000
|
6499
|
+
|
6500
|
+
|
6501
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-24 20:18:44 +0000
|
6502
|
+
|
6503
|
+
|
6504
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-24 20:18:44 +0000
|
6505
|
+
Rack::Handler::WEBrick is invoked.
|
6506
|
+
|
6507
|
+
|
6508
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-24 20:18:44 +0000
|
6509
|
+
Rack::Handler::WEBrick is invoked.
|
6510
|
+
|
6511
|
+
|
6512
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-24 20:18:44 +0000
|
6513
|
+
close: 127.0.0.1:44534
|
6514
|
+
close: 127.0.0.1:44536
|
6515
|
+
close: 127.0.0.1:44539
|
6516
|
+
close: 127.0.0.1:44538
|
6517
|
+
close: 127.0.0.1:44535
|
6518
|
+
close: 127.0.0.1:44537
|
6519
|
+
going to shutdown ...
|
6520
|
+
WEBrick::HTTPServer#start done.
|
6521
|
+
WEBrick 1.3.1
|
6522
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6523
|
+
Rack::Handler::WEBrick is mounted on /.
|
6524
|
+
WEBrick::HTTPServer#start: pid=4284 port=57326
|
6525
|
+
accept: 127.0.0.1:35283
|
6526
|
+
close: 127.0.0.1:35283
|
6527
|
+
accept: 127.0.0.1:35284
|
6528
|
+
Rack::Handler::WEBrick is invoked.
|
6529
|
+
|
6530
|
+
|
6531
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-24 20:19:26 +0000
|
6532
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6533
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6534
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (79.3ms)
|
6535
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.4ms)
|
6536
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (111.2ms)
|
6537
|
+
Completed 200 OK in 116ms (Views: 115.3ms)
|
6538
|
+
Rack::Handler::WEBrick is invoked.
|
6539
|
+
|
6540
|
+
|
6541
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-24 20:19:27 +0000
|
6542
|
+
accept: 127.0.0.1:35286
|
6543
|
+
accept: 127.0.0.1:35285
|
6544
|
+
accept: 127.0.0.1:35287
|
6545
|
+
Rack::Handler::WEBrick is invoked.
|
6546
|
+
|
6547
|
+
|
6548
|
+
Rack::Handler::WEBrick is invoked.
|
6549
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-24 20:19:27 +0000
|
6550
|
+
Rack::Handler::WEBrick is invoked.
|
6551
|
+
accept: 127.0.0.1:35288
|
6552
|
+
Rack::Handler::WEBrick is invoked.
|
6553
|
+
|
6554
|
+
|
6555
|
+
accept: 127.0.0.1:35289
|
6556
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-24 20:19:27 +0000
|
6557
|
+
Rack::Handler::WEBrick is invoked.
|
6558
|
+
Rack::Handler::WEBrick is invoked.
|
6559
|
+
|
6560
|
+
|
6561
|
+
Started GET "/assets/routesjs.js?body=1" for 127.0.0.1 at 2014-09-24 20:19:27 +0000
|
6562
|
+
Rack::Handler::WEBrick is invoked.
|
6563
|
+
|
6564
|
+
|
6565
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-24 20:19:27 +0000
|
6566
|
+
|
6567
|
+
|
6568
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-24 20:19:27 +0000
|
6569
|
+
|
6570
|
+
|
6571
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-24 20:19:27 +0000
|
6572
|
+
|
6573
|
+
|
6574
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-24 20:19:27 +0000
|
6575
|
+
close: 127.0.0.1:35288
|
6576
|
+
close: 127.0.0.1:35284
|
6577
|
+
close: 127.0.0.1:35287
|
6578
|
+
close: 127.0.0.1:35286
|
6579
|
+
close: 127.0.0.1:35285
|
6580
|
+
close: 127.0.0.1:35289
|
6581
|
+
going to shutdown ...
|
6582
|
+
WEBrick::HTTPServer#start done.
|
6583
|
+
WEBrick 1.3.1
|
6584
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6585
|
+
Rack::Handler::WEBrick is mounted on /.
|
6586
|
+
WEBrick::HTTPServer#start: pid=4381 port=57686
|
6587
|
+
accept: 127.0.0.1:50518
|
6588
|
+
close: 127.0.0.1:50518
|
6589
|
+
accept: 127.0.0.1:50519
|
6590
|
+
Rack::Handler::WEBrick is invoked.
|
6591
|
+
|
6592
|
+
|
6593
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-24 20:24:34 +0000
|
6594
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6595
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6596
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (142.3ms)
|
6597
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.5ms)
|
6598
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (202.6ms)
|
6599
|
+
Completed 200 OK in 213ms (Views: 211.6ms)
|
6600
|
+
accept: 127.0.0.1:50520
|
6601
|
+
Rack::Handler::WEBrick is invoked.
|
6602
|
+
|
6603
|
+
|
6604
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-24 20:24:35 +0000
|
6605
|
+
Rack::Handler::WEBrick is invoked.
|
6606
|
+
|
6607
|
+
|
6608
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-24 20:24:35 +0000
|
6609
|
+
accept: 127.0.0.1:50521
|
6610
|
+
Rack::Handler::WEBrick is invoked.
|
6611
|
+
|
6612
|
+
|
6613
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-24 20:24:35 +0000
|
6614
|
+
accept: 127.0.0.1:50524
|
6615
|
+
accept: 127.0.0.1:50522
|
6616
|
+
Rack::Handler::WEBrick is invoked.
|
6617
|
+
|
6618
|
+
|
6619
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-24 20:24:35 +0000
|
6620
|
+
accept: 127.0.0.1:50523
|
6621
|
+
Rack::Handler::WEBrick is invoked.
|
6622
|
+
|
6623
|
+
|
6624
|
+
Rack::Handler::WEBrick is invoked.
|
6625
|
+
Rack::Handler::WEBrick is invoked.
|
6626
|
+
Rack::Handler::WEBrick is invoked.
|
6627
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-24 20:24:35 +0000
|
6628
|
+
|
6629
|
+
|
6630
|
+
Started GET "/assets/routesjs.js?body=1" for 127.0.0.1 at 2014-09-24 20:24:35 +0000
|
6631
|
+
|
6632
|
+
|
6633
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-24 20:24:35 +0000
|
6634
|
+
|
6635
|
+
|
6636
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-24 20:24:35 +0000
|
6637
|
+
close: 127.0.0.1:50519
|
6638
|
+
close: 127.0.0.1:50520
|
6639
|
+
close: 127.0.0.1:50521
|
6640
|
+
close: 127.0.0.1:50522
|
6641
|
+
close: 127.0.0.1:50523
|
6642
|
+
close: 127.0.0.1:50524
|
6643
|
+
going to shutdown ...
|
6644
|
+
WEBrick::HTTPServer#start done.
|
6645
|
+
WEBrick 1.3.1
|
6646
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6647
|
+
Rack::Handler::WEBrick is mounted on /.
|
6648
|
+
WEBrick::HTTPServer#start: pid=4510 port=32849
|
6649
|
+
accept: 127.0.0.1:47911
|
6650
|
+
close: 127.0.0.1:47911
|
6651
|
+
accept: 127.0.0.1:47912
|
6652
|
+
Rack::Handler::WEBrick is invoked.
|
6653
|
+
|
6654
|
+
|
6655
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-24 20:26:37 +0000
|
6656
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6657
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6658
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (76.7ms)
|
6659
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6660
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (109.6ms)
|
6661
|
+
Completed 200 OK in 115ms (Views: 114.1ms)
|
6662
|
+
accept: 127.0.0.1:47917
|
6663
|
+
accept: 127.0.0.1:47915
|
6664
|
+
Rack::Handler::WEBrick is invoked.
|
6665
|
+
|
6666
|
+
|
6667
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:37 +0000
|
6668
|
+
accept: 127.0.0.1:47916
|
6669
|
+
Rack::Handler::WEBrick is invoked.
|
6670
|
+
|
6671
|
+
|
6672
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:37 +0000
|
6673
|
+
accept: 127.0.0.1:47914
|
6674
|
+
Rack::Handler::WEBrick is invoked.
|
6675
|
+
|
6676
|
+
|
6677
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:37 +0000
|
6678
|
+
Rack::Handler::WEBrick is invoked.
|
6679
|
+
accept: 127.0.0.1:47913
|
6680
|
+
Rack::Handler::WEBrick is invoked.
|
6681
|
+
Rack::Handler::WEBrick is invoked.
|
6682
|
+
Rack::Handler::WEBrick is invoked.
|
6683
|
+
|
6684
|
+
|
6685
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:37 +0000
|
6686
|
+
|
6687
|
+
|
6688
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-24 20:26:37 +0000
|
6689
|
+
|
6690
|
+
|
6691
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:37 +0000
|
6692
|
+
|
6693
|
+
|
6694
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:37 +0000
|
6695
|
+
close: 127.0.0.1:47913
|
6696
|
+
close: 127.0.0.1:47914
|
6697
|
+
close: 127.0.0.1:47915
|
6698
|
+
close: 127.0.0.1:47916
|
6699
|
+
close: 127.0.0.1:47917
|
6700
|
+
close: 127.0.0.1:47912
|
6701
|
+
going to shutdown ...
|
6702
|
+
WEBrick::HTTPServer#start done.
|
6703
|
+
WEBrick 1.3.1
|
6704
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6705
|
+
Rack::Handler::WEBrick is mounted on /.
|
6706
|
+
WEBrick::HTTPServer#start: pid=4555 port=53851
|
6707
|
+
accept: 127.0.0.1:35767
|
6708
|
+
close: 127.0.0.1:35767
|
6709
|
+
accept: 127.0.0.1:35768
|
6710
|
+
Rack::Handler::WEBrick is invoked.
|
6711
|
+
|
6712
|
+
|
6713
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-24 20:26:44 +0000
|
6714
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6715
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6716
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (66.0ms)
|
6717
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6718
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (98.5ms)
|
6719
|
+
Completed 200 OK in 103ms (Views: 102.7ms)
|
6720
|
+
Rack::Handler::WEBrick is invoked.
|
6721
|
+
|
6722
|
+
|
6723
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-24 20:26:44 +0000
|
6724
|
+
accept: 127.0.0.1:35771
|
6725
|
+
Rack::Handler::WEBrick is invoked.
|
6726
|
+
|
6727
|
+
|
6728
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:44 +0000
|
6729
|
+
accept: 127.0.0.1:35772
|
6730
|
+
Rack::Handler::WEBrick is invoked.
|
6731
|
+
|
6732
|
+
|
6733
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:44 +0000
|
6734
|
+
accept: 127.0.0.1:35773
|
6735
|
+
Rack::Handler::WEBrick is invoked.
|
6736
|
+
|
6737
|
+
|
6738
|
+
Rack::Handler::WEBrick is invoked.
|
6739
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:44 +0000
|
6740
|
+
accept: 127.0.0.1:35770
|
6741
|
+
Rack::Handler::WEBrick is invoked.
|
6742
|
+
|
6743
|
+
|
6744
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:44 +0000
|
6745
|
+
accept: 127.0.0.1:35769
|
6746
|
+
|
6747
|
+
|
6748
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:44 +0000
|
6749
|
+
Rack::Handler::WEBrick is invoked.
|
6750
|
+
|
6751
|
+
|
6752
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-24 20:26:44 +0000
|
6753
|
+
close: 127.0.0.1:35769
|
6754
|
+
close: 127.0.0.1:35771
|
6755
|
+
close: 127.0.0.1:35770
|
6756
|
+
close: 127.0.0.1:35768
|
6757
|
+
close: 127.0.0.1:35773
|
6758
|
+
close: 127.0.0.1:35772
|
6759
|
+
going to shutdown ...
|
6760
|
+
WEBrick::HTTPServer#start done.
|
6761
|
+
WEBrick 1.3.1
|
6762
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6763
|
+
Rack::Handler::WEBrick is mounted on /.
|
6764
|
+
WEBrick::HTTPServer#start: pid=4604 port=37630
|
6765
|
+
accept: 127.0.0.1:43329
|
6766
|
+
close: 127.0.0.1:43329
|
6767
|
+
accept: 127.0.0.1:43330
|
6768
|
+
Rack::Handler::WEBrick is invoked.
|
6769
|
+
|
6770
|
+
|
6771
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-24 20:27:50 +0000
|
6772
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6773
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6774
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (81.0ms)
|
6775
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6776
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (113.3ms)
|
6777
|
+
Completed 200 OK in 118ms (Views: 117.6ms)
|
6778
|
+
Rack::Handler::WEBrick is invoked.
|
6779
|
+
|
6780
|
+
|
6781
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-24 20:27:50 +0000
|
6782
|
+
accept: 127.0.0.1:43332
|
6783
|
+
accept: 127.0.0.1:43334
|
6784
|
+
accept: 127.0.0.1:43333
|
6785
|
+
accept: 127.0.0.1:43331
|
6786
|
+
Rack::Handler::WEBrick is invoked.
|
6787
|
+
|
6788
|
+
|
6789
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-24 20:27:50 +0000
|
6790
|
+
accept: 127.0.0.1:43335
|
6791
|
+
Rack::Handler::WEBrick is invoked.
|
6792
|
+
Rack::Handler::WEBrick is invoked.
|
6793
|
+
Rack::Handler::WEBrick is invoked.
|
6794
|
+
Rack::Handler::WEBrick is invoked.
|
6795
|
+
|
6796
|
+
|
6797
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-24 20:27:50 +0000
|
6798
|
+
|
6799
|
+
|
6800
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-24 20:27:50 +0000
|
6801
|
+
|
6802
|
+
|
6803
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-24 20:27:50 +0000
|
6804
|
+
|
6805
|
+
|
6806
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-24 20:27:50 +0000
|
6807
|
+
Rack::Handler::WEBrick is invoked.
|
6808
|
+
|
6809
|
+
|
6810
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-24 20:27:50 +0000
|
6811
|
+
close: 127.0.0.1:43330
|
6812
|
+
close: 127.0.0.1:43331
|
6813
|
+
close: 127.0.0.1:43332
|
6814
|
+
close: 127.0.0.1:43333
|
6815
|
+
close: 127.0.0.1:43334
|
6816
|
+
close: 127.0.0.1:43335
|
6817
|
+
going to shutdown ...
|
6818
|
+
WEBrick::HTTPServer#start done.
|
6819
|
+
WEBrick 1.3.1
|
6820
|
+
ruby 2.1.2 (2014-05-08) [x86_64-linux]
|
6821
|
+
Rack::Handler::WEBrick is mounted on /.
|
6822
|
+
WEBrick::HTTPServer#start: pid=5464 port=33675
|
6823
|
+
accept: 127.0.0.1:34646
|
6824
|
+
close: 127.0.0.1:34646
|
6825
|
+
accept: 127.0.0.1:34647
|
6826
|
+
Rack::Handler::WEBrick is invoked.
|
6827
|
+
|
6828
|
+
|
6829
|
+
Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2014-09-24 21:25:03 +0000
|
6830
|
+
Processing by Teaspoon::SuiteController#show as HTML
|
6831
|
+
Parameters: {"reporter"=>"Console", "suite"=>"default"}
|
6832
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_boot.html.erb (66.5ms)
|
6833
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/_body.html.erb (0.3ms)
|
6834
|
+
Rendered /home/vagrant/Code/routesjs_rails/vendor/bundle/gems/teaspoon-0.8.0/app/views/teaspoon/suite/show.html.erb (101.0ms)
|
6835
|
+
Completed 200 OK in 106ms (Views: 105.4ms)
|
6836
|
+
Rack::Handler::WEBrick is invoked.
|
6837
|
+
|
6838
|
+
|
6839
|
+
Started GET "/assets/teaspoon.css?body=1" for 127.0.0.1 at 2014-09-24 21:25:03 +0000
|
6840
|
+
accept: 127.0.0.1:34648
|
6841
|
+
Rack::Handler::WEBrick is invoked.
|
6842
|
+
accept: 127.0.0.1:34650
|
6843
|
+
|
6844
|
+
|
6845
|
+
Started GET "/assets/jasmine/1.3.1.js?body=1" for 127.0.0.1 at 2014-09-24 21:25:03 +0000
|
6846
|
+
accept: 127.0.0.1:34649
|
6847
|
+
Rack::Handler::WEBrick is invoked.
|
6848
|
+
|
6849
|
+
|
6850
|
+
Rack::Handler::WEBrick is invoked.
|
6851
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 127.0.0.1 at 2014-09-24 21:25:03 +0000
|
6852
|
+
accept: 127.0.0.1:34651
|
6853
|
+
Rack::Handler::WEBrick is invoked.
|
6854
|
+
accept: 127.0.0.1:34652
|
6855
|
+
|
6856
|
+
|
6857
|
+
Rack::Handler::WEBrick is invoked.
|
6858
|
+
Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2014-09-24 21:25:03 +0000
|
6859
|
+
Rack::Handler::WEBrick is invoked.
|
6860
|
+
|
6861
|
+
|
6862
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-24 21:25:03 +0000
|
6863
|
+
|
6864
|
+
|
6865
|
+
Started GET "/assets/routesjs-rails_spec.js?body=1" for 127.0.0.1 at 2014-09-24 21:25:03 +0000
|
6866
|
+
|
6867
|
+
|
6868
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2014-09-24 21:25:03 +0000
|
6869
|
+
close: 127.0.0.1:34647
|
6870
|
+
close: 127.0.0.1:34651
|
6871
|
+
close: 127.0.0.1:34652
|
6872
|
+
close: 127.0.0.1:34650
|
6873
|
+
close: 127.0.0.1:34649
|
6874
|
+
close: 127.0.0.1:34648
|
6875
|
+
going to shutdown ...
|
6876
|
+
WEBrick::HTTPServer#start done.
|
6877
|
+
|
6878
|
+
|
6879
|
+
Started GET "/" for 192.168.211.1 at 2014-09-24 22:12:30 +0000
|
6880
|
+
Processing by HomeController#index as HTML
|
6881
|
+
Rendered home/index.html.erb within layouts/application (1.0ms)
|
6882
|
+
Completed 200 OK in 41ms (Views: 40.5ms)
|
6883
|
+
|
6884
|
+
|
6885
|
+
Started GET "/assets/routesjs-rails.js?body=1" for 192.168.211.1 at 2014-09-24 22:12:30 +0000
|
6886
|
+
|
6887
|
+
|
6888
|
+
Started GET "/assets/application.css?body=1" for 192.168.211.1 at 2014-09-24 22:12:30 +0000
|
6889
|
+
|
6890
|
+
|
6891
|
+
Started GET "/assets/application.js?body=1" for 192.168.211.1 at 2014-09-24 22:12:30 +0000
|