deflectable 0.0.1

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.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +32 -0
  5. data/lib/deflectable/version.rb +3 -0
  6. data/lib/deflectable/watcher.rb +101 -0
  7. data/lib/deflectable.rb +4 -0
  8. data/lib/tasks/deflectable_tasks.rake +4 -0
  9. data/test/acceptable_test.rb +8 -0
  10. data/test/deflectable_test.rb +7 -0
  11. data/test/dummy/README.rdoc +28 -0
  12. data/test/dummy/Rakefile +6 -0
  13. data/test/dummy/app/assets/javascripts/application.js +13 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  15. data/test/dummy/app/controllers/application_controller.rb +5 -0
  16. data/test/dummy/app/controllers/welcome_controller.rb +4 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/helpers/welcome_helper.rb +2 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/app/views/welcome/index.html.erb +2 -0
  21. data/test/dummy/bin/bundle +3 -0
  22. data/test/dummy/bin/rails +4 -0
  23. data/test/dummy/bin/rake +4 -0
  24. data/test/dummy/config/application.rb +23 -0
  25. data/test/dummy/config/boot.rb +5 -0
  26. data/test/dummy/config/database.yml +25 -0
  27. data/test/dummy/config/deflect.yml +4 -0
  28. data/test/dummy/config/environment.rb +5 -0
  29. data/test/dummy/config/environments/development.rb +29 -0
  30. data/test/dummy/config/environments/production.rb +80 -0
  31. data/test/dummy/config/environments/test.rb +36 -0
  32. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/test/dummy/config/initializers/inflections.rb +16 -0
  35. data/test/dummy/config/initializers/mime_types.rb +5 -0
  36. data/test/dummy/config/initializers/secret_token.rb +12 -0
  37. data/test/dummy/config/initializers/session_store.rb +3 -0
  38. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/test/dummy/config/locales/en.yml +23 -0
  40. data/test/dummy/config/routes.rb +56 -0
  41. data/test/dummy/config.ru +4 -0
  42. data/test/dummy/db/development.sqlite3 +0 -0
  43. data/test/dummy/db/test.sqlite3 +0 -0
  44. data/test/dummy/log/development.log +108 -0
  45. data/test/dummy/log/test.log +52 -0
  46. data/test/dummy/public/403.html +58 -0
  47. data/test/dummy/public/404.html +58 -0
  48. data/test/dummy/public/422.html +58 -0
  49. data/test/dummy/public/500.html +57 -0
  50. data/test/dummy/public/favicon.ico +0 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  52. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  57. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  58. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  59. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  60. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  61. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  62. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  63. data/test/test_helper.rb +15 -0
  64. metadata +188 -0
