Jonathon Jones

Results 4 comments of Jonathon Jones

I ran into the same issue. As a workaround, you can just manually create the appropriate migrations and then copy and paste the code from the templates into the generated...

Consider this case: ```ruby unless admin? || superuser? return "You are not authorized" end ``` That feels much more natural to me than ```ruby if !admin? && !superuser? return "You...

I have the same problem in 1.0.0.rc4: ``` /home/jon/.rvm/gems/ruby-1.9.2-p0/gems/cover_me-1.0.0.rc4/lib/cover_me/results.rb:9:in `eval': (eval):1: Invalid char `\x1F' in expression (SyntaxError) (eval):1: invalid multibyte char (UTF-8) from /home/jon/.rvm/gems/ruby-1.9.2-p0/gems/cover_me-1.0.0.rc4/lib/cover_me/results.rb:9:in `read_results' from /home/jon/.rvm/gems/ruby-1.9.2-p0/gems/cover_me-1.0.0.rc4/lib/cover_me/results.rb:16:in `merge_results!' from /home/jon/.rvm/gems/ruby-1.9.2-p0/gems/cover_me-1.0.0.rc4/lib/cover_me.rb:44:in...

If I get a chance, I'll put something together. I am really excited about this project - mutation testing is awesome!