Skip to content

Instantly share code, notes, and snippets.

@Evanto
Created February 21, 2017 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Evanto/9c84cb32fe6385f19bcf645a6946d663 to your computer and use it in GitHub Desktop.
Save Evanto/9c84cb32fe6385f19bcf645a6946d663 to your computer and use it in GitHub Desktop.
ubuntu@rails-dev-box:~/www/MovieApp$ rails s
/var/lib/gems/2.4.0/gems/activesupport-5.0.1/lib/active_support/xml_mini.rb:51: warning: constant ::Fixnum is deprecated
/var/lib/gems/2.4.0/gems/activesupport-5.0.1/lib/active_support/xml_mini.rb:52: warning: constant ::Bignum is deprecated
=> Booting Puma
=> Rails 5.0.1 application starting in development on http://localhost:3000
=> Run `rails server -h` for more startup options
/var/lib/gems/2.4.0/gems/activesupport-5.0.1/lib/active_support/core_ext/numeric/conversions.rb:138: warning: constant ::Fixnum is deprecated
Puma starting in single mode...
* Version 3.7.0 (ruby 2.4.0-p0), codename: Snowy Sagebrush
* Min threads: 5, max threads: 5
* Environment: development
* Listening on tcp://0.0.0.0:3000
Use Ctrl-C to stop
Started GET "/" for 10.0.2.2 at 2017-02-21 13:14:42 +0000
Cannot render console from 10.0.2.2! Allowed networks: 127.0.0.1, ::1, 127.0.0.0/127.255.255.255
ActiveRecord::SchemaMigration Load (7.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
Processing by Rails::WelcomeController#index as HTML
Parameters: {"internal"=>true}
Rendering /var/lib/gems/2.4.0/gems/railties-5.0.1/lib/rails/templates/rails/welcome/index.html.erb
Rendered /var/lib/gems/2.4.0/gems/railties-5.0.1/lib/rails/templates/rails/welcome/index.html.erb (5.2ms)
Completed 200 OK in 70ms (Views: 34.7ms | ActiveRecord: 0.0ms)
Started GET "/movies" for 10.0.2.2 at 2017-02-21 13:14:51 +0000
Cannot render console from 10.0.2.2! Allowed networks: 127.0.0.1, ::1, 127.0.0.0/127.255.255.255
Processing by MoviesController#index as HTML
Rendering movies/index.html.erb within layouts/application
Movie Load (1.7ms) SELECT "movies".* FROM "movies"
Rendered movies/index.html.erb within layouts/application (33.3ms)
Completed 200 OK in 688ms (Views: 610.3ms | ActiveRecord: 6.0ms)
Started GET "/actors" for 10.0.2.2 at 2017-02-21 13:15:03 +0000
Cannot render console from 10.0.2.2! Allowed networks: 127.0.0.1, ::1, 127.0.0.0/127.255.255.255
Processing by ActorsController#index as HTML
Rendering actors/index.html.erb within layouts/application
Actor Load (24.4ms) SELECT "actors".* FROM "actors"
Rendered actors/index.html.erb within layouts/application (42.4ms)
Completed 200 OK in 190ms (Views: 129.4ms | ActiveRecord: 32.5ms)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment