Bartek Skwira

Results 10 issues of Bartek Skwira

Worksheet#insert_column method added. This was based on the equivalent method `insert_rows`. No tests - are they necessary to get this merged?

What are the 1. minimal and 2. recommended hardware (memory, CPU) setups RQ-Dashboard should run on? I'm using a docker image.

#### Environment info * OS: MacOS 11.6.5 Big Sur * App Version: 1.10.0 #### Description of the problem / feature request / question: Can't select multiple snippets. Tried using CTRL...

new feature

When I launch `rails console` (which defaults to pry) at start there is no class tab autocompletion, for example (assuming that I have a model named `User`): ``` rails c...

Would it be possible to also lint datetimes from `Faker`? It has a whole provider for datetimes https://faker.readthedocs.io/en/master/providers/faker.providers.date_time.html?highlight=future_datetime For example this usecase: ```python FAKE = Faker() FAKE.future_datetime() ``` Would fail...

In my `Rails` project I have a utility class (plain old ruby object) which does a request to GitHub api and saves Project model. Just a moment ago I have...

I use Rails Admin and I wanted to setup Rich with it. After bundle install I've run: ``` rails generate rich:install rake db:migrate ``` I use Devise with model name...

Urgent
Fix-me

Example: ``` class Project < ActiveRecord::Base include Flex::ModelIndexer flex.sync self def flex_source { :name => name } end module Flex include Flex::Scopes flex.context = Project scope :search_by_name, ->(name) { terms(name:...

Would it be possible to have commented-out class/module/method names automatically added behind `end` keywords? Example: ``` module Module class Superclass class Subclass def foo end # def foo end #...

Running model tests works, but when I try to run a Capybara/Poltergeist integration test I get exception: ``` An error occurred in an after hook Java::JavaLang::IllegalArgumentException: Object: # is not...