Parcourir la source

Fix warning by using Integer class rather than Fixnum

Fixnum and Bignum have been integrated as a single Integer class.

Previously this gave the warning: constant ::Fixnum is deprecated.

https://bugs.ruby-lang.org/issues/12005
main
Adrian Short il y a 2 ans
Parent
révision
6bd7a95702
Signé par un utilisateur non approuvé: adrian ID de la clé GPG: 4B54F9AE91AB06BB
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. +3
    -3
      lib/uk_planning_scraper/authority_scrape_params.rb

+ 3
- 3
lib/uk_planning_scraper/authority_scrape_params.rb Voir le fichier

@@ -12,7 +12,7 @@ module UKPlanningScraper
def validated_days(n)
# Validated within the last n days
# Assumes that every scraper/system can do a date range search
check_class(n, Fixnum)
check_class(n, Integer)

unless n > 0
raise ArgumentError.new("validated_days must be greater than 0")
@@ -26,7 +26,7 @@ module UKPlanningScraper
def received_days(n)
# received within the last n days
# Assumes that every scraper/system can do a date range search
check_class(n, Fixnum)
check_class(n, Integer)

unless n > 0
raise ArgumentError.new("received_days must be greater than 0")
@@ -40,7 +40,7 @@ module UKPlanningScraper
def decided_days(n)
# decided within the last n days
# Assumes that every scraper/system can do a date range search
check_class(n, Fixnum)
check_class(n, Integer)

unless n > 0
raise ArgumentError.new("decided_days must be greater than 0")


Chargement…
Annuler
Enregistrer