forest_liana 7.5.1 → 7.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/forest_liana/engine.rb +15 -0
- data/lib/forest_liana/version.rb +1 -1
- data/spec/requests/cors_spec.rb +65 -0
- data/spec/requests/test.ru +12 -0
- metadata +134 -130
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80772435e4e78793fb2335a629c754d0be1775b0b7de3c28fc10371eb37dfeb1
|
4
|
+
data.tar.gz: c682752c0a902b670d9128806aa8e8133cd268f761d849e21855b91ca9c37693
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50b9a9fba8f03b303ca9cf01aa939cfd6de759b892bb058cae5e1f798ebd487a515a13e0253d3b099e451c4ef123e2f49148a2645dd742bf3a7d917a6fc8756f
|
7
|
+
data.tar.gz: 85e7e9311a920b11a11727343f9c4669ffe037db4d9414353726f8793fb19999bcb16abce57eedae2c6f9d59cebf8bb7fdcd129050ad66a489b8e05dfd836e0d
|
data/lib/forest_liana/engine.rb
CHANGED
@@ -8,6 +8,21 @@ require 'bcrypt'
|
|
8
8
|
require_relative 'bootstrapper'
|
9
9
|
require_relative 'collection'
|
10
10
|
|
11
|
+
module Rack
|
12
|
+
class Cors
|
13
|
+
class Resource
|
14
|
+
def to_preflight_headers(env)
|
15
|
+
h = to_headers(env)
|
16
|
+
h['Access-Control-Allow-Private-Network'] = 'true' if env['HTTP_ACCESS_CONTROL_REQUEST_PRIVATE_NETWORK'] == 'true'
|
17
|
+
if env[HTTP_ACCESS_CONTROL_REQUEST_HEADERS]
|
18
|
+
h.merge!('Access-Control-Allow-Headers' => env[HTTP_ACCESS_CONTROL_REQUEST_HEADERS])
|
19
|
+
end
|
20
|
+
h
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
11
26
|
module ForestLiana
|
12
27
|
class Engine < ::Rails::Engine
|
13
28
|
isolate_namespace ForestLiana
|
data/lib/forest_liana/version.rb
CHANGED
@@ -0,0 +1,65 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
require 'rack/test'
|
3
|
+
require 'rack/cors'
|
4
|
+
|
5
|
+
class CaptureResult
|
6
|
+
def initialize(app, options = {})
|
7
|
+
@app = app
|
8
|
+
@result_holder = options[:holder]
|
9
|
+
end
|
10
|
+
|
11
|
+
def call(env)
|
12
|
+
env['HTTP_ACCESS_CONTROL_REQUEST_PRIVATE_NETWORK'] = 'true'
|
13
|
+
response = @app.call(env)
|
14
|
+
@result_holder.cors_result = env[Rack::Cors::RACK_CORS]
|
15
|
+
response
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
describe Rack::Cors do
|
20
|
+
|
21
|
+
include Rack::Test::Methods
|
22
|
+
|
23
|
+
attr_accessor :cors_result
|
24
|
+
|
25
|
+
def load_app(name, options = {})
|
26
|
+
test = self
|
27
|
+
Rack::Builder.new do
|
28
|
+
use CaptureResult, holder: test
|
29
|
+
eval File.read(File.dirname(__FILE__) + "/#{name}.ru")
|
30
|
+
use FakeProxy if options[:proxy]
|
31
|
+
map('/') do
|
32
|
+
run(lambda do |_env|
|
33
|
+
[
|
34
|
+
200,
|
35
|
+
{
|
36
|
+
'Content-Type' => 'text/html',
|
37
|
+
},
|
38
|
+
['success']
|
39
|
+
]
|
40
|
+
end)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
let(:app) { load_app('test') }
|
46
|
+
|
47
|
+
describe 'preflight requests' do
|
48
|
+
it 'should allow private network' do
|
49
|
+
preflight_request('http://localhost:3000', '/')
|
50
|
+
assert !last_response.headers['Access-Control-Allow-Private-Network'].nil?
|
51
|
+
assert last_response.headers['Access-Control-Allow-Private-Network'] == 'true'
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
protected
|
56
|
+
|
57
|
+
def preflight_request(origin, path, opts = {})
|
58
|
+
header 'Origin', origin
|
59
|
+
unless opts.key?(:method) && opts[:method].nil?
|
60
|
+
header 'Access-Control-Request-Method', opts[:method] ? opts[:method].to_s.upcase : 'GET'
|
61
|
+
end
|
62
|
+
header 'Access-Control-Request-Headers', opts[:headers] if opts[:headers]
|
63
|
+
options path
|
64
|
+
end
|
65
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: forest_liana
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.
|
4
|
+
version: 7.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sandro Munda
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03
|
11
|
+
date: 2022-05-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -381,9 +381,11 @@ files:
|
|
381
381
|
- spec/rails_helper.rb
|
382
382
|
- spec/requests/actions_controller_spec.rb
|
383
383
|
- spec/requests/authentications_spec.rb
|
384
|
+
- spec/requests/cors_spec.rb
|
384
385
|
- spec/requests/count_spec.rb
|
385
386
|
- spec/requests/resources_spec.rb
|
386
387
|
- spec/requests/stats_spec.rb
|
388
|
+
- spec/requests/test.ru
|
387
389
|
- spec/services/forest_liana/apimap_sorter_spec.rb
|
388
390
|
- spec/services/forest_liana/filters_parser_spec.rb
|
389
391
|
- spec/services/forest_liana/has_many_getter_spec.rb
|
@@ -513,174 +515,176 @@ signing_key:
|
|
513
515
|
specification_version: 4
|
514
516
|
summary: Official Rails Liana for Forest
|
515
517
|
test_files:
|
518
|
+
- test/fixtures/belongs_to_field.yml
|
519
|
+
- test/fixtures/has_many_field.yml
|
520
|
+
- test/fixtures/serialize_field.yml
|
521
|
+
- test/fixtures/tree.yml
|
522
|
+
- test/fixtures/string_field.yml
|
523
|
+
- test/fixtures/has_many_through_field.yml
|
524
|
+
- test/fixtures/has_one_field.yml
|
525
|
+
- test/fixtures/reference.yml
|
526
|
+
- test/fixtures/owner.yml
|
527
|
+
- test/forest_liana_test.rb
|
516
528
|
- test/routing/route_test.rb
|
529
|
+
- test/test_helper.rb
|
517
530
|
- test/services/forest_liana/operator_date_interval_parser_test.rb
|
518
531
|
- test/services/forest_liana/schema_adapter_test.rb
|
519
|
-
- test/dummy/config.ru
|
520
532
|
- test/dummy/public/favicon.ico
|
521
|
-
- test/dummy/public/500.html
|
522
533
|
- test/dummy/public/404.html
|
534
|
+
- test/dummy/public/500.html
|
523
535
|
- test/dummy/public/422.html
|
524
|
-
- test/dummy/config/application.rb
|
525
|
-
- test/dummy/config/database.yml
|
526
|
-
- test/dummy/config/secrets.yml
|
527
|
-
- test/dummy/config/environment.rb
|
528
|
-
- test/dummy/config/routes.rb
|
529
|
-
- test/dummy/config/locales/en.yml
|
530
|
-
- test/dummy/config/environments/development.rb
|
531
|
-
- test/dummy/config/environments/test.rb
|
532
|
-
- test/dummy/config/environments/production.rb
|
533
|
-
- test/dummy/config/boot.rb
|
534
|
-
- test/dummy/config/initializers/assets.rb
|
535
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
536
|
-
- test/dummy/config/initializers/inflections.rb
|
537
|
-
- test/dummy/config/initializers/session_store.rb
|
538
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
539
|
-
- test/dummy/config/initializers/filter_parameter_logging.rb
|
540
|
-
- test/dummy/config/initializers/mime_types.rb
|
541
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
542
|
-
- test/dummy/db/schema.rb
|
543
|
-
- test/dummy/db/migrate/20150608131430_create_integer_field.rb
|
544
|
-
- test/dummy/db/migrate/20150608132159_create_boolean_field.rb
|
545
|
-
- test/dummy/db/migrate/20150612112520_create_has_and_belongs_to_many_field.rb
|
546
|
-
- test/dummy/db/migrate/20160627172810_create_owner.rb
|
547
536
|
- test/dummy/db/migrate/20150608132621_create_string_field.rb
|
548
|
-
- test/dummy/db/migrate/
|
549
|
-
- test/dummy/db/migrate/
|
537
|
+
- test/dummy/db/migrate/20160628173505_add_timestamps.rb
|
538
|
+
- test/dummy/db/migrate/20160627172951_create_tree.rb
|
550
539
|
- test/dummy/db/migrate/20150608130516_create_date_field.rb
|
551
|
-
- test/dummy/db/migrate/20150608133044_create_has_one_field.rb
|
552
|
-
- test/dummy/db/migrate/20170614141921_create_serialize_field.rb
|
553
|
-
- test/dummy/db/migrate/20181111162121_create_references_table.rb
|
554
|
-
- test/dummy/db/migrate/20150608131610_create_float_field.rb
|
555
540
|
- test/dummy/db/migrate/20150609114636_create_belongs_to_class_name_field.rb
|
556
541
|
- test/dummy/db/migrate/20150814081918_create_has_many_through_field.rb
|
557
|
-
- test/dummy/db/migrate/
|
558
|
-
- test/dummy/db/migrate/20160627172951_create_tree.rb
|
559
|
-
- test/dummy/db/migrate/20160628173505_add_timestamps.rb
|
542
|
+
- test/dummy/db/migrate/20160627172810_create_owner.rb
|
560
543
|
- test/dummy/db/migrate/20150623115554_create_has_many_class_name_field.rb
|
544
|
+
- test/dummy/db/migrate/20150608132159_create_boolean_field.rb
|
545
|
+
- test/dummy/db/migrate/20150608131430_create_integer_field.rb
|
546
|
+
- test/dummy/db/migrate/20150612112520_create_has_and_belongs_to_many_field.rb
|
547
|
+
- test/dummy/db/migrate/20150608133038_create_belongs_to_field.rb
|
548
|
+
- test/dummy/db/migrate/20170614141921_create_serialize_field.rb
|
549
|
+
- test/dummy/db/migrate/20150608131610_create_float_field.rb
|
561
550
|
- test/dummy/db/migrate/20150608131603_create_decimal_field.rb
|
562
|
-
- test/dummy/
|
563
|
-
- test/dummy/
|
564
|
-
- test/dummy/
|
565
|
-
- test/dummy/
|
566
|
-
- test/dummy/
|
567
|
-
- test/dummy/
|
568
|
-
- test/dummy/
|
569
|
-
- test/dummy/
|
570
|
-
- test/dummy/
|
551
|
+
- test/dummy/db/migrate/20150608150016_create_has_many_field.rb
|
552
|
+
- test/dummy/db/migrate/20150608133044_create_has_one_field.rb
|
553
|
+
- test/dummy/db/migrate/20181111162121_create_references_table.rb
|
554
|
+
- test/dummy/db/migrate/20150616150629_create_polymorphic_field.rb
|
555
|
+
- test/dummy/db/schema.rb
|
556
|
+
- test/dummy/config.ru
|
557
|
+
- test/dummy/config/application.rb
|
558
|
+
- test/dummy/config/environments/development.rb
|
559
|
+
- test/dummy/config/environments/production.rb
|
560
|
+
- test/dummy/config/environments/test.rb
|
561
|
+
- test/dummy/config/boot.rb
|
562
|
+
- test/dummy/config/routes.rb
|
563
|
+
- test/dummy/config/secrets.yml
|
564
|
+
- test/dummy/config/database.yml
|
565
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
566
|
+
- test/dummy/config/initializers/mime_types.rb
|
567
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
568
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
569
|
+
- test/dummy/config/initializers/session_store.rb
|
570
|
+
- test/dummy/config/initializers/assets.rb
|
571
|
+
- test/dummy/config/initializers/inflections.rb
|
572
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
573
|
+
- test/dummy/config/environment.rb
|
574
|
+
- test/dummy/config/locales/en.yml
|
575
|
+
- test/dummy/README.rdoc
|
576
|
+
- test/dummy/app/controllers/application_controller.rb
|
571
577
|
- test/dummy/app/models/has_many_through_field.rb
|
572
|
-
- test/dummy/app/models/boolean_field.rb
|
573
|
-
- test/dummy/app/models/owner.rb
|
574
578
|
- test/dummy/app/models/polymorphic_field.rb
|
575
|
-
- test/dummy/app/models/
|
579
|
+
- test/dummy/app/models/string_field.rb
|
580
|
+
- test/dummy/app/models/date_field.rb
|
576
581
|
- test/dummy/app/models/belongs_to_class_name_field.rb
|
577
|
-
- test/dummy/app/models/
|
578
|
-
- test/dummy/app/models/
|
582
|
+
- test/dummy/app/models/owner.rb
|
583
|
+
- test/dummy/app/models/decimal_field.rb
|
579
584
|
- test/dummy/app/models/tree.rb
|
580
|
-
- test/dummy/app/models/float_field.rb
|
581
585
|
- test/dummy/app/models/has_many_field.rb
|
582
|
-
- test/dummy/app/models/has_one_field.rb
|
583
586
|
- test/dummy/app/models/has_many_class_name_field.rb
|
584
|
-
- test/dummy/app/
|
587
|
+
- test/dummy/app/models/boolean_field.rb
|
588
|
+
- test/dummy/app/models/integer_field.rb
|
589
|
+
- test/dummy/app/models/belongs_to_field.rb
|
590
|
+
- test/dummy/app/models/serialize_field.rb
|
591
|
+
- test/dummy/app/models/has_and_belongs_to_many_field.rb
|
592
|
+
- test/dummy/app/models/float_field.rb
|
593
|
+
- test/dummy/app/models/has_one_field.rb
|
594
|
+
- test/dummy/app/models/reference.rb
|
595
|
+
- test/dummy/app/views/layouts/application.html.erb
|
596
|
+
- test/dummy/app/assets/javascripts/application.js
|
597
|
+
- test/dummy/app/assets/stylesheets/application.css
|
598
|
+
- test/dummy/app/assets/config/manifest.js
|
585
599
|
- test/dummy/app/helpers/application_helper.rb
|
586
600
|
- test/dummy/Rakefile
|
587
|
-
- test/dummy/bin/setup
|
588
|
-
- test/dummy/bin/bundle
|
589
|
-
- test/dummy/bin/rails
|
590
601
|
- test/dummy/bin/rake
|
591
|
-
- test/dummy/
|
592
|
-
- test/
|
593
|
-
- test/
|
594
|
-
-
|
595
|
-
-
|
596
|
-
-
|
597
|
-
- test/fixtures/owner.yml
|
598
|
-
- test/fixtures/has_many_field.yml
|
599
|
-
- test/fixtures/serialize_field.yml
|
600
|
-
- test/fixtures/belongs_to_field.yml
|
601
|
-
- test/fixtures/reference.yml
|
602
|
-
- test/fixtures/string_field.yml
|
602
|
+
- test/dummy/bin/rails
|
603
|
+
- test/dummy/bin/bundle
|
604
|
+
- test/dummy/bin/setup
|
605
|
+
- spec/lib/forest_liana/schema_file_updater_spec.rb
|
606
|
+
- spec/lib/forest_liana/bootstrapper_spec.rb
|
607
|
+
- spec/config/initializers/logger_spec.rb
|
603
608
|
- spec/rails_helper.rb
|
604
|
-
- spec/requests/stats_spec.rb
|
605
|
-
- spec/requests/actions_controller_spec.rb
|
606
|
-
- spec/requests/authentications_spec.rb
|
607
|
-
- spec/requests/resources_spec.rb
|
608
|
-
- spec/requests/count_spec.rb
|
609
|
-
- spec/services/forest_liana/resource_updater_spec.rb
|
610
|
-
- spec/services/forest_liana/ip_whitelist_checker_spec.rb
|
611
|
-
- spec/services/forest_liana/permissions_formatter_spec.rb
|
612
|
-
- spec/services/forest_liana/resources_getter_spec.rb
|
613
|
-
- spec/services/forest_liana/apimap_sorter_spec.rb
|
614
|
-
- spec/services/forest_liana/permissions_checker_live_queries_spec.rb
|
615
|
-
- spec/services/forest_liana/value_stat_getter_spec.rb
|
616
|
-
- spec/services/forest_liana/permissions_checker_acl_disabled_spec.rb
|
617
|
-
- spec/services/forest_liana/smart_action_field_validator_spec.rb
|
618
609
|
- spec/services/forest_liana/scope_manager_spec.rb
|
619
|
-
- spec/services/forest_liana/
|
620
|
-
- spec/services/forest_liana/permissions_getter_spec.rb
|
621
|
-
- spec/services/forest_liana/has_many_getter_spec.rb
|
610
|
+
- spec/services/forest_liana/value_stat_getter_spec.rb
|
622
611
|
- spec/services/forest_liana/line_stat_getter_spec.rb
|
612
|
+
- spec/services/forest_liana/schema_adapter_spec.rb
|
613
|
+
- spec/services/forest_liana/permissions_formatter_spec.rb
|
623
614
|
- spec/services/forest_liana/pie_stat_getter_spec.rb
|
615
|
+
- spec/services/forest_liana/has_many_getter_spec.rb
|
616
|
+
- spec/services/forest_liana/permissions_getter_spec.rb
|
624
617
|
- spec/services/forest_liana/permissions_checker_acl_enabled_spec.rb
|
625
|
-
- spec/services/forest_liana/
|
618
|
+
- spec/services/forest_liana/filters_parser_spec.rb
|
619
|
+
- spec/services/forest_liana/permissions_checker_live_queries_spec.rb
|
620
|
+
- spec/services/forest_liana/ip_whitelist_checker_spec.rb
|
621
|
+
- spec/services/forest_liana/resource_updater_spec.rb
|
622
|
+
- spec/services/forest_liana/permissions_checker_acl_disabled_spec.rb
|
623
|
+
- spec/services/forest_liana/apimap_sorter_spec.rb
|
624
|
+
- spec/services/forest_liana/resources_getter_spec.rb
|
625
|
+
- spec/services/forest_liana/smart_action_field_validator_spec.rb
|
626
|
+
- spec/dummy/lib/forest_liana/controllers/owners_controller.rb
|
627
|
+
- spec/dummy/lib/forest_liana/controllers/owner_trees_controller.rb
|
628
|
+
- spec/dummy/lib/forest_liana/collections/user.rb
|
629
|
+
- spec/dummy/lib/forest_liana/collections/island.rb
|
630
|
+
- spec/dummy/lib/forest_liana/collections/location.rb
|
631
|
+
- spec/dummy/db/migrate/20210511141752_create_owners.rb
|
632
|
+
- spec/dummy/db/migrate/20190226173051_create_isle.rb
|
633
|
+
- spec/dummy/db/migrate/20190226172951_create_user.rb
|
634
|
+
- spec/dummy/db/migrate/20210526084712_create_products.rb
|
635
|
+
- spec/dummy/db/migrate/20210326140855_create_locations.rb
|
636
|
+
- spec/dummy/db/migrate/20190716130830_add_age_to_tree.rb
|
637
|
+
- spec/dummy/db/migrate/20190226174951_create_tree.rb
|
638
|
+
- spec/dummy/db/migrate/20190716135241_add_type_to_user.rb
|
639
|
+
- spec/dummy/db/migrate/20210326110524_create_references.rb
|
640
|
+
- spec/dummy/db/schema.rb
|
626
641
|
- spec/dummy/config.ru
|
627
642
|
- spec/dummy/config/application.rb
|
628
|
-
- spec/dummy/config/database.yml
|
629
|
-
- spec/dummy/config/secrets.yml
|
630
|
-
- spec/dummy/config/environment.rb
|
631
|
-
- spec/dummy/config/routes.rb
|
632
643
|
- spec/dummy/config/environments/development.rb
|
633
|
-
- spec/dummy/config/environments/test.rb
|
634
644
|
- spec/dummy/config/environments/production.rb
|
645
|
+
- spec/dummy/config/environments/test.rb
|
635
646
|
- spec/dummy/config/boot.rb
|
636
|
-
- spec/dummy/config/
|
637
|
-
- spec/dummy/config/
|
638
|
-
- spec/dummy/config/
|
639
|
-
- spec/dummy/config/initializers/
|
647
|
+
- spec/dummy/config/routes.rb
|
648
|
+
- spec/dummy/config/secrets.yml
|
649
|
+
- spec/dummy/config/database.yml
|
650
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
651
|
+
- spec/dummy/config/initializers/mime_types.rb
|
640
652
|
- spec/dummy/config/initializers/cookies_serializer.rb
|
641
653
|
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
642
|
-
- spec/dummy/config/initializers/mime_types.rb
|
643
654
|
- spec/dummy/config/initializers/forest_liana.rb
|
644
|
-
- spec/dummy/config/initializers/
|
645
|
-
- spec/dummy/
|
646
|
-
- spec/dummy/
|
647
|
-
- spec/dummy/
|
648
|
-
- spec/dummy/
|
649
|
-
- spec/dummy/
|
650
|
-
- spec/dummy/
|
651
|
-
- spec/dummy/
|
652
|
-
- spec/dummy/
|
653
|
-
- spec/dummy/db/migrate/20190226173051_create_isle.rb
|
654
|
-
- spec/dummy/db/migrate/20190716135241_add_type_to_user.rb
|
655
|
-
- spec/dummy/app/assets/javascripts/application.js
|
656
|
-
- spec/dummy/app/assets/stylesheets/application.css
|
657
|
-
- spec/dummy/app/assets/config/manifest.js
|
658
|
-
- spec/dummy/app/views/layouts/application.html.erb
|
655
|
+
- spec/dummy/config/initializers/session_store.rb
|
656
|
+
- spec/dummy/config/initializers/assets.rb
|
657
|
+
- spec/dummy/config/initializers/inflections.rb
|
658
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
659
|
+
- spec/dummy/config/environment.rb
|
660
|
+
- spec/dummy/README.rdoc
|
661
|
+
- spec/dummy/app/controllers/application_controller.rb
|
662
|
+
- spec/dummy/app/controllers/forest/islands_controller.rb
|
663
|
+
- spec/dummy/app/config/routes.rb
|
659
664
|
- spec/dummy/app/models/user.rb
|
665
|
+
- spec/dummy/app/models/product.rb
|
660
666
|
- spec/dummy/app/models/owner.rb
|
661
|
-
- spec/dummy/app/models/location.rb
|
662
|
-
- spec/dummy/app/models/reference.rb
|
663
667
|
- spec/dummy/app/models/tree.rb
|
664
|
-
- spec/dummy/app/models/product.rb
|
665
668
|
- spec/dummy/app/models/island.rb
|
666
|
-
- spec/dummy/app/
|
667
|
-
- spec/dummy/app/
|
668
|
-
- spec/dummy/app/
|
669
|
+
- spec/dummy/app/models/reference.rb
|
670
|
+
- spec/dummy/app/models/location.rb
|
671
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
672
|
+
- spec/dummy/app/assets/javascripts/application.js
|
673
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
674
|
+
- spec/dummy/app/assets/config/manifest.js
|
669
675
|
- spec/dummy/app/helpers/application_helper.rb
|
670
676
|
- spec/dummy/Rakefile
|
671
|
-
- spec/dummy/lib/forest_liana/controllers/owner_trees_controller.rb
|
672
|
-
- spec/dummy/lib/forest_liana/controllers/owners_controller.rb
|
673
|
-
- spec/dummy/lib/forest_liana/collections/user.rb
|
674
|
-
- spec/dummy/lib/forest_liana/collections/location.rb
|
675
|
-
- spec/dummy/lib/forest_liana/collections/island.rb
|
676
|
-
- spec/dummy/bin/setup
|
677
|
-
- spec/dummy/bin/bundle
|
678
|
-
- spec/dummy/bin/rails
|
679
677
|
- spec/dummy/bin/rake
|
680
|
-
- spec/dummy/
|
681
|
-
- spec/
|
682
|
-
- spec/
|
683
|
-
- spec/lib/forest_liana/schema_file_updater_spec.rb
|
684
|
-
- spec/lib/forest_liana/bootstrapper_spec.rb
|
678
|
+
- spec/dummy/bin/rails
|
679
|
+
- spec/dummy/bin/bundle
|
680
|
+
- spec/dummy/bin/setup
|
685
681
|
- spec/helpers/forest_liana/query_helper_spec.rb
|
686
682
|
- spec/helpers/forest_liana/schema_helper_spec.rb
|
683
|
+
- spec/requests/actions_controller_spec.rb
|
684
|
+
- spec/requests/resources_spec.rb
|
685
|
+
- spec/requests/test.ru
|
686
|
+
- spec/requests/stats_spec.rb
|
687
|
+
- spec/requests/count_spec.rb
|
688
|
+
- spec/requests/cors_spec.rb
|
689
|
+
- spec/requests/authentications_spec.rb
|
690
|
+
- spec/spec_helper.rb
|