r3_exception_logger 0.1.10 → 0.1.11

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 (36) hide show
  1. data/History.txt +75 -0
  2. data/LICENSE +20 -0
  3. data/README.old +107 -0
  4. data/README.rdoc +154 -0
  5. data/Rakefile +66 -0
  6. data/VERSION.yml +5 -0
  7. data/app/controllers/logged_exceptions_controller.rb +86 -0
  8. data/app/helpers/logged_exceptions_helper.rb +40 -0
  9. data/app/models/logged_exception.rb +79 -0
  10. data/app/views/layouts/logged_exceptions.html.erb +19 -0
  11. data/app/views/logged_exceptions/_exceptions.html.erb +31 -0
  12. data/app/views/logged_exceptions/_feed.html.erb +3 -0
  13. data/app/views/logged_exceptions/_show.html.erb +23 -0
  14. data/app/views/logged_exceptions/destroy.js.erb +2 -0
  15. data/app/views/logged_exceptions/destroy_all.js.erb +2 -0
  16. data/app/views/logged_exceptions/feed.rss.builder +20 -0
  17. data/app/views/logged_exceptions/index.html.erb +46 -0
  18. data/app/views/logged_exceptions/index.js.erb +2 -0
  19. data/app/views/logged_exceptions/query.js.erb +2 -0
  20. data/app/views/logged_exceptions/show.html.erb +8 -0
  21. data/app/views/logged_exceptions/show.js.erb +2 -0
  22. data/config/initializers/date_formats.rb +5 -0
  23. data/config/locales/en.yml +16 -0
  24. data/config/routes.rb +11 -0
  25. data/exception_logger.gemspec +23 -0
  26. data/public/javascripts/exception_logger.js +69 -0
  27. data/public/stylesheets/exception_logger.css +325 -0
  28. data/r3_exception_logger-0.1.10.gem +0 -0
  29. data/test/controllers/logged_exceptions_controller_test.rb +196 -0
  30. data/test/models/logged_exception_test.rb +39 -0
  31. data/test/rails_root/Gemfile +52 -0
  32. data/test/rails_root/Gemfile.lock +146 -0
  33. data/test/rails_root/app/controllers/application_controller.rb +5 -0
  34. data/test/rails_root/test/factories/exception_logger.rb +142 -0
  35. data/test/test_helper.rb +10 -0
  36. metadata +36 -1
@@ -0,0 +1,10 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path(File.dirname(__FILE__) + "/rails_root/config/environment")
3
+ require 'rails/test_help'
4
+
5
+ require 'exception_logger'
6
+
7
+ begin
8
+ require 'redgreen'
9
+ rescue LoadError
10
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: r3_exception_logger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -18,6 +18,26 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
+ - app/controllers/logged_exceptions_controller.rb
22
+ - app/helpers/logged_exceptions_helper.rb
23
+ - app/models/logged_exception.rb
24
+ - app/views/layouts/logged_exceptions.html.erb
25
+ - app/views/logged_exceptions/destroy.js.erb
26
+ - app/views/logged_exceptions/destroy_all.js.erb
27
+ - app/views/logged_exceptions/feed.rss.builder
28
+ - app/views/logged_exceptions/index.html.erb
29
+ - app/views/logged_exceptions/index.js.erb
30
+ - app/views/logged_exceptions/query.js.erb
31
+ - app/views/logged_exceptions/show.html.erb
32
+ - app/views/logged_exceptions/show.js.erb
33
+ - app/views/logged_exceptions/_exceptions.html.erb
34
+ - app/views/logged_exceptions/_feed.html.erb
35
+ - app/views/logged_exceptions/_show.html.erb
36
+ - config/initializers/date_formats.rb
37
+ - config/locales/en.yml
38
+ - config/routes.rb
39
+ - exception_logger.gemspec
40
+ - History.txt
21
41
  - lib/exception_loggable_controller_mixin.rb
22
42
  - lib/exception_logger/engine.rb
23
43
  - lib/exception_logger/exception_loggable.rb
@@ -27,6 +47,21 @@ files:
27
47
  - lib/generators/exception_logger/stylescripts/stylescripts_generator.rb
28
48
  - lib/logged_exception_rake.rb
29
49
  - lib/railties/tasks.rake
50
+ - LICENSE
51
+ - public/javascripts/exception_logger.js
52
+ - public/stylesheets/exception_logger.css
53
+ - r3_exception_logger-0.1.10.gem
54
+ - Rakefile
55
+ - README.old
56
+ - README.rdoc
57
+ - test/controllers/logged_exceptions_controller_test.rb
58
+ - test/models/logged_exception_test.rb
59
+ - test/rails_root/app/controllers/application_controller.rb
60
+ - test/rails_root/Gemfile
61
+ - test/rails_root/Gemfile.lock
62
+ - test/rails_root/test/factories/exception_logger.rb
63
+ - test/test_helper.rb
64
+ - VERSION.yml
30
65
  homepage: http://github.com/cwise/exception_logger
31
66
  licenses: []
32
67
  post_install_message: