Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Second pass #96

Open
wants to merge 38 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2aad47f
INITIAL commit with .gitignore and updated gemfiles.
jm-rives Nov 1, 2016
ee29483
UPDATE gemfile, add search controller
jm-rives Nov 1, 2016
fbcef37
ADD test controller file
jm-rives Nov 1, 2016
c42cc24
ADD controllers for search, show, and list
jm-rives Nov 1, 2016
56278ad
ADD test helper method VCR configuration.
jm-rives Nov 1, 2016
9ea1ef3
ADD Gemfile.lock updated
jm-rives Nov 2, 2016
b00d9db
UPDATE gemfile
jm-rives Nov 2, 2016
9e112e0
ADD Search controller
jm-rives Nov 3, 2016
3682bdf
ADD Search controller
jm-rives Nov 3, 2016
20e3ca9
ADD Results controller
jm-rives Nov 3, 2016
424d144
ADD Recipe controller
jm-rives Nov 3, 2016
19e366d
ADD wrapper for api_muncher
jm-rives Nov 3, 2016
7cc6331
ADD empty wrapper class
jm-rives Nov 3, 2016
06d069f
MERGE CONFLICT resolved
jm-rives Nov 3, 2016
e352e82
UPDATE gemfile/ gemlock
jm-rives Nov 3, 2016
9a50203
ADD attr_reader to api muncher
jm-rives Nov 3, 2016
05e22e7
ADD empty initialize method
jm-rives Nov 3, 2016
821b582
ADD partial wrapper and search view
jm-rives Nov 3, 2016
83234c7
ADD config autoload path, FIX Error in wrapper.
jm-rives Nov 5, 2016
66d8d51
UPDATED routes
jm-rives Nov 5, 2016
8155bd0
ADD index view
jm-rives Nov 5, 2016
94e485b
ADD working index view, updates to search controller and Api Muncher …
jm-rives Nov 6, 2016
b9dc8fd
ADD cassettes to .gitignore
jm-rives Nov 6, 2016
f8cf55e
ADD UPDATE to README
jm-rives Nov 7, 2016
9676305
Pre-checkout committ
jm-rives Nov 13, 2016
02ae263
ADD comments
jm-rives Nov 13, 2016
695f4dd
ADD working logo, working search, working link to one recipe
jm-rives Nov 13, 2016
db7f004
ADD updated png file
jm-rives Nov 13, 2016
44b9c6d
UPDATE to removed hard coding of range
jm-rives Nov 13, 2016
1bba5c4
ADD scaffolding code
jm-rives Nov 13, 2016
ae4222e
ADD next, prev, and home navigation to search
jm-rives Nov 13, 2016
f55a3ad
DELETED extraneous routes
jm-rives Nov 13, 2016
eb15d85
ADD recipe show route
jm-rives Nov 13, 2016
3d319f6
ADD extract recipe id (Had to have help with URI escaping)
jm-rives Nov 13, 2016
ed89b6d
ADD PARANOIA COMMIT
jm-rives Nov 13, 2016
19ce117
ADD API call and get_one_recipe method
jm-rives Nov 13, 2016
d0e0b9e
ADD working single recipe view
jm-rives Nov 14, 2016
d8de17b
ADD Paranoia commit
jm-rives Nov 14, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ADD recipe show route
jm-rives committed Nov 13, 2016
commit eb15d85521f45bdfded729ea9ecb0fec3c274c46
2 changes: 1 addition & 1 deletion app/views/recipe/show.html.erb
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<h1>Recipe#show</h1>
<p>Find me in app/views/recipe/show.html.erb</p>

2 changes: 1 addition & 1 deletion config/routes.rb
Original file line number Diff line number Diff line change
@@ -15,6 +15,6 @@

# Recipe routes

get 'recipe/show'
get 'recipe/show/:id' => 'recipe#show', as: 'recipe_show'

end