r3_exception_logger 0.1.10 → 0.1.11
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +75 -0
- data/LICENSE +20 -0
- data/README.old +107 -0
- data/README.rdoc +154 -0
- data/Rakefile +66 -0
- data/VERSION.yml +5 -0
- data/app/controllers/logged_exceptions_controller.rb +86 -0
- data/app/helpers/logged_exceptions_helper.rb +40 -0
- data/app/models/logged_exception.rb +79 -0
- data/app/views/layouts/logged_exceptions.html.erb +19 -0
- data/app/views/logged_exceptions/_exceptions.html.erb +31 -0
- data/app/views/logged_exceptions/_feed.html.erb +3 -0
- data/app/views/logged_exceptions/_show.html.erb +23 -0
- data/app/views/logged_exceptions/destroy.js.erb +2 -0
- data/app/views/logged_exceptions/destroy_all.js.erb +2 -0
- data/app/views/logged_exceptions/feed.rss.builder +20 -0
- data/app/views/logged_exceptions/index.html.erb +46 -0
- data/app/views/logged_exceptions/index.js.erb +2 -0
- data/app/views/logged_exceptions/query.js.erb +2 -0
- data/app/views/logged_exceptions/show.html.erb +8 -0
- data/app/views/logged_exceptions/show.js.erb +2 -0
- data/config/initializers/date_formats.rb +5 -0
- data/config/locales/en.yml +16 -0
- data/config/routes.rb +11 -0
- data/exception_logger.gemspec +23 -0
- data/public/javascripts/exception_logger.js +69 -0
- data/public/stylesheets/exception_logger.css +325 -0
- data/r3_exception_logger-0.1.10.gem +0 -0
- data/test/controllers/logged_exceptions_controller_test.rb +196 -0
- data/test/models/logged_exception_test.rb +39 -0
- data/test/rails_root/Gemfile +52 -0
- data/test/rails_root/Gemfile.lock +146 -0
- data/test/rails_root/app/controllers/application_controller.rb +5 -0
- data/test/rails_root/test/factories/exception_logger.rb +142 -0
- data/test/test_helper.rb +10 -0
- metadata +36 -1
data/test/test_helper.rb
ADDED
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.
|
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:
|