Skip to content

Commit

Permalink
Another bug fixed upstream in opal (Time.method(:now))
Browse files Browse the repository at this point in the history
  • Loading branch information
adambeynon committed Nov 3, 2013
1 parent a8d4093 commit 37fc3bb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions README.md
Expand Up @@ -44,8 +44,6 @@ opal has to include all dependencies into build.

* **line 90**: heredoc fails to parse in opal as EOS is used within heredoc

* **line 171**: `&::Time.method(:now)` doesnt work so wrong method is set

## License

(The MIT License)
Expand Down
2 changes: 1 addition & 1 deletion app/rspec/core.rb
Expand Up @@ -168,7 +168,7 @@ module Core
# it.
class Time
class << self
def now; ::Time.now; end #define_method(:now, &::Time.method(:now))
define_method(:now, &::Time.method(:now))
end
end

Expand Down

0 comments on commit 37fc3bb

Please sign in to comment.