ソースを参照

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 2年前
コミット
6bd7a95702
部外の署名者: adrian GPGキーID: 4B54F9AE91AB06BB
1個のファイルの変更3行の追加3行の削除
  1. +3
    -3
      lib/uk_planning_scraper/authority_scrape_params.rb

+ 3
- 3
lib/uk_planning_scraper/authority_scrape_params.rb ファイルの表示

@@ -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")


読み込み中…
キャンセル
保存