Results 23 issues of Denis Talakevich

## Summary When eager load HABTM association and access it `bullet` fails and asks to add non-existing assocaition to eager load. `RoutingPlan` has and belongs to many `RoutingGroup` `RoutingGroup` has...

in case of running rack application `env['rack.input']` is a `Falcon::Adapters::Input` with body `Protocol::HTTP1::Body::Fixed` which has `#empty?` method. Since body is not rewindable it's the only way to define if it...

[webpack-manifest-plugin](https://github.com/danethurber/webpack-manifest-plugin) is plugin for creating assets manifest. It creates JSON file with a mapping of all source file names to their corresponding output file. But manifest created with `webpack-pwa-manifest` not...

help wanted
low priority

## example that does not work: app/helpers/application_helper.rb ``` ruby module ApplicationHelper def arbre(&block) Arbre::Context.new({}, self, &block) end def static_pie_chart(data) arbre do div class: 'd3-pie-chart', 'data-series': data end end end ```...

i get ``` undefined local variable or method `doctype' for :Arbre::Context ``` on rendering layout application.html.arb ``` ruby doctype # this line html do head do title 'AdminLTE Arbre' text_node...

also it will be nice to have ability to pass template_object as proc

enhancement

When you are developing rails engine which has connects with two databases you don't have ordinary rails tasks like `db:migrate` `db:structure:load` etc. They are moved into `app` namespace. so instead...

ActiveRecord task db:migrate loads environment and config `activerecord-5.1.4/lib/active_record/railties/databases.rake:56` ```ruby desc "Migrate the database (options: VERSION=x, VERBOSE=false, SCOPE=blog)." task migrate: [:environment, :load_config] do ActiveRecord::Tasks::DatabaseTasks.migrate db_namespace["_dump"].invoke end ``` And SecondBase task db:second_base:migrate...

I'm using [Falcon](https://github.com/socketry/falcon) as http server for sinatra app that uses sinja for *json:api*. I've encountered a problem that my request.body is always malformed json. After digging in I've found...

Hi Im trying to use this gem with `Rails` I added `FiberPool` as middleware to my app ```ruby config.middleware.insert_before ActionDispatch::Cookies, Rack::FiberPool ``` And use `:em_synchrony` as `Farady` adapter code works...