Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
7617310
Panda Assignment submission.
codeblahblah Feb 3, 2014
66d4a23
Corrections to Panda Assignment submission.
codeblahblah Feb 3, 2014
86755ba
Tiger Assignment submission.
codeblahblah Feb 3, 2014
4344aac
Panda and Tiger assignment corrections.
codeblahblah Feb 4, 2014
93e0222
Added update feature to Automobile class.
codeblahblah Feb 4, 2014
4fa755a
Stopped update method from resetting instance variables if set.
codeblahblah Feb 4, 2014
31b8b38
Feature: Allow overwrite on update.
codeblahblah Feb 4, 2014
c5bf5c3
Feature: Fixed typos.
codeblahblah Feb 4, 2014
3a2f800
Eagle level: Create a class variable (@@) in the Vehicle that tracks …
codeblahblah Feb 6, 2014
73bb8b6
Eagle level: Corrected Automobile super method call to take zero argu…
codeblahblah Feb 6, 2014
cb981b9
Eagle level: First attempt at Vehicle search method based on https://…
codeblahblah Feb 6, 2014
4fba59b
Eagle level: Implemented Vehicle search method.
codeblahblah Feb 6, 2014
d7b7038
Eagle level: Added a more dynamic 'register' method.
codeblahblah Feb 6, 2014
8af26ed
Eagle level: Added first RSpec test for Motorcycle class.
codeblahblah Feb 6, 2014
4b8b0bb
Cleaned up registration process and add test case ideas.
codeblahblah Feb 7, 2014
e476509
Feature: Added .build . First Automobile test case now passes.
codeblahblah Feb 7, 2014
4e247f2
Feature: Added Automobile and Motorcycle test specs.
codeblahblah Feb 8, 2014
c7e1d6d
Switched to RSpec's let(:sym) {} syntax and added more tests.
codeblahblah Feb 11, 2014
0ef2e55
Latest Vehicle test specfications including #search test
codeblahblah Feb 11, 2014
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
15 changes: 15 additions & 0 deletions models/panda.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
class Automobile
attr_accessor :color, :make, :model, :year
def self.wheels
4
end

def initialize(args)
@color = args[:color]
@make = args[:make]
@model = args[:model]
@year = args[:year]
end
end

puts Automobile.wheels
40 changes: 40 additions & 0 deletions models/tiger.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
class Vehicle
def self.wheels
2
end
end

class Automobile < Vehicle

attr_accessor :color, :make, :model, :year
def self.wheels
4
end

def initialize(args)
@color = args[:color]
@make = args[:make]
@model = args[:model]
@year = args[:year]
end

def update(new_args)
@color = new_args[:color] if new_args[:color]
@make ||= new_args[:make] if new_args[:make]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why use "||=" ?

@model ||= new_args[:model] if new_args[:model]
@year ||= new_args[:year] if new_args[:year]
end
end

class Motorcycle < Vehicle
end

puts Motorcycle.wheels

auto = Automobile.new(color: 'Red', make: 'Ford', model: 'Mustang', year: 2007)
p auto
auto.update(color: 'Blue', year: 2012)
puts auto.color
puts auto.year
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what does purs auto.model output? Is it what you expect?

puts auto.model