S

Results 27 comments of S

i came with a smth: ```ruby module MatestackCoreHelper [ ActionView::Helpers::UrlHelper.instance_methods(false), ActionView::Helpers::AssetTagHelper.instance_methods(false), ].flatten.each do |rails_view_method| define_method rails_view_method do |*args, **opts, &block| if block args.unshift(matestack_to_s { block.call }) end plain { super(*args,...

I also tried with simple_form and it works, just had to add `simple_form_for` to call `PlainWrapper`

@ioquatix what should be the pool of database? for puma you would do smth like: ```ruby on_worker_boot do config = ActiveRecord::Base.configurations[rails_env] config["pool"] = puma_max_threads ActiveRecord::Base.establish_connection end ``` and puma_max_threads usually...

Sure, this can be used, with or w/o parallel_specs. I'm using it with docker. `browser_options` contains flags from a previous integration with `chromedriver-helper`. Then you need to increment the ports...

It is correct, because a .jb file returns a hash

first you need to compile the file, then run `node output.js`

Thx @kieraneglin I've also managed to use redirect with your approach, pasted here, someone else may find it usefull ```ruby get '*all', to: redirect { |_, req| "/?404=#{req.path}"}, constraints: ->(req)...

cool ty! that worked, but i had to put into docker-compose.yml

I managed to integrate the ruby VM inside wow ![image](https://github.com/user-attachments/assets/d9c11908-8a64-4c72-92ca-4092794345fc) ```ruby # frozen_string_literal: true module AzerothCore class EventRouter class

the glue code: ``` #include "ac_player.hpp" #include VALUE rb_cAcPlayer; AcPlayerWrapper::AcPlayerWrapper(Player* player) : m_player(player) {} std::string AcPlayerWrapper::GetName() const { return m_player->GetName(); } uint32 AcPlayerWrapper::GetLevel() const { return m_player->GetLevel(); } void AcPlayerWrapper::SetLevel(uint32...