Chervil is a toy Lisp interpreter written in Ruby
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

spec_helper.rb 367B

123456789101112131415
  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 =
  6. '.rspec_status'
  7. # Disable RSpec exposing methods globally on `Module` and `main`
  8. config.disable_monkey_patching!
  9. config.expect_with :rspec do |c|
  10. c.syntax = :expect
  11. end
  12. end