regexp-examples v1.4.0 Release Notes

Release Date: 2017-10-15 // over 6 years ago
  • 🔧 Configuration options can now be made globally, e.g.

    RegexpExamples::Config.max_repeater_variance = 5
    RegexpExamples::Config.max_group_results = 10
    RegexpExamples::Config.max_results_limit = 20000
    

    Or within a block, e.g.

    RegexpExamples::Config.with_configuration(max_repeater_variance: 5) do
      # ...
    end
    

    All forms of configuration are now thread safe.