postmortem 0.1.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/.rubocop.yml +1 -0
- data/.ruby-version +1 -0
- data/README.md +61 -10
- data/doc/screenshot.png +0 -0
- data/layout/default.html.erb +69 -41
- data/layout/dependencies.css +11 -0
- data/layout/dependencies.js +14 -0
- data/layout/headers_template.html +35 -0
- data/layout/index.html.erb +28 -0
- data/layout/layout.css +160 -0
- data/layout/layout.js +248 -0
- data/lib/postmortem.rb +28 -15
- data/lib/postmortem/adapters.rb +2 -0
- data/lib/postmortem/adapters/action_mailer.rb +46 -7
- data/lib/postmortem/adapters/base.rb +32 -6
- data/lib/postmortem/adapters/mail.rb +21 -0
- data/lib/postmortem/adapters/pony.rb +31 -0
- data/lib/postmortem/configuration.rb +35 -0
- data/lib/postmortem/delivery.rb +22 -11
- data/lib/postmortem/index.rb +60 -0
- data/lib/postmortem/layout.rb +87 -4
- data/lib/postmortem/{action_mailer.rb → plugins/action_mailer.rb} +0 -0
- data/lib/postmortem/plugins/mail.rb +11 -0
- data/lib/postmortem/plugins/pony.rb +17 -0
- data/lib/postmortem/version.rb +1 -1
- data/postmortem.gemspec +1 -0
- metadata +36 -8
- data/Gemfile.lock +0 -126
data/Gemfile.lock
DELETED
@@ -1,126 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
postmortem (0.1.0)
|
5
|
-
mail (~> 2.7)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
actionmailer (6.0.3.2)
|
11
|
-
actionpack (= 6.0.3.2)
|
12
|
-
actionview (= 6.0.3.2)
|
13
|
-
activejob (= 6.0.3.2)
|
14
|
-
mail (~> 2.5, >= 2.5.4)
|
15
|
-
rails-dom-testing (~> 2.0)
|
16
|
-
actionpack (6.0.3.2)
|
17
|
-
actionview (= 6.0.3.2)
|
18
|
-
activesupport (= 6.0.3.2)
|
19
|
-
rack (~> 2.0, >= 2.0.8)
|
20
|
-
rack-test (>= 0.6.3)
|
21
|
-
rails-dom-testing (~> 2.0)
|
22
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
23
|
-
actionview (6.0.3.2)
|
24
|
-
activesupport (= 6.0.3.2)
|
25
|
-
builder (~> 3.1)
|
26
|
-
erubi (~> 1.4)
|
27
|
-
rails-dom-testing (~> 2.0)
|
28
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
29
|
-
activejob (6.0.3.2)
|
30
|
-
activesupport (= 6.0.3.2)
|
31
|
-
globalid (>= 0.3.6)
|
32
|
-
activesupport (6.0.3.2)
|
33
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
34
|
-
i18n (>= 0.7, < 2)
|
35
|
-
minitest (~> 5.1)
|
36
|
-
tzinfo (~> 1.1)
|
37
|
-
zeitwerk (~> 2.2, >= 2.2.2)
|
38
|
-
ast (2.4.1)
|
39
|
-
builder (3.2.4)
|
40
|
-
concurrent-ruby (1.1.7)
|
41
|
-
crass (1.0.6)
|
42
|
-
devpack (0.2.1)
|
43
|
-
diff-lcs (1.4.4)
|
44
|
-
erubi (1.9.0)
|
45
|
-
globalid (0.4.2)
|
46
|
-
activesupport (>= 4.2.0)
|
47
|
-
i18n (1.8.5)
|
48
|
-
concurrent-ruby (~> 1.0)
|
49
|
-
loofah (2.6.0)
|
50
|
-
crass (~> 1.0.2)
|
51
|
-
nokogiri (>= 1.5.9)
|
52
|
-
mail (2.7.1)
|
53
|
-
mini_mime (>= 0.1.1)
|
54
|
-
mini_mime (1.0.2)
|
55
|
-
mini_portile2 (2.4.0)
|
56
|
-
minitest (5.14.1)
|
57
|
-
nokogiri (1.10.10)
|
58
|
-
mini_portile2 (~> 2.4.0)
|
59
|
-
paint (2.2.0)
|
60
|
-
parallel (1.19.2)
|
61
|
-
parser (2.7.1.4)
|
62
|
-
ast (~> 2.4.1)
|
63
|
-
rack (2.2.3)
|
64
|
-
rack-test (1.1.0)
|
65
|
-
rack (>= 1.0, < 3)
|
66
|
-
rails-dom-testing (2.0.3)
|
67
|
-
activesupport (>= 4.2.0)
|
68
|
-
nokogiri (>= 1.6)
|
69
|
-
rails-html-sanitizer (1.3.0)
|
70
|
-
loofah (~> 2.3)
|
71
|
-
rainbow (3.0.0)
|
72
|
-
regexp_parser (1.7.1)
|
73
|
-
rexml (3.2.4)
|
74
|
-
rspec (3.9.0)
|
75
|
-
rspec-core (~> 3.9.0)
|
76
|
-
rspec-expectations (~> 3.9.0)
|
77
|
-
rspec-mocks (~> 3.9.0)
|
78
|
-
rspec-core (3.9.2)
|
79
|
-
rspec-support (~> 3.9.3)
|
80
|
-
rspec-expectations (3.9.2)
|
81
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
82
|
-
rspec-support (~> 3.9.0)
|
83
|
-
rspec-its (1.3.0)
|
84
|
-
rspec-core (>= 3.0.0)
|
85
|
-
rspec-expectations (>= 3.0.0)
|
86
|
-
rspec-mocks (3.9.1)
|
87
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
88
|
-
rspec-support (~> 3.9.0)
|
89
|
-
rspec-support (3.9.3)
|
90
|
-
rubocop (0.88.0)
|
91
|
-
parallel (~> 1.10)
|
92
|
-
parser (>= 2.7.1.1)
|
93
|
-
rainbow (>= 2.2.2, < 4.0)
|
94
|
-
regexp_parser (>= 1.7)
|
95
|
-
rexml
|
96
|
-
rubocop-ast (>= 0.1.0, < 1.0)
|
97
|
-
ruby-progressbar (~> 1.7)
|
98
|
-
unicode-display_width (>= 1.4.0, < 2.0)
|
99
|
-
rubocop-ast (0.3.0)
|
100
|
-
parser (>= 2.7.1.4)
|
101
|
-
ruby-progressbar (1.10.1)
|
102
|
-
strong_versions (0.4.5)
|
103
|
-
i18n (>= 0.5)
|
104
|
-
paint (~> 2.0)
|
105
|
-
thread_safe (0.3.6)
|
106
|
-
timecop (0.9.1)
|
107
|
-
tzinfo (1.2.7)
|
108
|
-
thread_safe (~> 0.1)
|
109
|
-
unicode-display_width (1.7.0)
|
110
|
-
zeitwerk (2.4.0)
|
111
|
-
|
112
|
-
PLATFORMS
|
113
|
-
ruby
|
114
|
-
|
115
|
-
DEPENDENCIES
|
116
|
-
actionmailer (~> 6.0)
|
117
|
-
devpack (~> 0.2.0)
|
118
|
-
postmortem!
|
119
|
-
rspec (~> 3.9)
|
120
|
-
rspec-its (~> 1.3)
|
121
|
-
rubocop (~> 0.88.0)
|
122
|
-
strong_versions (~> 0.4.5)
|
123
|
-
timecop (~> 0.9.1)
|
124
|
-
|
125
|
-
BUNDLED WITH
|
126
|
-
2.1.4
|