Class: Fitting::Records::Spherical::Requests
- Inherits:
-
Object
- Object
- Fitting::Records::Spherical::Requests
- Defined in:
- lib/fitting/records/spherical/requests.rb
Instance Method Summary collapse
Instance Method Details
#to_a ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/fitting/records/spherical/requests.rb', line 8 def to_a return @to_a if @to_a array = [] Dir['fitting_tests/*.json'].each do |file| array += JSON.load(File.read(file)) end @to_a = array.inject([]) do |res, tested_request| request = Fitting::Records::Spherical::Request.load(tested_request) next res unless request.path.to_s.start_with?(Fitting.configuration.prefix) res.push(request) end end |