Fix stubbed repo
This commit is contained in:
parent
458631c5ba
commit
7bb71bb088
2 changed files with 4 additions and 8 deletions
|
@ -24,11 +24,11 @@ class Repository
|
|||
end
|
||||
|
||||
def method_missing(m, *args, &block)
|
||||
@raw_repository.send(m, *args, &block)
|
||||
raw_repository.send(m, *args, &block)
|
||||
end
|
||||
|
||||
def respond_to?(method)
|
||||
return true if @raw_repository.respond_to?(method)
|
||||
return true if raw_repository.respond_to?(method)
|
||||
|
||||
super
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue