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

Maddie FarMar #54

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f4f46af
Creating File Structure
mjohnson3038 Sep 6, 2016
3764ef8
Fixing File Structure
mjohnson3038 Sep 6, 2016
b0167d2
modify spec_helper.rb
mjohnson3038 Sep 6, 2016
5408f06
completed self.all and self.find for market class
mjohnson3038 Sep 6, 2016
a21dd9b
class methods for Product complete
mjohnson3038 Sep 6, 2016
d126362
Adding self.all and self.find to Classes
mjohnson3038 Sep 6, 2016
465f342
self.all and self.find complete for all classes
mjohnson3038 Sep 6, 2016
56647de
Completed Market Vendor Method 100%
mjohnson3038 Sep 6, 2016
9ce900d
WIP Vendor #products
mjohnson3038 Sep 7, 2016
e0f7963
Add .gitignore
mjohnson3038 Sep 7, 2016
13835de
Attempting to hide coverage
mjohnson3038 Sep 7, 2016
c2dea35
Deleted Coverage
mjohnson3038 Sep 7, 2016
643b2a3
Hopefully this works
mjohnson3038 Sep 7, 2016
75fe7c4
Vendor Methods Completed: products, sales, revenue
mjohnson3038 Sep 7, 2016
7f9ce5d
Product Methods vendor and sales
mjohnson3038 Sep 7, 2016
e471bfd
Products number_of_sales
mjohnson3038 Sep 7, 2016
6a205dd
All instance methods for all classes completed
mjohnson3038 Sep 7, 2016
bf33dea
WIP Sale self.between
mjohnson3038 Sep 8, 2016
036c424
All Requirements Completed
mjohnson3038 Sep 8, 2016
2731eeb
Practice with before and let
mjohnson3038 Sep 8, 2016
8e12541
Working through Optional Requirements Part I
mjohnson3038 Sep 8, 2016
da5b14a
Fixed self.between
mjohnson3038 Sep 8, 2016
17fe9d0
self.revenue of product
mjohnson3038 Sep 9, 2016
707a676
Product self.most revenue - displaying id not instance
mjohnson3038 Sep 9, 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
Binary file added .DS_Store
Binary file not shown.
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
*.gem
*.rbc
/.config
/coverage/
/InstalledFiles
/pkg/
/spec/reports/
/test/tmp/
/test/version_tmp/
/tmp/

## Specific to RubyMotion:
.dat*
.repl_history
build/

## Documentation cache and generated files:
/.yardoc/
/_yardoc/
/doc/
/rdoc/

## Environment normalisation:
/.bundle/
/vendor/bundle
/lib/bundler/man/

# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# Gemfile.lock
# .ruby-version
# .ruby-gemset

# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc
g
7 changes: 7 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require 'rake/testtask'

Rake::TestTask.new do |t|
t.test_files = FileList['specs/*_spec.rb']
end

task default: :test
5 changes: 5 additions & 0 deletions coverage/.last_run.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"result": {
"covered_percent": 96.82
}
}
Loading