Skip to content

Commit eabd7ee

Browse files
authored
0.8 (#72)
Readme Update
1 parent cde2366 commit eabd7ee

27 files changed

+326
-239
lines changed

.coveralls.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
service_name: travis-ci

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ tmp
2222
mkmf.log
2323
*.tmp
2424
.rspec_status
25+
/coverage/
2526

2627
##########################################################
2728
##########################################################

.rspec_status

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
example_id | status | run_time |
2+
---------------------------------------------- | ------ | --------------- |
3+
./spec/controllers/controller_spec.rb[1:1:1] | passed | 0.00033 seconds |
4+
./spec/controllers/controller_spec.rb[1:3:1:1] | passed | 0.00291 seconds |
5+
./spec/controllers/controller_spec.rb[1:4:1:1] | passed | 0.00057 seconds |
6+
./spec/features/asset_spec.rb[1:1:1] | passed | 0.00023 seconds |
7+
./spec/features/asset_spec.rb[1:2:1] | passed | 0.00015 seconds |
8+
./spec/features/config_spec.rb[1:1:1] | passed | 0.00184 seconds |
9+
./spec/features/config_spec.rb[1:1:2] | passed | 0.00016 seconds |
10+
./spec/features/config_spec.rb[1:1:3] | passed | 0.00015 seconds |
11+
./spec/features/config_spec.rb[1:1:4] | passed | 0.00019 seconds |
12+
./spec/features/config_spec.rb[1:1:5] | passed | 0.00015 seconds |
13+
./spec/features/config_spec.rb[1:1:6] | passed | 0.00017 seconds |
14+
./spec/features/config_spec.rb[1:1:7] | passed | 0.00022 seconds |
15+
./spec/features/config_spec.rb[1:1:8] | passed | 0.00242 seconds |
16+
./spec/features/engine_spec.rb[1:1:1:1] | passed | 0.00021 seconds |
17+
./spec/features/engine_spec.rb[1:1:1:2] | passed | 0.00199 seconds |
18+
./spec/features/engine_spec.rb[1:1:2:1] | passed | 0.0003 seconds |
19+
./spec/features/engine_spec.rb[1:1:2:2] | passed | 0.00014 seconds |
20+
./spec/features/engine_spec.rb[1:2:1:1] | passed | 0.00229 seconds |
21+
./spec/features/engine_spec.rb[1:2:1:2] | passed | 0.00028 seconds |
22+
./spec/features/engine_spec.rb[1:2:1:3] | passed | 0.00022 seconds |
23+
./spec/features/engine_spec.rb[1:2:1:4] | passed | 0.00014 seconds |
24+
./spec/features/engine_spec.rb[1:2:1:5] | passed | 0.00028 seconds |
25+
./spec/features/engine_spec.rb[1:2:1:6] | passed | 0.00017 seconds |
26+
./spec/features/engine_spec.rb[1:2:3:1:1] | passed | 0.00028 seconds |
27+
./spec/features/engine_spec.rb[1:2:3:2:1] | passed | 0.00206 seconds |
28+
./spec/features/engine_spec.rb[1:2:4:1] | passed | 0.00024 seconds |
29+
./spec/routing/routing_spec.rb[1:1:1:1] | passed | 0.01336 seconds |
30+
./spec/routing/routing_spec.rb[1:1:1:2] | passed | 0.03184 seconds |
31+
./spec/routing/routing_spec.rb[1:1:2:1] | passed | 0.00636 seconds |
32+
./spec/routing/routing_spec.rb[1:1:2:2] | passed | 0.00883 seconds |
33+
./spec/routing/routing_spec.rb[1:2:1:1] | passed | 0.01326 seconds |
34+
./spec/routing/routing_spec.rb[1:2:1:2] | passed | 0.01605 seconds |
35+
./spec/routing/routing_spec.rb[1:2:2:1] | passed | 0.00447 seconds |
36+
./spec/routing/routing_spec.rb[1:2:2:2] | passed | 0.00699 seconds |

.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,9 @@ rvm:
55
- 2.4.4
66
- 2.5.1
77
- ruby-head
8+
notifications:
9+
- false
10+
scripts:
11+
- bundle exec rspec
12+
after_script:
13+
- bundle exec rake coveralls:push

README.md

+217-235
Large diffs are not rendered by default.
-315 KB
Binary file not shown.
Binary file not shown.

exception_handler.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ Gem::Specification.new do |s|
5555
s.add_development_dependency "rake"
5656
s.add_development_dependency "rspec"
5757
s.add_development_dependency "rspec-rails"
58+
s.add_development_dependency "coveralls"
5859
s.add_development_dependency "sqlite3", ">= 1.3.10"
5960

6061
##############################################################

readme/rails.jpg

-659 KB
Binary file not shown.

readme/show_exceptions.png

44.8 KB
Loading

readme/titles/icons/changelog.png

-2.94 KB
Binary file not shown.

readme/titles/icons/config.png

-2.81 KB
Binary file not shown.

readme/titles/icons/custom.png

-2.85 KB
Binary file not shown.

readme/titles/icons/database.png

-2.82 KB
Binary file not shown.

readme/titles/icons/dev.png

-2.9 KB
Binary file not shown.

readme/titles/icons/email.png

-2.88 KB
Binary file not shown.

readme/titles/icons/generators.png

-2.85 KB
Binary file not shown.

readme/titles/icons/layout.png

-2.9 KB
Binary file not shown.

readme/titles/icons/locales.png

-2.83 KB
Binary file not shown.

readme/titles/icons/support.png

-154 Bytes
Binary file not shown.

readme/titles/icons/views.png

-2.86 KB
Binary file not shown.

readme/titles/install.png

-7.37 KB
Binary file not shown.

readme/titles/middleware.png

-6.38 KB
Binary file not shown.

readme/titles/rails5.png

-8.13 KB
Binary file not shown.

spec/mailers/mailer_spec.rb

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#####################################################
2+
#####################################################
3+
## __ __ _ _ ##
4+
## | \/ | (_) | ##
5+
## | . . | __ _ _| | ___ _ __ ##
6+
## | |\/| |/ _` | | |/ _ \ '__| ##
7+
## | | | | (_| | | | __/ | ##
8+
## \_| |_/\__,_|_|_|\___|_| ##
9+
## ##
10+
#####################################################
11+
#####################################################
12+
13+
require 'spec_helper'
14+
15+
###############################################
16+
###############################################
17+
18+
# => ExceptionHandler (Mailer)
19+
# => Check veracity of methods / returned results
20+
# =>
21+
RSpec.describe ExceptionHandler::ExceptionMailer do
22+
23+
end
24+
25+
###############################################
26+
###############################################

spec/models/model_spec.rb

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#####################################################
2+
#####################################################
3+
## __ __ _ _ ##
4+
## | \/ | | | | | ##
5+
## | . . | ___ __| | ___| | ##
6+
## | |\/| |/ _ \ / _` |/ _ \ | ##
7+
## | | | | (_) | (_| | __/ | ##
8+
## \_| |_/\___/ \__,_|\___|_| ##
9+
## ##
10+
#####################################################
11+
#####################################################
12+
13+
require 'spec_helper'
14+
15+
###############################################
16+
###############################################
17+
18+
# => ExceptionHandler (Model)
19+
# => Check veracity of methods / returned results
20+
# =>
21+
RSpec.describe ExceptionHandler::Exception do
22+
23+
end
24+
25+
###############################################
26+
###############################################

spec/spec_helper.rb

+12-4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@
1111
###############################################
1212
###############################################
1313

14+
# => Coveralls
15+
# => https://docs.coveralls.io/
16+
require 'coveralls'
17+
Coveralls.wear!('rails')
18+
19+
###############################################
20+
###############################################
21+
1422
# => Helper
1523
require 'spec_helper'
1624

@@ -38,10 +46,10 @@
3846

3947
# Load fixtures from the engine
4048
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
41-
ActiveSupport::TestCase.fixture_path = File.expand_path("fixtures", __dir__)
42-
ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
43-
ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files"
44-
ActiveSupport::TestCase.fixtures :all
49+
ActiveSupport::TestCase.fixture_path = File.expand_path("fixtures", __dir__)
50+
ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
51+
ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files"
52+
ActiveSupport::TestCase.fixtures :all
4553
end
4654

4755
###############################################

0 commit comments

Comments
 (0)