Alexander Popov
Alexander Popov
Hello. I'm trying to update RuboCop to version 0.82.0 for [Flame](https://github.com/AlexWayfer/flame). I'm using tabs in this project. And there is alignment in `.gemspec` file: ```ruby s.description = 'Use controller\'s classes...
```ruby pry: main > Rails.cache.write('test', true, unless_exist: true, expires_in: 15.seconds) # => true pry: main > Rails.cache.write('test', true, unless_exist: true, expires_in: 15.seconds) # => false pry: main > Timecop.travel(15.minutes.from_now) {...
Re-opening #808, closed at the first day for unknown reason. **Is your feature request related to a problem? Please describe.** We use [`nodenv`](https://github.com/nodenv/nodenv) in our Docker image, also we can...
**Describe the bug** Tests are failing sometimes in current `master` (df57cecce593f1438ae4dde196231ba1b721c73f): ``` > bundle exec rake Running RuboCop... Inspecting 115 files ................................................................................................................... 115 files inspected, no offenses detected install -c...
Read / write. Ruby has [Axlsx](https://rubygems.org/gems/axlsx), for example.
Hello! `define_singleton_method` in top-level works good. But `return` in `define_singleton_method`, defined in other instance method, doesn't. [Here is my snippet](https://gist.github.com/AlexWayfer/c175f338b5c3812f0d7222b2ffcfa417). Opal version is `0.10.2`. Thanks.
We have some specs where we're defining classes inside specs like this: ```ruby describe 'Foo' do class Bar def initialize(name) @name = name end def execute p @name end end...
Hello. I'm working on [R18n](https://github.com/r18n/r18n) and found an offense for such code: ```ruby # Override to_s to make string html safe if `html_safe` method is defined. def to_s if respond_to?(:html_safe)...
Right now `Ctrl-F` opens find in file and `Ctrl-Shift-F` opens replace in file. But I think there should be `Ctrl-Shift-F` for "Find in project", and "Replace" should be optional thing...
From #270. Right now you have to type manually something like `Ctrl+W`. I suggest to catch key combinations for shortcuts changing, it'd make UX easier and better. But there are...