Alexander S.

Results 57 issues of Alexander S.

Custom process names are enabled in the options but htop doesn't reflect any updates, e.g. when a process changes its name. Some processes display stats in their names, these are...

bug :bug:
MacOS :green_apple:

I need to disable the `show` action so I have the following in the `Ability` class ```ruby cannot :manage, :all can [:index, :destroy], MyModel ``` But no luck, the model...

Per page setting exist only in the `register` DSL but missing in configuration, which requires a huge amount of copy-pasting.

The gem includes `ActionView::Rendering` to the `API` controllers, which breaks `respond_to`. I'm not sure whether this is an issue in the Draper gem or the Responders gem should find a...

```ruby include Stripe::Callbacks after_stripe_event! do |target, event| Billing::Event.create!(stripe_id: event.id, kind: event.type, data: event.to_hash) end ``` The code above works well after the app restart. Once I modify the code the...

CommitWithin lets the client ask Solr to make sure this gets committed within a certain time. Could completely replace autoCommit strategy and significantly reduce Solr server loading, because allow Solr...

feature

This should be way more reliable than trying to guess the name, which can hardly work if the original field was configured with the `:as` option.

All merge conflicts were resolved. I did not update the readme yet, until the RSolr patch accepted (I will also create a new pull request for RSolr today and reference...

So with a SolrCloud cluster it will now be possible to reboot/shut down some nodes with zero downtime for the search service. The algorithm is quite simple, here's an example...

``` "tag_names"=>"Awesome,Test,Test 123" ``` The form field is defined like this: ``` f.input :tag_names, label: "Tags", as: :tags, collection: Tag.all.pluck(:name) ``` And inside the model I have: ``` def tag_names=(*names)...