@@ -0,0 +1,56 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
File without changes
File without changes
@@ -0,0 +1,108 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2013-09-24 23:00:33 +0900
4
+ Processing by WelcomeController#index as HTML
5
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
6
+ Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-24 23:00:34 +0900
10
+
11
+
12
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-24 23:00:34 +0900
13
+
14
+
15
+ Started GET "/" for 127.0.0.1 at 2013-09-24 23:51:20 +0900
16
+ Processing by WelcomeController#index as HTML
17
+ Rendered welcome/index.html.erb within layouts/application (17.0ms)
18
+ Completed 200 OK in 41ms (Views: 40.6ms | ActiveRecord: 0.0ms)
19
+
20
+
21
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-24 23:51:20 +0900
22
+
23
+
24
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-24 23:51:20 +0900
25
+
26
+
27
+ Started GET "/" for 127.0.0.1 at 2013-09-25 09:26:37 +0900
28
+ Processing by WelcomeController#index as HTML
29
+ Rendered welcome/index.html.erb within layouts/application (1.1ms)
30
+ Completed 200 OK in 45ms (Views: 44.5ms | ActiveRecord: 0.0ms)
31
+
32
+
33
+ Started GET "/" for 127.0.0.1 at 2013-09-25 09:30:07 +0900
34
+ Processing by WelcomeController#index as HTML
35
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
36
+ Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
37
+
38
+
39
+ Started GET "/" for 127.0.0.1 at 2013-09-25 09:32:49 +0900
40
+ Processing by WelcomeController#index as HTML
41
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
42
+ Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.0ms)
43
+
44
+
45
+ Started GET "/" for 127.0.0.1 at 2013-09-25 09:39:33 +0900
46
+ Processing by WelcomeController#index as HTML
47
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
48
+ Completed 200 OK in 23ms (Views: 23.0ms | ActiveRecord: 0.0ms)
49
+
50
+
51
+ Started GET "/" for 127.0.0.1 at 2013-09-25 09:46:32 +0900
52
+ Processing by WelcomeController#index as HTML
53
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
54
+ Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
55
+
56
+
57
+ Started GET "/" for 127.0.0.1 at 2013-09-25 09:47:37 +0900
58
+ Processing by WelcomeController#index as HTML
59
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
60
+ Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.0ms)
61
+
62
+
63
+ Started GET "/" for 127.0.0.1 at 2013-09-25 09:48:19 +0900
64
+ Processing by WelcomeController#index as HTML
65
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
66
+ Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms)
67
+
68
+
69
+ Started GET "/" for 127.0.0.1 at 2013-09-25 09:49:49 +0900
70
+ Processing by WelcomeController#index as HTML
71
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
72
+ Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.0ms)
73
+
74
+
75
+ Started GET "/" for 127.0.0.1 at 2013-09-25 09:50:53 +0900
76
+ Processing by WelcomeController#index as HTML
77
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
78
+ Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.0ms)
79
+
80
+
81
+ Started GET "/" for 127.0.0.1 at 2013-09-25 10:26:22 +0900
82
+ Processing by WelcomeController#index as HTML
83
+ Rendered welcome/index.html.erb within layouts/application (0.0ms)
84
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
85
+
86
+
87
+ Started GET "/" for 127.0.0.1 at 2013-09-25 10:32:29 +0900
88
+ Processing by WelcomeController#index as HTML
89
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
90
+ Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.0ms)
91
+
92
+
93
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-25 10:32:30 +0900
94
+
95
+
96
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-25 10:32:30 +0900
97
+
98
+
99
+ Started GET "/" for 127.0.0.1 at 2013-09-25 10:33:11 +0900
100
+ Processing by WelcomeController#index as HTML
101
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
102
+ Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.0ms)
103
+
104
+
105
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-25 10:33:11 +0900
106
+
107
+
108
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-25 10:33:11 +0900
@@ -0,0 +1,52 @@
1
+  (0.2ms) begin transaction
2
+ -------------------------------------
3
+ AcceptableTest: test_should_get_index
4
+ -------------------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.0ms) begin transaction
7
+ ---------------------------
8
+ DeflectableTest: test_truth
9
+ ---------------------------
10
+  (0.0ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+ --------------------------------------------
13
+ WelcomeControllerTest: test_should_get_index
14
+ --------------------------------------------
15
+ Processing by WelcomeController#index as HTML
16
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
17
+ Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)
18
+  (0.1ms) rollback transaction
19
+  (0.2ms) begin transaction
20
+ -------------------------------------
21
+ AcceptableTest: test_should_get_index
22
+ -------------------------------------
23
+  (0.0ms) rollback transaction
24
+  (0.0ms) begin transaction
25
+ ---------------------------
26
+ DeflectableTest: test_truth
27
+ ---------------------------
28
+  (0.0ms) rollback transaction
29
+  (0.2ms) begin transaction
30
+ -------------------------------------
31
+ AcceptableTest: test_should_get_index
32
+ -------------------------------------
33
+  (0.0ms) rollback transaction
34
+  (0.0ms) begin transaction
35
+ ---------------------------
36
+ DeflectableTest: test_truth
37
+ ---------------------------
38
+  (0.0ms) rollback transaction
39
+  (0.2ms) begin transaction
40
+ -------------------------------------
41
+ AcceptableTest: test_should_get_index
42
+ -------------------------------------
43
+ Started GET "/" for 127.0.0.1 at 2013-09-24 23:17:55 +0900
44
+ Processing by WelcomeController#index as HTML
45
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
46
+ Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms)
47
+  (0.1ms) rollback transaction
48
+  (0.0ms) begin transaction
49
+ ---------------------------
50
+ DeflectableTest: test_truth
51
+ ---------------------------
52
+  (0.0ms) rollback transaction
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>403</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/404.html -->
52
+ <div class="dialog">
53
+ <h1>403</h1>
54
+ <p>You may have mistyped the address or the page may have moved.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/404.html -->
52
+ <div class="dialog">
53
+ <h1>The page you were looking for doesn't exist.</h1>
54
+ <p>You may have mistyped the address or the page may have moved.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/422.html -->
52
+ <div class="dialog">
53
+ <h1>The change you wanted was rejected.</h1>
54
+ <p>Maybe you tried to change something you didn't have access to.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/500.html -->
52
+ <div class="dialog">
53
+ <h1>We're sorry, but something went wrong.</h1>
54
+ </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
56
+ </body>
57
+ </html>
File without changes
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end