Andriy Yanko
Andriy Yanko
Hello. That's about using - asset_path - image_path - image_tag - and friends After upgrade to latest version (4.2.6) and handlebars_assets(0.23.0) sprockets don't want anymore to compile templates like: ```...
Pull Request: https://github.com/bblimke/webmock/pull/839
### Problem `$ irb -r psych` ```ruby irb(main):001:0> Psych.load(Psych.dump(/\d/)) == /\d/ => true irb(main):002:0> Psych.load(Psych.dump(/\//)) == /\// => false ``` ## STR ``` $ cat psych_regexp.rb ``` ```ruby # frozen_string_literal:...
Hi there! I have very trivial lib: ## lib.rs ```rust #[macro_use] extern crate lazy_static; use std::sync::Mutex; ... #[cfg(test)] lazy_static! { pub static ref TEST_MUTEX: Mutex = Mutex::new(()); } ... ```...