no_follow_external_links 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +31 -0
- data/app/assets/config/no_follow_external_links_manifest.js +2 -0
- data/app/assets/javascripts/no_follow_external_links/application.js +13 -0
- data/app/assets/stylesheets/no_follow_external_links/application.css +15 -0
- data/app/controllers/no_follow_external_links/application_controller.rb +5 -0
- data/app/helpers/no_follow_external_links/application_helper.rb +4 -0
- data/app/jobs/no_follow_external_links/application_job.rb +4 -0
- data/app/mailers/no_follow_external_links/application_mailer.rb +6 -0
- data/app/models/no_follow_external_links/application_record.rb +5 -0
- data/app/views/layouts/no_follow_external_links/application.html.erb +14 -0
- data/config/initializers/no_follow_external_links.rb +14 -0
- data/config/routes.rb +2 -0
- data/lib/no_follow_external_links/engine.rb +11 -0
- data/lib/no_follow_external_links/version.rb +3 -0
- data/lib/no_follow_external_links.rb +5 -0
- data/lib/tasks/no_follow_external_links_tasks.rake +4 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +5 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/javascripts/cable.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/controllers/cars_controller.rb +7 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/jobs/application_job.rb +2 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/app/views/cars/index.html.erb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +34 -0
- data/spec/dummy/bin/update +29 -0
- data/spec/dummy/config/application.rb +15 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/cable.yml +9 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +54 -0
- data/spec/dummy/config/environments/production.rb +86 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
- data/spec/dummy/config/initializers/assets.rb +11 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/new_framework_defaults.rb +24 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/puma.rb +47 -0
- data/spec/dummy/config/routes.rb +7 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +342 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1j/1jRwQ0YnoVng8L86UewdhBixkiWz0S8sDzSIB7Uv3Dw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3e/3eR9lDnymSZKWkTZ8b3aHI1WDkHtRe1VuIGPscVUcbE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5F/5FOXY3_INUFSQSFFGWlxWMzhZaivrz0o2WhRTterQgc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5p/5ppfhwuuFDmLcjOfyQjLOIkicPOg1XuKmSo-_xCj6vw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7r/7rSz3-AzZAmO3Vn1xMc9rWcbzy2ULAsj5Vzt-lGJATg.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9r/9rZQcrqoeoMNW0djO5UBibgghrnMS2tC98R2rtL2ZGg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CN/CNfdXz-JbHMgAiTrycNBFSIP5BvlleJvD0HfYdwrIyc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CU/CUKnFgB07an8dzzZEgMdHj2ZC2UERZlzkQc3CgPhjwY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CZ/CZryX_aoT3uHGQjd_dZ0e9bFVtoM8dgLxUUuBnWr16M.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ce/CeObBTN7D3lw6wSXFxDCiemPMBjEUh6aHKW8BkoUu4M.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DH/DHmlXCihJe3gi8xl-0aJDugPR-4wGC8zXraFbmY9yRo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/E_/E_T-xsxYo0-qxRQz-zvESH1fJdgQny0mGRsdMOcpCI4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fj/FjTv0b84ZdM0Z-5qgy2ztl47DYnRbmNrKTAytbTmpgA.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fm/Fm5Qe1FqolCRYnur3YDCOd3OdtsiAbQmO2bEb--g6bE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HJ/HJdHR8UDD90CZRu_u0dB9kbY9-tEajDdJvhoAO473Jk.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HS/HS-dhOl-v4FGgcoW-6aDqp0qWeSeQz07BF_u9e9qy-w.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JL/JLkcd_-MgCc-N99TDGhr9O6wI35UI0UhMYIvs6H-_mc.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Jf/JfcnlsfkyWML_-yO2tdHRz7VuoEvlF_R6JHyvhCzFEc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LL/LLt0ZEF-bh-VKtxgoewjsaT3eHf7onzcYiWoUYL8-ko.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NF/NFluf2twe5MK3ErgoqlLQJrQ4N_nB3cYD-DGRvY1HS4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ni/NioxP1_jdpRmbvd4VpAiyIm3X-H6Hc71yuDLnE4neEA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pc/PcazyTDJ5Pzi509Xietem5Sx8xYyaBiUfgnrp0DBw0A.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QQ/QQyRRvZJSl8C-13xGxWlU2CJ0aRMgjZriCQOsXJ8P1M.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RS/RSFAy5GqqAiPHVsiTeH1UJconsCqGxf1PdoAnu5rugw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rp/Rp1-hK4ZoTze0TCPeFMGxGQhEH7bVT9YdY_rBEc2Pps.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SE/SEGeo_jO1qxaZR60wSPhyE6KCWphPYy1ptLl_tCFqek.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sf/SfgEDS4B_2sWGuQWzua8myi4FdZf43XCUWc3UZZbZxQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sz/SzB0cJ8LTfM0oJWIyEPeU6VQPElsVs46BG-eCForqBk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ta/Ta_H9cdRDUq54ES8yW89x7a59DtpNHm4bByqe-cAClY.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ur/UrRD1kGtTf_7tHixFyeUy4OZi8KGioBqJTZCVYqjAiM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Vs/VsvI1gHJGSL8saHQ1is2nMPYjXHQHuRwZWMI0dvqHLY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/X1/X1nqWcrPhwnoGkRxTJcGLguucRNEk0vBia5VI2Isnrs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Zl/Zlabymek1OchThl--EYnug-w71BxsUbsswgwbbi3X4w.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/b_/b_Itlk9QZZd7Rvf8kcA4yLP1R5Acu7jB-m1xQiSU0qE.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/c5/c5hwZdzP1wIK28A2Nz1yclI_c0RRKpOoJk-bP81gSfo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cG/cG-pu2gufpBsuW3pO4713Jwu-XeiC33M3JZzNoU7vjo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fv/fve4mWYOwQzP2PYWLiZ7oIJpxamwo6a8aQ_3fwSnZOM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/l4/l4y9eOs5I8dBNp7KC2BenIpg61KY7oXv2ST4MgThTd0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mX/mX1nlsL_SWOB4y22W5FheRX0YEONKyOY7xUeIvRiHco.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/og/ogoLYtR94bw0C9M3lu_TsInIZO1TwDfzHS3R30A63ng.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sI/sImVbf9Q1mqT2id0NmqCSM8Ch3E4m1ufbN_sDD-9Esw.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sR/sRvtfkdtVjhseViAgFqGbRnB7kcyUebxGK7nc3Lc9IU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vj/vjJ7JIMfsYtpxhgq-RBkboefb3-51nCvJoMshKAU2Is.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/x3/x31uJ6wJMwD1fkKuE63eoHEzmjy8c1HpuJMriIfkL7Q.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yT/yTBgOVdriipCfu0f-gBdtxY7YwyFmTyw8XmeYbxRYRI.cache +1 -0
- data/spec/feature/external_links_spec.rb +15 -0
- data/spec/feature/internal_links_spec.rb +23 -0
- data/spec/spec_helper.rb +19 -0
- metadata +398 -0
|
@@ -0,0 +1,342 @@
|
|
|
1
|
+
[1m[35m (2.6ms)[0m [1m[36mbegin transaction[0m
|
|
2
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
3
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
4
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
5
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
6
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
7
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
8
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:23:40 -0300
|
|
9
|
+
Processing by CarsController#index as HTML
|
|
10
|
+
Rendering cars/index.html.erb within layouts/application
|
|
11
|
+
Rendered cars/index.html.erb within layouts/application (5.6ms)
|
|
12
|
+
Completed 200 OK in 238ms (Views: 235.8ms | ActiveRecord: 0.0ms)
|
|
13
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
14
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
15
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:25:44 -0300
|
|
16
|
+
Processing by CarsController#index as HTML
|
|
17
|
+
Rendering cars/index.html.erb within layouts/application
|
|
18
|
+
Rendered cars/index.html.erb within layouts/application (3.6ms)
|
|
19
|
+
Completed 200 OK in 203ms (Views: 202.0ms | ActiveRecord: 0.0ms)
|
|
20
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
21
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
22
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:25:44 -0300
|
|
23
|
+
Processing by CarsController#index as HTML
|
|
24
|
+
Rendering cars/index.html.erb within layouts/application
|
|
25
|
+
Rendered cars/index.html.erb within layouts/application (0.4ms)
|
|
26
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
27
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
28
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
29
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:26:20 -0300
|
|
30
|
+
Processing by CarsController#index as HTML
|
|
31
|
+
Rendering cars/index.html.erb within layouts/application
|
|
32
|
+
Rendered cars/index.html.erb within layouts/application (3.7ms)
|
|
33
|
+
Completed 200 OK in 184ms (Views: 182.5ms | ActiveRecord: 0.0ms)
|
|
34
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
35
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
36
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:26:20 -0300
|
|
37
|
+
Processing by CarsController#index as HTML
|
|
38
|
+
Rendering cars/index.html.erb within layouts/application
|
|
39
|
+
Rendered cars/index.html.erb within layouts/application (0.4ms)
|
|
40
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
|
41
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
42
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
43
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:27:22 -0300
|
|
44
|
+
Processing by CarsController#index as HTML
|
|
45
|
+
Rendering cars/index.html.erb within layouts/application
|
|
46
|
+
Rendered cars/index.html.erb within layouts/application (3.5ms)
|
|
47
|
+
Completed 200 OK in 202ms (Views: 200.8ms | ActiveRecord: 0.0ms)
|
|
48
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
49
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
50
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:27:22 -0300
|
|
51
|
+
Processing by CarsController#index as HTML
|
|
52
|
+
Rendering cars/index.html.erb within layouts/application
|
|
53
|
+
Rendered cars/index.html.erb within layouts/application (0.8ms)
|
|
54
|
+
Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
|
55
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
56
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
57
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:31:02 -0300
|
|
58
|
+
Processing by CarsController#index as HTML
|
|
59
|
+
Rendering cars/index.html.erb within layouts/application
|
|
60
|
+
Rendered cars/index.html.erb within layouts/application (3.5ms)
|
|
61
|
+
Completed 200 OK in 178ms (Views: 176.4ms | ActiveRecord: 0.0ms)
|
|
62
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
63
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
64
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:31:02 -0300
|
|
65
|
+
Processing by CarsController#index as HTML
|
|
66
|
+
Rendering cars/index.html.erb within layouts/application
|
|
67
|
+
Rendered cars/index.html.erb within layouts/application (0.9ms)
|
|
68
|
+
Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.0ms)
|
|
69
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
70
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
71
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:31:16 -0300
|
|
72
|
+
Processing by CarsController#index as HTML
|
|
73
|
+
Rendering cars/index.html.erb within layouts/application
|
|
74
|
+
Rendered cars/index.html.erb within layouts/application (3.5ms)
|
|
75
|
+
Completed 200 OK in 196ms (Views: 194.4ms | ActiveRecord: 0.0ms)
|
|
76
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
77
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
78
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:31:16 -0300
|
|
79
|
+
Processing by CarsController#index as HTML
|
|
80
|
+
Rendering cars/index.html.erb within layouts/application
|
|
81
|
+
Rendered cars/index.html.erb within layouts/application (0.6ms)
|
|
82
|
+
Completed 200 OK in 8ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
|
83
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
84
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
85
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:33:33 -0300
|
|
86
|
+
Processing by CarsController#index as HTML
|
|
87
|
+
Rendering cars/index.html.erb within layouts/application
|
|
88
|
+
Rendered cars/index.html.erb within layouts/application (3.5ms)
|
|
89
|
+
Completed 200 OK in 186ms (Views: 185.3ms | ActiveRecord: 0.0ms)
|
|
90
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
91
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
92
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:33:33 -0300
|
|
93
|
+
Processing by CarsController#index as HTML
|
|
94
|
+
Rendering cars/index.html.erb within layouts/application
|
|
95
|
+
Rendered cars/index.html.erb within layouts/application (0.5ms)
|
|
96
|
+
Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
|
97
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
98
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
99
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:33:50 -0300
|
|
100
|
+
Processing by CarsController#index as HTML
|
|
101
|
+
Rendering cars/index.html.erb within layouts/application
|
|
102
|
+
Rendered cars/index.html.erb within layouts/application (3.7ms)
|
|
103
|
+
Completed 200 OK in 198ms (Views: 196.1ms | ActiveRecord: 0.0ms)
|
|
104
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
105
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
106
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:33:50 -0300
|
|
107
|
+
Processing by CarsController#index as HTML
|
|
108
|
+
Rendering cars/index.html.erb within layouts/application
|
|
109
|
+
Rendered cars/index.html.erb within layouts/application (0.8ms)
|
|
110
|
+
Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.0ms)
|
|
111
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
112
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
113
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:37:32 -0300
|
|
114
|
+
Processing by CarsController#index as HTML
|
|
115
|
+
Rendering cars/index.html.erb within layouts/application
|
|
116
|
+
Rendered cars/index.html.erb within layouts/application (8.0ms)
|
|
117
|
+
Completed 200 OK in 196ms (Views: 194.6ms | ActiveRecord: 0.0ms)
|
|
118
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
119
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
120
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:37:32 -0300
|
|
121
|
+
Processing by CarsController#index as HTML
|
|
122
|
+
Rendering cars/index.html.erb within layouts/application
|
|
123
|
+
Rendered cars/index.html.erb within layouts/application (0.5ms)
|
|
124
|
+
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
|
125
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
126
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
127
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:43:48 -0300
|
|
128
|
+
Processing by CarsController#index as HTML
|
|
129
|
+
Rendering cars/index.html.erb within layouts/application
|
|
130
|
+
Rendered cars/index.html.erb within layouts/application (3.7ms)
|
|
131
|
+
Completed 200 OK in 196ms (Views: 194.5ms | ActiveRecord: 0.0ms)
|
|
132
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
133
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
134
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:43:48 -0300
|
|
135
|
+
Processing by CarsController#index as HTML
|
|
136
|
+
Rendering cars/index.html.erb within layouts/application
|
|
137
|
+
Rendered cars/index.html.erb within layouts/application (1.0ms)
|
|
138
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
|
139
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
140
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
141
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:45:27 -0300
|
|
142
|
+
Processing by CarsController#index as HTML
|
|
143
|
+
Rendering cars/index.html.erb within layouts/application
|
|
144
|
+
Rendered cars/index.html.erb within layouts/application (3.5ms)
|
|
145
|
+
Completed 200 OK in 195ms (Views: 193.7ms | ActiveRecord: 0.0ms)
|
|
146
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
147
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
148
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:45:27 -0300
|
|
149
|
+
Processing by CarsController#index as HTML
|
|
150
|
+
Rendering cars/index.html.erb within layouts/application
|
|
151
|
+
Rendered cars/index.html.erb within layouts/application (0.9ms)
|
|
152
|
+
Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
|
153
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
154
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
155
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:45:27 -0300
|
|
156
|
+
Processing by CarsController#index as HTML
|
|
157
|
+
Rendering cars/index.html.erb within layouts/application
|
|
158
|
+
Rendered cars/index.html.erb within layouts/application (0.4ms)
|
|
159
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
160
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
161
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
162
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:45:27 -0300
|
|
163
|
+
Processing by CarsController#index as HTML
|
|
164
|
+
Rendering cars/index.html.erb within layouts/application
|
|
165
|
+
Rendered cars/index.html.erb within layouts/application (0.4ms)
|
|
166
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
167
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
168
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
169
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:47:31 -0300
|
|
170
|
+
Processing by CarsController#index as HTML
|
|
171
|
+
Rendering cars/index.html.erb within layouts/application
|
|
172
|
+
Rendered cars/index.html.erb within layouts/application (3.5ms)
|
|
173
|
+
Completed 200 OK in 201ms (Views: 199.6ms | ActiveRecord: 0.0ms)
|
|
174
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
175
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
176
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:47:31 -0300
|
|
177
|
+
Processing by CarsController#index as HTML
|
|
178
|
+
Rendering cars/index.html.erb within layouts/application
|
|
179
|
+
Rendered cars/index.html.erb within layouts/application (1.1ms)
|
|
180
|
+
Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.0ms)
|
|
181
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
182
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
183
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:47:31 -0300
|
|
184
|
+
Processing by CarsController#index as HTML
|
|
185
|
+
Rendering cars/index.html.erb within layouts/application
|
|
186
|
+
Rendered cars/index.html.erb within layouts/application (0.4ms)
|
|
187
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
188
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
189
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
190
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:47:31 -0300
|
|
191
|
+
Processing by CarsController#index as HTML
|
|
192
|
+
Rendering cars/index.html.erb within layouts/application
|
|
193
|
+
Rendered cars/index.html.erb within layouts/application (0.5ms)
|
|
194
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
195
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
196
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
197
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:48:27 -0300
|
|
198
|
+
Processing by CarsController#index as HTML
|
|
199
|
+
Rendering cars/index.html.erb within layouts/application
|
|
200
|
+
Rendered cars/index.html.erb within layouts/application (22.3ms)
|
|
201
|
+
Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.0ms)
|
|
202
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
203
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
204
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 12:49:08 -0300
|
|
205
|
+
Processing by CarsController#index as HTML
|
|
206
|
+
Rendering cars/index.html.erb within layouts/application
|
|
207
|
+
Rendered cars/index.html.erb within layouts/application (51791.8ms)
|
|
208
|
+
Completed 200 OK in 51929ms (Views: 51925.8ms | ActiveRecord: 0.0ms)
|
|
209
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
210
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
|
211
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:20:37 -0300
|
|
212
|
+
Processing by CarsController#index as HTML
|
|
213
|
+
Rendering cars/index.html.erb within layouts/application
|
|
214
|
+
Rendered cars/index.html.erb within layouts/application (5.9ms)
|
|
215
|
+
Completed 200 OK in 279ms (Views: 276.7ms | ActiveRecord: 0.0ms)
|
|
216
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
217
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
218
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:20:37 -0300
|
|
219
|
+
Processing by CarsController#index as HTML
|
|
220
|
+
Rendering cars/index.html.erb within layouts/application
|
|
221
|
+
Rendered cars/index.html.erb within layouts/application (0.8ms)
|
|
222
|
+
Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.0ms)
|
|
223
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
224
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
225
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:20:37 -0300
|
|
226
|
+
Processing by CarsController#index as HTML
|
|
227
|
+
Rendering cars/index.html.erb within layouts/application
|
|
228
|
+
Rendered cars/index.html.erb within layouts/application (1.1ms)
|
|
229
|
+
Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
|
230
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
231
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
232
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:20:37 -0300
|
|
233
|
+
Processing by CarsController#index as HTML
|
|
234
|
+
Rendering cars/index.html.erb within layouts/application
|
|
235
|
+
Rendered cars/index.html.erb within layouts/application (0.6ms)
|
|
236
|
+
Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
|
237
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
238
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
239
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:48:18 -0300
|
|
240
|
+
Processing by CarsController#index as HTML
|
|
241
|
+
Rendering cars/index.html.erb within layouts/application
|
|
242
|
+
Rendered cars/index.html.erb within layouts/application (4.9ms)
|
|
243
|
+
Completed 200 OK in 182ms (Views: 181.1ms | ActiveRecord: 0.0ms)
|
|
244
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
245
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
246
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:48:18 -0300
|
|
247
|
+
Processing by CarsController#index as HTML
|
|
248
|
+
Rendering cars/index.html.erb within layouts/application
|
|
249
|
+
Rendered cars/index.html.erb within layouts/application (1.1ms)
|
|
250
|
+
Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
|
251
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
252
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
253
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:48:18 -0300
|
|
254
|
+
Processing by CarsController#index as HTML
|
|
255
|
+
Rendering cars/index.html.erb within layouts/application
|
|
256
|
+
Rendered cars/index.html.erb within layouts/application (0.6ms)
|
|
257
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
|
258
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
259
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
260
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:48:18 -0300
|
|
261
|
+
Processing by CarsController#index as HTML
|
|
262
|
+
Rendering cars/index.html.erb within layouts/application
|
|
263
|
+
Rendered cars/index.html.erb within layouts/application (0.5ms)
|
|
264
|
+
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
|
265
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
266
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
267
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:49:20 -0300
|
|
268
|
+
Processing by CarsController#index as HTML
|
|
269
|
+
Rendering cars/index.html.erb within layouts/application
|
|
270
|
+
Rendered cars/index.html.erb within layouts/application (3.6ms)
|
|
271
|
+
Completed 200 OK in 185ms (Views: 184.1ms | ActiveRecord: 0.0ms)
|
|
272
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
273
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
274
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:49:20 -0300
|
|
275
|
+
Processing by CarsController#index as HTML
|
|
276
|
+
Rendering cars/index.html.erb within layouts/application
|
|
277
|
+
Rendered cars/index.html.erb within layouts/application (1.1ms)
|
|
278
|
+
Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
|
279
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
280
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
281
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:49:20 -0300
|
|
282
|
+
Processing by CarsController#index as HTML
|
|
283
|
+
Rendering cars/index.html.erb within layouts/application
|
|
284
|
+
Rendered cars/index.html.erb within layouts/application (0.6ms)
|
|
285
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
|
286
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
287
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
288
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:49:20 -0300
|
|
289
|
+
Processing by CarsController#index as HTML
|
|
290
|
+
Rendering cars/index.html.erb within layouts/application
|
|
291
|
+
Rendered cars/index.html.erb within layouts/application (0.6ms)
|
|
292
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
|
293
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
294
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
295
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:49:20 -0300
|
|
296
|
+
Processing by CarsController#index as HTML
|
|
297
|
+
Rendering cars/index.html.erb within layouts/application
|
|
298
|
+
Rendered cars/index.html.erb within layouts/application (0.6ms)
|
|
299
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
|
300
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
301
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
302
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:50:04 -0300
|
|
303
|
+
Processing by CarsController#index as HTML
|
|
304
|
+
Rendering cars/index.html.erb within layouts/application
|
|
305
|
+
Rendered cars/index.html.erb within layouts/application (3.7ms)
|
|
306
|
+
Completed 200 OK in 202ms (Views: 200.8ms | ActiveRecord: 0.0ms)
|
|
307
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
308
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
309
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:50:04 -0300
|
|
310
|
+
Processing by CarsController#index as HTML
|
|
311
|
+
Rendering cars/index.html.erb within layouts/application
|
|
312
|
+
Rendered cars/index.html.erb within layouts/application (1.0ms)
|
|
313
|
+
Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
|
314
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
315
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
316
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:50:04 -0300
|
|
317
|
+
Processing by CarsController#index as HTML
|
|
318
|
+
Rendering cars/index.html.erb within layouts/application
|
|
319
|
+
Rendered cars/index.html.erb within layouts/application (0.6ms)
|
|
320
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
|
321
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
322
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
323
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:50:04 -0300
|
|
324
|
+
Processing by CarsController#index as HTML
|
|
325
|
+
Rendering cars/index.html.erb within layouts/application
|
|
326
|
+
Rendered cars/index.html.erb within layouts/application (0.6ms)
|
|
327
|
+
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
|
328
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
329
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
330
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:50:04 -0300
|
|
331
|
+
Processing by CarsController#index as HTML
|
|
332
|
+
Rendering cars/index.html.erb within layouts/application
|
|
333
|
+
Rendered cars/index.html.erb within layouts/application (0.8ms)
|
|
334
|
+
Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
|
335
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
336
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
337
|
+
Started GET "/" for 127.0.0.1 at 2017-01-19 13:50:04 -0300
|
|
338
|
+
Processing by CarsController#index as HTML
|
|
339
|
+
Rendering cars/index.html.erb within layouts/application
|
|
340
|
+
Rendered cars/index.html.erb within layouts/application (0.6ms)
|
|
341
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
|
342
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
6
|
+
<style>
|
|
7
|
+
body {
|
|
8
|
+
background-color: #EFEFEF;
|
|
9
|
+
color: #2E2F30;
|
|
10
|
+
text-align: center;
|
|
11
|
+
font-family: arial, sans-serif;
|
|
12
|
+
margin: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.dialog {
|
|
16
|
+
width: 95%;
|
|
17
|
+
max-width: 33em;
|
|
18
|
+
margin: 4em auto 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
div.dialog > div {
|
|
22
|
+
border: 1px solid #CCC;
|
|
23
|
+
border-right-color: #999;
|
|
24
|
+
border-left-color: #999;
|
|
25
|
+
border-bottom-color: #BBB;
|
|
26
|
+
border-top: #B00100 solid 4px;
|
|
27
|
+
border-top-left-radius: 9px;
|
|
28
|
+
border-top-right-radius: 9px;
|
|
29
|
+
background-color: white;
|
|
30
|
+
padding: 7px 12% 0;
|
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
h1 {
|
|
35
|
+
font-size: 100%;
|
|
36
|
+
color: #730E15;
|
|
37
|
+
line-height: 1.5em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.dialog > p {
|
|
41
|
+
margin: 0 0 1em;
|
|
42
|
+
padding: 1em;
|
|
43
|
+
background-color: #F7F7F7;
|
|
44
|
+
border: 1px solid #CCC;
|
|
45
|
+
border-right-color: #999;
|
|
46
|
+
border-left-color: #999;
|
|
47
|
+
border-bottom-color: #999;
|
|
48
|
+
border-bottom-left-radius: 4px;
|
|
49
|
+
border-bottom-right-radius: 4px;
|
|
50
|
+
border-top-color: #DADADA;
|
|
51
|
+
color: #666;
|
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
55
|
+
</head>
|
|
56
|
+
|
|
57
|
+
<body>
|
|
58
|
+
<!-- This file lives in public/404.html -->
|
|
59
|
+
<div class="dialog">
|
|
60
|
+
<div>
|
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
|
63
|
+
</div>
|
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
65
|
+
</div>
|
|
66
|
+
</body>
|
|
67
|
+
</html>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
6
|
+
<style>
|
|
7
|
+
body {
|
|
8
|
+
background-color: #EFEFEF;
|
|
9
|
+
color: #2E2F30;
|
|
10
|
+
text-align: center;
|
|
11
|
+
font-family: arial, sans-serif;
|
|
12
|
+
margin: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.dialog {
|
|
16
|
+
width: 95%;
|
|
17
|
+
max-width: 33em;
|
|
18
|
+
margin: 4em auto 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
div.dialog > div {
|
|
22
|
+
border: 1px solid #CCC;
|
|
23
|
+
border-right-color: #999;
|
|
24
|
+
border-left-color: #999;
|
|
25
|
+
border-bottom-color: #BBB;
|
|
26
|
+
border-top: #B00100 solid 4px;
|
|
27
|
+
border-top-left-radius: 9px;
|
|
28
|
+
border-top-right-radius: 9px;
|
|
29
|
+
background-color: white;
|
|
30
|
+
padding: 7px 12% 0;
|
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
h1 {
|
|
35
|
+
font-size: 100%;
|
|
36
|
+
color: #730E15;
|
|
37
|
+
line-height: 1.5em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.dialog > p {
|
|
41
|
+
margin: 0 0 1em;
|
|
42
|
+
padding: 1em;
|
|
43
|
+
background-color: #F7F7F7;
|
|
44
|
+
border: 1px solid #CCC;
|
|
45
|
+
border-right-color: #999;
|
|
46
|
+
border-left-color: #999;
|
|
47
|
+
border-bottom-color: #999;
|
|
48
|
+
border-bottom-left-radius: 4px;
|
|
49
|
+
border-bottom-right-radius: 4px;
|
|
50
|
+
border-top-color: #DADADA;
|
|
51
|
+
color: #666;
|
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
55
|
+
</head>
|
|
56
|
+
|
|
57
|
+
<body>
|
|
58
|
+
<!-- This file lives in public/422.html -->
|
|
59
|
+
<div class="dialog">
|
|
60
|
+
<div>
|
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
|
63
|
+
</div>
|
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
65
|
+
</div>
|
|
66
|
+
</body>
|
|
67
|
+
</html>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
6
|
+
<style>
|
|
7
|
+
body {
|
|
8
|
+
background-color: #EFEFEF;
|
|
9
|
+
color: #2E2F30;
|
|
10
|
+
text-align: center;
|
|
11
|
+
font-family: arial, sans-serif;
|
|
12
|
+
margin: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.dialog {
|
|
16
|
+
width: 95%;
|
|
17
|
+
max-width: 33em;
|
|
18
|
+
margin: 4em auto 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
div.dialog > div {
|
|
22
|
+
border: 1px solid #CCC;
|
|
23
|
+
border-right-color: #999;
|
|
24
|
+
border-left-color: #999;
|
|
25
|
+
border-bottom-color: #BBB;
|
|
26
|
+
border-top: #B00100 solid 4px;
|
|
27
|
+
border-top-left-radius: 9px;
|
|
28
|
+
border-top-right-radius: 9px;
|
|
29
|
+
background-color: white;
|
|
30
|
+
padding: 7px 12% 0;
|
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
h1 {
|
|
35
|
+
font-size: 100%;
|
|
36
|
+
color: #730E15;
|
|
37
|
+
line-height: 1.5em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.dialog > p {
|
|
41
|
+
margin: 0 0 1em;
|
|
42
|
+
padding: 1em;
|
|
43
|
+
background-color: #F7F7F7;
|
|
44
|
+
border: 1px solid #CCC;
|
|
45
|
+
border-right-color: #999;
|
|
46
|
+
border-left-color: #999;
|
|
47
|
+
border-bottom-color: #999;
|
|
48
|
+
border-bottom-left-radius: 4px;
|
|
49
|
+
border-bottom-right-radius: 4px;
|
|
50
|
+
border-top-color: #DADADA;
|
|
51
|
+
color: #666;
|
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
55
|
+
</head>
|
|
56
|
+
|
|
57
|
+
<body>
|
|
58
|
+
<!-- This file lives in public/500.html -->
|
|
59
|
+
<div class="dialog">
|
|
60
|
+
<div>
|
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
|
62
|
+
</div>
|
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
64
|
+
</div>
|
|
65
|
+
</body>
|
|
66
|
+
</html>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1j/1jRwQ0YnoVng8L86UewdhBixkiWz0S8sDzSIB7Uv3Dw.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
I"�app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=f22c8baaddf062330a27a97c9cb3877e0048901fb1ba90c0fd7d3d69ba92f883:ET
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3e/3eR9lDnymSZKWkTZ8b3aHI1WDkHtRe1VuIGPscVUcbE.cache
ADDED
|
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5F/5FOXY3_INUFSQSFFGWlxWMzhZaivrz0o2WhRTterQgc.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
I"�/Users/pgonzaga/repositories/no_follow_external_links/app/assets/javascripts/no_follow_external_links/application.js?type=application/javascript&pipeline=self&id=eb9b487fd43b3a7e45c71b4133fbc1f3e1210a5387e7f3a6477fd089da7481ad:ET
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5p/5ppfhwuuFDmLcjOfyQjLOIkicPOg1XuKmSo-_xCj6vw.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%��Rm�v�S3.��O�L���ڹc�ƕq�=_j�
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7r/7rSz3-AzZAmO3Vn1xMc9rWcbzy2ULAsj5Vzt-lGJATg.cache
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
[o:Set:
|
|
2
|
+
@hash}
|
|
3
|
+
I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"rfile-digest:///Users/pgonzaga/.rvm/gems/ruby-2.3.0/gems/actioncable-5.0.1/lib/assets/compiled/action_cable.js;TTF
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9r/9rZQcrqoeoMNW0djO5UBibgghrnMS2tC98R2rtL2ZGg.cache
ADDED
|
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CN/CNfdXz-JbHMgAiTrycNBFSIP5BvlleJvD0HfYdwrIyc.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
I"�app/assets/javascripts/application.js?type=application/javascript&id=a0e06a31a622a9bc07358c5cdaa512f16370a07ad29231f92a5081251d8e4891:ET
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CU/CUKnFgB07an8dzzZEgMdHj2ZC2UERZlzkQc3CgPhjwY.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%��B�����șo�$'�A�d��L���xR�U
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CZ/CZryX_aoT3uHGQjd_dZ0e9bFVtoM8dgLxUUuBnWr16M.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
I"�/Users/pgonzaga/repositories/no_follow_external_links/app/assets/stylesheets/no_follow_external_links/application.css?type=text/css&id=0ff6d43312598bf84839f73989f97de6ab745cbd2f3b892f70ee62db24ccfa40:ET
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ce/CeObBTN7D3lw6wSXFxDCiemPMBjEUh6aHKW8BkoUu4M.cache
ADDED
|
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DH/DHmlXCihJe3gi8xl-0aJDugPR-4wGC8zXraFbmY9yRo.cache
ADDED
|
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/E_/E_T-xsxYo0-qxRQz-zvESH1fJdgQny0mGRsdMOcpCI4.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%�-`t���`>�k_P-�XVT?�`Ka��.k�5I
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fm/Fm5Qe1FqolCRYnur3YDCOd3OdtsiAbQmO2bEb--g6bE.cache
ADDED
|
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HJ/HJdHR8UDD90CZRu_u0dB9kbY9-tEajDdJvhoAO473Jk.cache
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
[o:Set:
|
|
2
|
+
@hash}I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"�file-digest:///Users/pgonzaga/repositories/no_follow_external_links/app/assets/javascripts/no_follow_external_links/application.js;TTI"xfile-digest:///Users/pgonzaga/repositories/no_follow_external_links/app/assets/javascripts/no_follow_external_links;TTF
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HS/HS-dhOl-v4FGgcoW-6aDqp0qWeSeQz07BF_u9e9qy-w.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%�d�-�K���`���8Y��3�/Y����a~K
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Jf/JfcnlsfkyWML_-yO2tdHRz7VuoEvlF_R6JHyvhCzFEc.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%�<������X���̀#+�����,�(o���
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LL/LLt0ZEF-bh-VKtxgoewjsaT3eHf7onzcYiWoUYL8-ko.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%�-`t���`>�k_P-�XVT?�`Ka��.k�5I
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NF/NFluf2twe5MK3ErgoqlLQJrQ4N_nB3cYD-DGRvY1HS4.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%�<������X���̀#+�����,�(o���
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ni/NioxP1_jdpRmbvd4VpAiyIm3X-H6Hc71yuDLnE4neEA.cache
ADDED
|
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pc/PcazyTDJ5Pzi509Xietem5Sx8xYyaBiUfgnrp0DBw0A.cache
ADDED
|
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QQ/QQyRRvZJSl8C-13xGxWlU2CJ0aRMgjZriCQOsXJ8P1M.cache
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
[o:Set:
|
|
2
|
+
@hash}I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"�file-digest:///Users/pgonzaga/repositories/no_follow_external_links/app/assets/stylesheets/no_follow_external_links/application.css;TTI"xfile-digest:///Users/pgonzaga/repositories/no_follow_external_links/app/assets/stylesheets/no_follow_external_links;TTF
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RS/RSFAy5GqqAiPHVsiTeH1UJconsCqGxf1PdoAnu5rugw.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
I"�/Users/pgonzaga/repositories/no_follow_external_links/app/assets/stylesheets/no_follow_external_links/application.css?type=text/css&pipeline=self&id=d383559d439e56f2d6f362ed37a6b60193273cce51baec3289fd03e5454827be:ET
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rp/Rp1-hK4ZoTze0TCPeFMGxGQhEH7bVT9YdY_rBEc2Pps.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
I"�app/assets/javascripts/cable.js?type=application/javascript&pipeline=self&id=c10c80fa3dcd34ec4815d7fca50377ee2e433bca8fe7a248533938562dd0a52b:ET
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SE/SEGeo_jO1qxaZR60wSPhyE6KCWphPYy1ptLl_tCFqek.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%�-`t���`>�k_P-�XVT?�`Ka��.k�5I
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sf/SfgEDS4B_2sWGuQWzua8myi4FdZf43XCUWc3UZZbZxQ.cache
ADDED
|
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sz/SzB0cJ8LTfM0oJWIyEPeU6VQPElsVs46BG-eCForqBk.cache
ADDED
|
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ta/Ta_H9cdRDUq54ES8yW89x7a59DtpNHm4bByqe-cAClY.cache
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
[o:Set:
|
|
2
|
+
@hash}I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"�file-digest:///Users/pgonzaga/repositories/no_follow_external_links/app/assets/javascripts/no_follow_external_links/application.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"xfile-digest:///Users/pgonzaga/repositories/no_follow_external_links/app/assets/javascripts/no_follow_external_links;TTF
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ur/UrRD1kGtTf_7tHixFyeUy4OZi8KGioBqJTZCVYqjAiM.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%A��G�{h t�l�m�V���NE���f���
|