We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8d4093 commit 37fc3bbCopy full SHA for 37fc3bb
README.md
@@ -44,8 +44,6 @@ opal has to include all dependencies into build.
44
45
* **line 90**: heredoc fails to parse in opal as EOS is used within heredoc
46
47
-* **line 171**: `&::Time.method(:now)` doesnt work so wrong method is set
48
-
49
## License
50
51
(The MIT License)
app/rspec/core.rb
@@ -168,7 +168,7 @@ module Core
168
# it.
169
class Time
170
class << self
171
- def now; ::Time.now; end #define_method(:now, &::Time.method(:now))
+ define_method(:now, &::Time.method(:now))
172
end
173
174
0 commit comments