Mark Mayfield

- Total activity 29
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 8
-
Created Spellchecking in 2.0.2 RC2
Greetings...It seems that the spellchecking in 2.0.2 RC2 is buggy. Words that weren't flagged as misspelled (e.g., "present") are now flagged. Also, user added words no longer work.Thanks,Mark -
Created Overridden Indicators...
Greetings...I'm using the 2.0.2 RC.I have a situation where I have a Ruby class along with five different subclasses. When I click on the overridden indicator next to the class definition of method... -
Created Debugger not stopping when evaluating an expression...
Greetings...I'm using 2.0.2 RC and the help file states the following about using the expression evaluation feature: Method can be invoked within the Expression Evaluation dialog on... -
Created Moving breakpoints...
Greetings...I'm using the 2.0.2 RC...I'm not sure this is a bug...it might just be a normal condition.If I have breakpoints established in a file and I update via git and the file changes, the brea... -
Created Local variable not used anymore warning...
Greetings...The following code (and yes, this is just an example and not good Ruby code) pattern: def test x = 10 for i in 1..10 @z = x x *= 10 if @z < 10000 end end Will indic... -
Created Rails.env.development?
Greetings...I've been using the following in my code: RAILS_ENV == "development"But now the younger rails people want me to use: Rails.env.development?Because it's "nicer" they say.RubyMine... -
Created Code completion limitation
Can the code completion capability within RubyMine find methods defined in other user-defined classes? Or is it just limited to the currently edited user-defined class and built-in Ruby/Rails class...