python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Rails Terminal tasks hang on use, while equivalent rake task works?
Recently started a Rails project being built for school (note I'm relatively new to Rails): Rails 6.1.4.4, Ruby 2.7.5, generated with the new Rails app command. You can find it here: https://github.co...

horaciovelvetine
Votes: 0
Answers: 0
Fill a PDF form with default data
I am working on editing a PDF form/template in Ruby On Rails application.
I want to populate some of form fields with data from database and make few fields editable to take the input from user.
I ...
Chakreshwar Sharma
Votes: 0
Answers: 1
Ruby: How to reference a variable defined outside of a module
How do I pass processor_pool to the method inside the module?
class Dummy
def initialize
processor_pool = Concurrent::FixedThreadPool.new(10)
@threadpool = Module.new do
extend Concu...
Dasmowenator
Votes: 0
Answers: 1
Can invalid signature errors ever trigger at runtime if code has been statically checked by Sorbet?
I was looking through the list of Sorbet runtime errors from the docs. It seems to me that "Errors from invalid sig procs" and "Errors from invalid sigs" would be caught by the Sor...
Bill C
Votes: 0
Answers: 1