uhoh 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 (109) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +41 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/images/uhoh/warning.png +0 -0
  5. data/app/assets/javascripts/uhoh/application.js +13 -0
  6. data/app/assets/javascripts/uhoh/failures.js +5 -0
  7. data/app/assets/javascripts/uhoh/simulate.js +2 -0
  8. data/app/assets/stylesheets/uhoh/application.css +13 -0
  9. data/app/assets/stylesheets/uhoh/failures.css +29 -0
  10. data/app/assets/stylesheets/uhoh/simulate.css +4 -0
  11. data/app/controllers/uhoh/application_controller.rb +4 -0
  12. data/app/controllers/uhoh/failures_controller.rb +9 -0
  13. data/app/controllers/uhoh/simulate_controller.rb +10 -0
  14. data/app/helpers/uhoh/application_helper.rb +4 -0
  15. data/app/helpers/uhoh/failures_helper.rb +4 -0
  16. data/app/helpers/uhoh/simulate_helper.rb +4 -0
  17. data/app/models/uhoh/failure.rb +4 -0
  18. data/app/views/layouts/uhoh/application.html.erb +16 -0
  19. data/app/views/uhoh/failures/index.html.erb +18 -0
  20. data/app/views/uhoh/simulate/failure.html.erb +2 -0
  21. data/config/initializers/exception_handler.rb +7 -0
  22. data/config/routes.rb +5 -0
  23. data/db/migrate/20131114115547_create_uhoh_failures.rb +9 -0
  24. data/lib/tasks/uhoh_tasks.rake +4 -0
  25. data/lib/uhoh.rb +4 -0
  26. data/lib/uhoh/engine.rb +5 -0
  27. data/lib/uhoh/version.rb +3 -0
  28. data/test/controllers/uhoh/failures_controller_test.rb +11 -0
  29. data/test/controllers/uhoh/simulate_controller_test.rb +11 -0
  30. data/test/dummy/README.rdoc +28 -0
  31. data/test/dummy/Rakefile +6 -0
  32. data/test/dummy/app/assets/javascripts/application.js +13 -0
  33. data/test/dummy/app/assets/javascripts/failures.js +2 -0
  34. data/test/dummy/app/assets/javascripts/simulate.js +2 -0
  35. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  36. data/test/dummy/app/assets/stylesheets/failures.css +4 -0
  37. data/test/dummy/app/assets/stylesheets/simulate.css +4 -0
  38. data/test/dummy/app/controllers/application_controller.rb +5 -0
  39. data/test/dummy/app/controllers/failures_controller.rb +5 -0
  40. data/test/dummy/app/controllers/simulate_controller.rb +5 -0
  41. data/test/dummy/app/helpers/application_helper.rb +2 -0
  42. data/test/dummy/app/helpers/failures_helper.rb +2 -0
  43. data/test/dummy/app/helpers/simulate_helper.rb +2 -0
  44. data/test/dummy/app/views/failures/index.html.erb +3 -0
  45. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  46. data/test/dummy/app/views/simulate/failure.html.erb +2 -0
  47. data/test/dummy/bin/bundle +3 -0
  48. data/test/dummy/bin/rails +4 -0
  49. data/test/dummy/bin/rake +4 -0
  50. data/test/dummy/config.ru +4 -0
  51. data/test/dummy/config/application.rb +23 -0
  52. data/test/dummy/config/boot.rb +5 -0
  53. data/test/dummy/config/database.yml +25 -0
  54. data/test/dummy/config/environment.rb +5 -0
  55. data/test/dummy/config/environments/development.rb +29 -0
  56. data/test/dummy/config/environments/production.rb +80 -0
  57. data/test/dummy/config/environments/test.rb +36 -0
  58. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  59. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  60. data/test/dummy/config/initializers/inflections.rb +16 -0
  61. data/test/dummy/config/initializers/mime_types.rb +5 -0
  62. data/test/dummy/config/initializers/secret_token.rb +12 -0
  63. data/test/dummy/config/initializers/session_store.rb +3 -0
  64. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  65. data/test/dummy/config/locales/en.yml +23 -0
  66. data/test/dummy/config/routes.rb +7 -0
  67. data/test/dummy/db/development.sqlite3 +0 -0
  68. data/test/dummy/db/schema.rb +22 -0
  69. data/test/dummy/log/development.log +4215 -0
  70. data/test/dummy/public/404.html +58 -0
  71. data/test/dummy/public/422.html +58 -0
  72. data/test/dummy/public/500.html +57 -0
  73. data/test/dummy/public/favicon.ico +0 -0
  74. data/test/dummy/test/controllers/failures_controller_test.rb +9 -0
  75. data/test/dummy/test/controllers/simulate_controller_test.rb +9 -0
  76. data/test/dummy/test/helpers/failures_helper_test.rb +4 -0
  77. data/test/dummy/test/helpers/simulate_helper_test.rb +4 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/1e6cca64a8cc2b682477d0f4a7ddf646 +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/22f48410594333dfcfd42d1194c9ed28 +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/2d7b6f255d9259247d02b9d4336ef280 +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/2f4757cbd4606a5f4ed352bba81acb10 +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/37543c5533a312658782327ad976a57c +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/46ae94a71122cdbb34f061340d008b91 +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/4a71f33346e5196b1e883e38513d084c +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/6e53eed3703986320a9f31f85a37feea +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/6e9c9b2fa3acf387a13e32ab379d067c +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/7581d0811d7a4ce8151157a2d4172469 +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/7b332342347cd23208adcd372d057509 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/85509f9a3f44debacfec6dc567384905 +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/91fafaa5baebc002afc1144b98926696 +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/a0abb8301ac98f15dabcb204c091e125 +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/c1630cc4d3be924c66bab7aaa114f90d +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/c3d51aadf6a37776cbf2430b7c8faba5 +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/d06fbb9d64dc41fccb2f569d05b36686 +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/dd19bd6a734e3222989e153ee96f274b +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/e0db688f13a3a9b37b8148bbfd560217 +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/e33019c1c5fc97d928fb0c863e404012 +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/e85a1e09e20cdb5440a050b943ae280c +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/f4a57c2d78ef93a15463b8405e21dad5 +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/fd8029a68b55c9fa9b1735229afaa65c +0 -0
  101. data/test/fixtures/uhoh/failures.yml +7 -0
  102. data/test/helpers/uhoh/failures_helper_test.rb +6 -0
  103. data/test/helpers/uhoh/simulate_helper_test.rb +6 -0
  104. data/test/integration/navigation_test.rb +10 -0
  105. data/test/models/uhoh/failure_test.rb +9 -0
  106. data/test/test_helper.rb +15 -0
  107. data/test/uhoh_test.rb +7 -0
  108. data/uhoh.gemspec +24 -0
  109. metadata +265 -0
@@ -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,9 @@
1
+ require 'test_helper'
2
+
3
+ class FailuresControllerTest < ActionController::TestCase
4
+ test "should get index" do
5
+ get :index
6
+ assert_response :success
7
+ end
8
+
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ class SimulateControllerTest < ActionController::TestCase
4
+ test "should get failure" do
5
+ get :failure
6
+ assert_response :success
7
+ end
8
+
9
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class FailuresHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class SimulateHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ message: MyText
5
+
6
+ two:
7
+ message: MyText
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Uhoh
4
+ class FailuresHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Uhoh
4
+ class SimulateHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Uhoh
4
+ class FailureTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -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
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class UhohTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Uhoh
6
+ end
7
+ end
@@ -0,0 +1,24 @@
1
+ require 'rake'
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+
4
+ # Maintain your gem's version:
5
+ require "uhoh/version"
6
+
7
+ # Describe your gem and declare its dependencies:
8
+ Gem::Specification.new do |s|
9
+ s.name = "uhoh"
10
+ s.version = Uhoh::VERSION
11
+ s.authors = ["Prachi Paliwal"]
12
+ s.email = ["prachi.p@cisinlabs.com"]
13
+ s.homepage = "https://github.com/Prachi90/uhoh"
14
+ s.summary = "Shows the faliure note"
15
+ s.description = "Uhoh is the gem for show the faliure note of the app.."
16
+
17
+ s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
18
+ s.test_files = Dir["test/**/*"]
19
+ s.files += %w(README.md)
20
+ s.files += %w(uhoh.gemspec)
21
+ s.add_dependency "rails", "~> 4.0.1.rc4"
22
+
23
+ s.add_development_dependency "sqlite3"
24
+ end
metadata ADDED
@@ -0,0 +1,265 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: uhoh
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Prachi Paliwal
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-11-21 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 4.0.1.rc4
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 4.0.1.rc4
30
+ - !ruby/object:Gem::Dependency
31
+ name: sqlite3
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ description: Uhoh is the gem for show the faliure note of the app..
47
+ email:
48
+ - prachi.p@cisinlabs.com
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files: []
52
+ files:
53
+ - app/models/uhoh/failure.rb
54
+ - app/views/layouts/uhoh/application.html.erb
55
+ - app/views/uhoh/failures/index.html.erb
56
+ - app/views/uhoh/simulate/failure.html.erb
57
+ - app/assets/stylesheets/uhoh/application.css
58
+ - app/assets/stylesheets/uhoh/simulate.css
59
+ - app/assets/stylesheets/uhoh/failures.css
60
+ - app/assets/images/uhoh/warning.png
61
+ - app/assets/javascripts/uhoh/failures.js
62
+ - app/assets/javascripts/uhoh/simulate.js
63
+ - app/assets/javascripts/uhoh/application.js
64
+ - app/helpers/uhoh/application_helper.rb
65
+ - app/helpers/uhoh/failures_helper.rb
66
+ - app/helpers/uhoh/simulate_helper.rb
67
+ - app/controllers/uhoh/application_controller.rb
68
+ - app/controllers/uhoh/simulate_controller.rb
69
+ - app/controllers/uhoh/failures_controller.rb
70
+ - config/routes.rb
71
+ - config/initializers/exception_handler.rb
72
+ - db/migrate/20131114115547_create_uhoh_failures.rb
73
+ - lib/uhoh.rb
74
+ - lib/uhoh/version.rb
75
+ - lib/uhoh/engine.rb
76
+ - lib/tasks/uhoh_tasks.rake
77
+ - MIT-LICENSE
78
+ - Rakefile
79
+ - README.md
80
+ - test/dummy/bin/rake
81
+ - test/dummy/bin/rails
82
+ - test/dummy/bin/bundle
83
+ - test/dummy/config.ru
84
+ - test/dummy/test/helpers/failures_helper_test.rb
85
+ - test/dummy/test/helpers/simulate_helper_test.rb
86
+ - test/dummy/test/controllers/simulate_controller_test.rb
87
+ - test/dummy/test/controllers/failures_controller_test.rb
88
+ - test/dummy/Rakefile
89
+ - test/dummy/config/routes.rb
90
+ - test/dummy/config/environment.rb
91
+ - test/dummy/config/boot.rb
92
+ - test/dummy/config/locales/en.yml
93
+ - test/dummy/config/application.rb
94
+ - test/dummy/config/initializers/backtrace_silencers.rb
95
+ - test/dummy/config/initializers/secret_token.rb
96
+ - test/dummy/config/initializers/mime_types.rb
97
+ - test/dummy/config/initializers/inflections.rb
98
+ - test/dummy/config/initializers/filter_parameter_logging.rb
99
+ - test/dummy/config/initializers/wrap_parameters.rb
100
+ - test/dummy/config/initializers/session_store.rb
101
+ - test/dummy/config/database.yml
102
+ - test/dummy/config/environments/development.rb
103
+ - test/dummy/config/environments/test.rb
104
+ - test/dummy/config/environments/production.rb
105
+ - test/dummy/public/500.html
106
+ - test/dummy/public/favicon.ico
107
+ - test/dummy/public/422.html
108
+ - test/dummy/public/404.html
109
+ - test/dummy/app/views/failures/index.html.erb
110
+ - test/dummy/app/views/simulate/failure.html.erb
111
+ - test/dummy/app/views/layouts/application.html.erb
112
+ - test/dummy/app/assets/stylesheets/application.css
113
+ - test/dummy/app/assets/stylesheets/simulate.css
114
+ - test/dummy/app/assets/stylesheets/failures.css
115
+ - test/dummy/app/assets/javascripts/failures.js
116
+ - test/dummy/app/assets/javascripts/simulate.js
117
+ - test/dummy/app/assets/javascripts/application.js
118
+ - test/dummy/app/helpers/application_helper.rb
119
+ - test/dummy/app/helpers/failures_helper.rb
120
+ - test/dummy/app/helpers/simulate_helper.rb
121
+ - test/dummy/app/controllers/application_controller.rb
122
+ - test/dummy/app/controllers/simulate_controller.rb
123
+ - test/dummy/app/controllers/failures_controller.rb
124
+ - test/dummy/README.rdoc
125
+ - test/dummy/log/development.log
126
+ - test/dummy/tmp/cache/assets/development/sprockets/d06fbb9d64dc41fccb2f569d05b36686
127
+ - test/dummy/tmp/cache/assets/development/sprockets/6e53eed3703986320a9f31f85a37feea
128
+ - test/dummy/tmp/cache/assets/development/sprockets/37543c5533a312658782327ad976a57c
129
+ - test/dummy/tmp/cache/assets/development/sprockets/91fafaa5baebc002afc1144b98926696
130
+ - test/dummy/tmp/cache/assets/development/sprockets/1e6cca64a8cc2b682477d0f4a7ddf646
131
+ - test/dummy/tmp/cache/assets/development/sprockets/4a71f33346e5196b1e883e38513d084c
132
+ - test/dummy/tmp/cache/assets/development/sprockets/f4a57c2d78ef93a15463b8405e21dad5
133
+ - test/dummy/tmp/cache/assets/development/sprockets/dd19bd6a734e3222989e153ee96f274b
134
+ - test/dummy/tmp/cache/assets/development/sprockets/7b332342347cd23208adcd372d057509
135
+ - test/dummy/tmp/cache/assets/development/sprockets/6e9c9b2fa3acf387a13e32ab379d067c
136
+ - test/dummy/tmp/cache/assets/development/sprockets/2d7b6f255d9259247d02b9d4336ef280
137
+ - test/dummy/tmp/cache/assets/development/sprockets/2f4757cbd4606a5f4ed352bba81acb10
138
+ - test/dummy/tmp/cache/assets/development/sprockets/22f48410594333dfcfd42d1194c9ed28
139
+ - test/dummy/tmp/cache/assets/development/sprockets/e33019c1c5fc97d928fb0c863e404012
140
+ - test/dummy/tmp/cache/assets/development/sprockets/a0abb8301ac98f15dabcb204c091e125
141
+ - test/dummy/tmp/cache/assets/development/sprockets/c3d51aadf6a37776cbf2430b7c8faba5
142
+ - test/dummy/tmp/cache/assets/development/sprockets/46ae94a71122cdbb34f061340d008b91
143
+ - test/dummy/tmp/cache/assets/development/sprockets/e0db688f13a3a9b37b8148bbfd560217
144
+ - test/dummy/tmp/cache/assets/development/sprockets/85509f9a3f44debacfec6dc567384905
145
+ - test/dummy/tmp/cache/assets/development/sprockets/fd8029a68b55c9fa9b1735229afaa65c
146
+ - test/dummy/tmp/cache/assets/development/sprockets/c1630cc4d3be924c66bab7aaa114f90d
147
+ - test/dummy/tmp/cache/assets/development/sprockets/e85a1e09e20cdb5440a050b943ae280c
148
+ - test/dummy/tmp/cache/assets/development/sprockets/7581d0811d7a4ce8151157a2d4172469
149
+ - test/dummy/db/development.sqlite3
150
+ - test/dummy/db/schema.rb
151
+ - test/models/uhoh/failure_test.rb
152
+ - test/integration/navigation_test.rb
153
+ - test/uhoh_test.rb
154
+ - test/fixtures/uhoh/failures.yml
155
+ - test/helpers/uhoh/failures_helper_test.rb
156
+ - test/helpers/uhoh/simulate_helper_test.rb
157
+ - test/controllers/uhoh/simulate_controller_test.rb
158
+ - test/controllers/uhoh/failures_controller_test.rb
159
+ - test/test_helper.rb
160
+ - uhoh.gemspec
161
+ homepage: https://github.com/Prachi90/uhoh
162
+ licenses: []
163
+ post_install_message:
164
+ rdoc_options: []
165
+ require_paths:
166
+ - lib
167
+ required_ruby_version: !ruby/object:Gem::Requirement
168
+ none: false
169
+ requirements:
170
+ - - ! '>='
171
+ - !ruby/object:Gem::Version
172
+ version: '0'
173
+ required_rubygems_version: !ruby/object:Gem::Requirement
174
+ none: false
175
+ requirements:
176
+ - - ! '>='
177
+ - !ruby/object:Gem::Version
178
+ version: '0'
179
+ requirements: []
180
+ rubyforge_project:
181
+ rubygems_version: 1.8.25
182
+ signing_key:
183
+ specification_version: 3
184
+ summary: Shows the faliure note
185
+ test_files:
186
+ - test/dummy/bin/rake
187
+ - test/dummy/bin/rails
188
+ - test/dummy/bin/bundle
189
+ - test/dummy/config.ru
190
+ - test/dummy/test/helpers/failures_helper_test.rb
191
+ - test/dummy/test/helpers/simulate_helper_test.rb
192
+ - test/dummy/test/controllers/simulate_controller_test.rb
193
+ - test/dummy/test/controllers/failures_controller_test.rb
194
+ - test/dummy/Rakefile
195
+ - test/dummy/config/routes.rb
196
+ - test/dummy/config/environment.rb
197
+ - test/dummy/config/boot.rb
198
+ - test/dummy/config/locales/en.yml
199
+ - test/dummy/config/application.rb
200
+ - test/dummy/config/initializers/backtrace_silencers.rb
201
+ - test/dummy/config/initializers/secret_token.rb
202
+ - test/dummy/config/initializers/mime_types.rb
203
+ - test/dummy/config/initializers/inflections.rb
204
+ - test/dummy/config/initializers/filter_parameter_logging.rb
205
+ - test/dummy/config/initializers/wrap_parameters.rb
206
+ - test/dummy/config/initializers/session_store.rb
207
+ - test/dummy/config/database.yml
208
+ - test/dummy/config/environments/development.rb
209
+ - test/dummy/config/environments/test.rb
210
+ - test/dummy/config/environments/production.rb
211
+ - test/dummy/public/500.html
212
+ - test/dummy/public/favicon.ico
213
+ - test/dummy/public/422.html
214
+ - test/dummy/public/404.html
215
+ - test/dummy/app/views/failures/index.html.erb
216
+ - test/dummy/app/views/simulate/failure.html.erb
217
+ - test/dummy/app/views/layouts/application.html.erb
218
+ - test/dummy/app/assets/stylesheets/application.css
219
+ - test/dummy/app/assets/stylesheets/simulate.css
220
+ - test/dummy/app/assets/stylesheets/failures.css
221
+ - test/dummy/app/assets/javascripts/failures.js
222
+ - test/dummy/app/assets/javascripts/simulate.js
223
+ - test/dummy/app/assets/javascripts/application.js
224
+ - test/dummy/app/helpers/application_helper.rb
225
+ - test/dummy/app/helpers/failures_helper.rb
226
+ - test/dummy/app/helpers/simulate_helper.rb
227
+ - test/dummy/app/controllers/application_controller.rb
228
+ - test/dummy/app/controllers/simulate_controller.rb
229
+ - test/dummy/app/controllers/failures_controller.rb
230
+ - test/dummy/README.rdoc
231
+ - test/dummy/log/development.log
232
+ - test/dummy/tmp/cache/assets/development/sprockets/d06fbb9d64dc41fccb2f569d05b36686
233
+ - test/dummy/tmp/cache/assets/development/sprockets/6e53eed3703986320a9f31f85a37feea
234
+ - test/dummy/tmp/cache/assets/development/sprockets/37543c5533a312658782327ad976a57c
235
+ - test/dummy/tmp/cache/assets/development/sprockets/91fafaa5baebc002afc1144b98926696
236
+ - test/dummy/tmp/cache/assets/development/sprockets/1e6cca64a8cc2b682477d0f4a7ddf646
237
+ - test/dummy/tmp/cache/assets/development/sprockets/4a71f33346e5196b1e883e38513d084c
238
+ - test/dummy/tmp/cache/assets/development/sprockets/f4a57c2d78ef93a15463b8405e21dad5
239
+ - test/dummy/tmp/cache/assets/development/sprockets/dd19bd6a734e3222989e153ee96f274b
240
+ - test/dummy/tmp/cache/assets/development/sprockets/7b332342347cd23208adcd372d057509
241
+ - test/dummy/tmp/cache/assets/development/sprockets/6e9c9b2fa3acf387a13e32ab379d067c
242
+ - test/dummy/tmp/cache/assets/development/sprockets/2d7b6f255d9259247d02b9d4336ef280
243
+ - test/dummy/tmp/cache/assets/development/sprockets/2f4757cbd4606a5f4ed352bba81acb10
244
+ - test/dummy/tmp/cache/assets/development/sprockets/22f48410594333dfcfd42d1194c9ed28
245
+ - test/dummy/tmp/cache/assets/development/sprockets/e33019c1c5fc97d928fb0c863e404012
246
+ - test/dummy/tmp/cache/assets/development/sprockets/a0abb8301ac98f15dabcb204c091e125
247
+ - test/dummy/tmp/cache/assets/development/sprockets/c3d51aadf6a37776cbf2430b7c8faba5
248
+ - test/dummy/tmp/cache/assets/development/sprockets/46ae94a71122cdbb34f061340d008b91
249
+ - test/dummy/tmp/cache/assets/development/sprockets/e0db688f13a3a9b37b8148bbfd560217
250
+ - test/dummy/tmp/cache/assets/development/sprockets/85509f9a3f44debacfec6dc567384905
251
+ - test/dummy/tmp/cache/assets/development/sprockets/fd8029a68b55c9fa9b1735229afaa65c
252
+ - test/dummy/tmp/cache/assets/development/sprockets/c1630cc4d3be924c66bab7aaa114f90d
253
+ - test/dummy/tmp/cache/assets/development/sprockets/e85a1e09e20cdb5440a050b943ae280c
254
+ - test/dummy/tmp/cache/assets/development/sprockets/7581d0811d7a4ce8151157a2d4172469
255
+ - test/dummy/db/development.sqlite3
256
+ - test/dummy/db/schema.rb
257
+ - test/models/uhoh/failure_test.rb
258
+ - test/integration/navigation_test.rb
259
+ - test/uhoh_test.rb
260
+ - test/fixtures/uhoh/failures.yml
261
+ - test/helpers/uhoh/failures_helper_test.rb
262
+ - test/helpers/uhoh/simulate_helper_test.rb
263
+ - test/controllers/uhoh/simulate_controller_test.rb
264
+ - test/controllers/uhoh/failures_controller_test.rb
265
+ - test/test_helper.rb