Chervil is a toy Lisp interpreter written in Ruby
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

spec_helper.rb 363B

1234567891011121314
  1. require "bundler/setup"
  2. require "chervil"
  3. RSpec.configure do |config|
  4. # Enable flags like --only-failures and --next-failure
  5. config.example_status_persistence_file_path = ".rspec_status"
  6. # Disable RSpec exposing methods globally on `Module` and `main`
  7. config.disable_monkey_patching!
  8. config.expect_with :rspec do |c|
  9. c.syntax = :expect
  10. end
  11. end