Jaffa

Results 18 comments of Jaffa

File.rb: ``` ruby def method puts 'Hello' end ``` ``` ruby require 'simplecov' SimpleCov.start puts "SimpleCov v#{SimpleCov::VERSION}" load File.expand_path('../file.rb', __FILE__) method load File.expand_path('../file.rb', __FILE__) ``` Result: > SimpleCov v0.10.0 >...

Oh sorry, I was running `SimpleCov.start` from the second file, but even with your test case, the output is different if I comment the second `load`: ``` json [ [...

Actually, I can get a correct result by patching Object#load and changing the command_name ``` ruby def load(file, wrap = false) SimpleCov.result SimpleCov.start do command_name "#{command_name}1" end Kernel.load(file, wrap) end...

Most of the stuff I plan to add to my inventaire are ebooks, so 👍

It's possible I editing these works between the merge and the revert-merge indeed

The shelf has been set for only one item (80ad2bc4c59713a69196f5cecb149263), but this time a whole lot more books got imported (basically all the books with missing ISBN) I still have...

@trisys3 I just `def load` directly in the file as stated in https://github.com/simplecov-ruby/simplecov/issues/389#issuecomment-104863943, this replaces the default Object#load that would get called otherwise

and mongoid 4...

Okay, I'm browsing the forks and found several ones which may match my needs.