theine
theine copied to clipboard
Rails preloader for JRuby (similar to Zeus, Spring and Spork)
I'm maintaining an updated gem version here https://github.com/rwilliams/theine2. Would love to integrate the main gem.
I first ran this ``` $ theine_set_ruby /Users/anoop/.rbenv/versions/jruby-9.0.3.0/bin/ruby Set theine to run using /Users/anoop/.rbenv/versions/jruby-9.0.3.0/bin/ruby. ``` But shockingly I am getting this while using the following ``` $ theine_current_ruby WARNING: Use...
These methods no longer exist in Rails 6 maybe earlier. ``` ActionDispatch::Reloader.cleanup! ActionDispatch::Reloader.prepare! ``` I think [this](https://github.com/rwilliams/theine/commit/22a18c9c3a05eb3af71404cb30c28d8836cddd13#diff-81322e9bf979709dd1b1e06b5a6c617d) does the same thing?
I am facing a strange issue while using Theine. Certain classes/modules which are clearly in the autoload paths dont get loaded and throw a` NameError: uninitialized constant` error. When I...
When running my test suite through `theine rspec`, the test suit fails with a common issue that looks like this: ``` ActiveRecord::AssociationTypeMismatch: User(#14416) expected, got User(#14418) ``` This only happens...
Running model tests works, but when I try to run a Capybara/Poltergeist integration test I get exception: ``` An error occurred in an after hook Java::JavaLang::IllegalArgumentException: Object: # is not...
tset fails when theine is run from inside Sublime Text (no VT100 apparently)
For now, there is an option "Use pre-load server" with possible values: "None", "DRb", "Zeus" and "Spring". Specifying custom RSpec runner script do not work. The only possible solution is...
Can Theine be used in a Jruby on Rails application that is package for deployment with warble?
It looks like it wouldn't be too hard to support non-rails Rack apps. While not as bad as a Rails app, testing a Rack-only app still suffers from the pain...