nsastorage 0.3.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '027882423797fb41dbf5b61cdf99e94656445b0028a8b9b71aed0f372b927a65'
4
- data.tar.gz: c7b6123557b33879dce6088866076feb600edfca9e689e1e1d4ec623a15f504c
3
+ metadata.gz: ce9d4882c5eff9fafb6acf3e973cb3e48a56a7f81d32a2409ec5420db465b0e9
4
+ data.tar.gz: d743ca5567e457d70989e375a625cc40b9f90139d3d3389681b5e85d56d96b69
5
5
  SHA512:
6
- metadata.gz: a90cecc900f1b755674878cadd0eaec6cf635407df8ccebfac8110886c55e1912f9e70e8ae18da6dab7e9725dd2f49be5b54d0eb5e71eb398273bbe767740015
7
- data.tar.gz: 07a8772d62aa98fc6802201fb98ac85f369b00dcc2164e20ae4a8eaa5c44d80199781afaaf14ca0584edf0bab1de9e8d278dc691a258e3aab9ea805d3758ecfc
6
+ metadata.gz: deef28780dff57b43af1eefa9c83f3beecc3a225eb208f522b8c9652fdd768224024c3b20e321b35bcfd74f0770dbb3b42c8b6b644578ddd43f95f4e573d990c
7
+ data.tar.gz: 004ebc2fb6f5aadc8e9f919db17b409e0064aa5ccd7a38ba519637107a930d6a6aa4a0527abd56535a9d5a31bd4738f9426218b15c1c300ec501a1550f78d070
@@ -3,7 +3,9 @@
3
3
  module NSAStorage
4
4
  # The price (id + dimensions + rate) for a facility.
5
5
  class Price
6
- ID_REGEX = %r{(?<id>\d+)/rent/}
6
+ ID_REGEX = %r{(?<id>\d+)/(?:rent|reserve)/}
7
+ PRICE_SELECTOR = '[data-unit-size="small"],[data-unit-size="medium"],[data-unit-size="large"]'
8
+
7
9
  # @attribute [rw] id
8
10
  # @return [String]
9
11
  attr_accessor :id
@@ -26,7 +28,7 @@ module NSAStorage
26
28
  def self.fetch(facility_id:)
27
29
  url = "https://www.nsastorage.com/facility-units/#{facility_id}"
28
30
  html = Crawler.json(url:)['data']['html']['units']
29
- Nokogiri::HTML(html).css('[data-unit-size]').map { |element| parse(element:) }
31
+ Nokogiri::HTML(html).css(PRICE_SELECTOR).map { |element| parse(element:) }
30
32
  end
31
33
 
32
34
  # @param id [String]
@@ -19,7 +19,7 @@ module NSAStorage
19
19
  Link.new(loc:, lastmod:)
20
20
  end
21
21
 
22
- new(links: links.filter { |link| link.loc.match(%r{/storage/}) })
22
+ new(links: links.filter { |link| link.loc.match(%r{/storage/.*/\d+}) })
23
23
  end
24
24
 
25
25
  # @param url [String]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NSAStorage
4
- VERSION = '0.3.0'
4
+ VERSION = '0.5.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nsastorage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Sylvestre