Results 11 issues of eLod

When running specs the `AnyCable::Compatibility` checks are raising an error for setting `@_streams` (Channel instance variables are not supported by AnyCable, but were set: @_streams). The adapter is set to...

I'm using this workaround to enable something like `search(:title_matches_or_description_starts_with => 'foo')`. However my solution lifts the functionality that applies the condition from `Where#evaluate` to `Builder` (because we need to OR...

I'm not sure if I missed something but if I run `bundle exec cap production unicorn:start` it fails because `rails_env` is not set. With `bundle exec cap production deploy:set_rails_env unicorn:start`...

Rails 5.2.2, gem version 0.11. I understand `retry_on` and company not supported yet (though `discard_on` simply works), so this is not strictly a bug. `executions` (with `provider_id` and `priority` though...

bug

We could support scientific/exponential notation, if every languages roughly uses the `integer_with_fractinal_in_words exponential_separator exponent_in_words` form. All we need is support ordinals for `exponent_in_words`. I created a proof-of-concept implementation on the...

new feature

`assert_template` tries to create a failure message and (`Jbuilder`) errors ("Failed to add 'inspect' property ..."), because it tries to `inspect` the `Jbuilder` (rails-controller-testing tracks `locals`, `JbuilderTemplate` passes `json: self`...

Adding template and method (and option) to generate migration when generating a model. It was taken from the ActiveRecord model_generator, but i removed testing if parent class set (AR skips...

The railtie sets `::Sequel::Model.raise_on_save_failure = false` (in `config.after_initialize` block at `sequel-rails/railtie`), but except for development environment the models are already loaded at this stage, thus all the models have `raise_on_save_failure`...

The provided rake tasks 'db:create' and 'db:drop' are created like: ``` task :create, :env, :needs => :environment do |t, args| args.with_defaults(:env => Rails.env) ... ``` , which ends up `args...