Your boss loves what you did with the inventory app in ToyCity 3, but now has another request. She wants to be able to permanently store the data in a database, and update the database through the app rather than modify the database directly by hand.
In this project, you will use all the knowledge you learned in this Nanodegree program to create a special class called Udacidata that will map each Product object to an entry in the ToyCity database.
Keeping large amounts of data organized is one of the number one challenges web developers address on a daily basis. The general organization of this project reflects the structure of a tool called ActiveRecord, which is used frequently as a Ruby on Rails developer.
You should have completed all the necessary steps for finishing this project in ToyCity 4. Before submitting, ensure your program returns the correct values for all the sample code provided in app.rb
, and meets the following requirements.
- Udacidata: The
Udacidata
class has all of the required methods correctly implemented. Each method returns the expected return values outlined in the lesson and inudacidata_test.rb
.all
create
first
andfirst(n)
last
andlast(n)
destroy
update
find
andfind_by_#{attribute}
where
- Modules: The
Analyzable
module contains all of the required methods correctly implemented. Each method returns the expected return values outlined in the lesson and inanalyzable_test.rb
count_by_brand
count_by_name
average_price
print_report
- Seeds: The Faker gem is used to generate fake data in the
db_seed
method insideseeds.rb
.db_seed
populates the database with 10 newProduct
s. - Metaprogramming: Metaprogramming concepts (e.g., re-opening classes,
define_method
,class_eval
, etc.) are used to dynamically define thefind_by_#{attribute}
methods rather than hardcoding them. - Test-Driven-Development: The student uses TDD and all of the tests in both
udacidata_test.rb
andanalyzable_test.rb
pass. - Modules: The
Analyzable
module contains all of the required methods correctly implemented. - Final Output: The code in
app.rb
is uncommented after the tests pass and outputs the expected return values to the terminal. (Code demonstrating error handling can remain commented out.) - Errors:
ProductNotFoundError
is raised when non-existent product IDs are passed in as arguments. - .gitignore: Files like
.DS_Store
anddata.csv
are added and ignored using a.gitignore
Additionally, the following requirements have been met:
- The project is submitted using GitHub, with regular commits
- Code follows proper style and naming conventions
Before submitting your project for evaluation, we recommend that you check that each of the following is true:
- Your program runs without any errors
- You are proud of your project and its output
- You completed your project according to the instructions
- You checked your project against the rubric
- When you feel ready to submit, use the blue 'Submit Project' button below!
This repository is deprecated; therefore, we are going to archive it. However, learners will be able to fork it to their personal Github account but cannot submit PRs to this repository. If you have any issues or suggestions to make, feel free to:
- Utilize the https://knowledge.udacity.com/ forum to seek help on content-specific issues.
- Submit a support ticket along with the link to your forked repository if (learners are) blocked for other reasons. Here are the links for the retail consumers and enterprise learners.