This Bookmarks rail project is endlessly frustrating.
The walkthrough video does not correspond to what I am experiencing in the code editor
at step 16 after running bundle exec rake routes I get the following in my terminal in my code editor
$ bundle exec rake routes
/home/ccuser/.gem/ruby/2.3.0/gems/activesupport-4.1.1/lib/active_support/values/time_zone.rb:285: warning: circular argument reference - now
Prefix Verb URI Pattern Controller#Action
books POST /books(.:format) books#create
new_books GET /books/new(.:format) books#new
edit_books GET /books/edit(.:format) books#edit
GET /books(.:format) books#show
PATCH /books(.:format) books#update
PUT /books(.:format) books#update
DELETE /books(.:format) books#destroy
Of course in the video(Learn Ruby on Rails: Bookmarks - YouTube) at time stamp 10:47 on this same step the developer gets a books#index action in the terminal.
Why am I not also getting that action in my terminal? I have been following along exactly with this video tutorial. What a frustrating exercise I am ready to cry.