A Ruby gem to get planning applications data from UK council websites.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
382 B

  1. require 'simplecov'
  2. SimpleCov.start
  3. require 'uk_planning_scraper'
  4. RSpec.configure do |config|
  5. config.expect_with :rspec do |expectations|
  6. expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  7. end
  8. config.mock_with :rspec do |mocks|
  9. mocks.verify_partial_doubles = true
  10. end
  11. config.shared_context_metadata_behavior = :apply_to_host_groups
  12. end