ominous 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/app/helpers/ominous/warnings_helper.rb +1 -1
- data/lib/ominous/version.rb +8 -2
- data/test/dummy/app/views/layouts/application.html.erb +13 -0
- data/test/dummy/app/views/things/index.html.erb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +1272 -0
- data/test/dummy/log/test.log +1211 -0
- data/test/dummy/tmp/cache/assets/C4E/860/sprockets%2F3846e91221a1804781ed844616a37b2f +0 -0
- data/test/dummy/tmp/cache/assets/C8C/290/sprockets%2F638827bda7464853364b3e374fa6d552 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/DA5/C50/sprockets%2F7927a05ef7b30ffae83363a81fdfb3c8 +0 -0
- data/test/dummy/tmp/cache/assets/DFF/160/sprockets%2Fcabc0678d4fc6e9077e4e0ee21d6a3ed +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/unit/helpers/ominous/warnings_helper_test.rb +12 -2
- metadata +96 -102
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
MTA0NTllMzNjM2Q2MTZkNTFlYmRiNGI1N2FlMGY4Mzc3MmI1ZTVjZg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
YTM1NDAxOGUwMmU4ZTA3YzhkM2NiNzBlZjQ1NTdlYmY2YzFhNDhhMA==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
ZTc4MGQ0OWY1NzY1NmJjZmIwMTYzNDdkNDBlMDg4NTA5ZDdlNWJmNjcxOTZj
|
10
|
+
Mzk5Zjk5ZDAxYzNmZmNjY2JjYjU1N2VjZjIxYjRlY2ZlMmE0ZjMxMDg0MWY4
|
11
|
+
YjkyYmIxMWQ2NTgzZTAyN2UyMzU5MmU3ZjhlZTMyZDNjMTE3OTg=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
MmQyODU0OTMyMDk4NzlhOTA1MDZhZTYzMmY4Zjk0OTg1NTczYmI3MGRjMjBj
|
14
|
+
ZjE3OTM0ZDhkZGZkODhmYzM3MmU4NTEzNTMzMDc2NmU3YjBjYTQ4ODNlYjJj
|
15
|
+
YzBlOGFiODdhYmY2MjlkNTA3ZjI0MDMwMmM4OWYyMDIyNzIxMDg=
|
data/lib/ominous/version.rb
CHANGED
@@ -1,10 +1,16 @@
|
|
1
1
|
module Ominous
|
2
|
-
VERSION = "0.1.
|
2
|
+
VERSION = "0.1.2"
|
3
3
|
end
|
4
4
|
|
5
5
|
# History
|
6
6
|
# =======
|
7
7
|
#
|
8
|
+
# 0.1.2
|
9
|
+
# -----
|
10
|
+
# Fixes bug where close_and_dismiss_warning closure url was relative to root ('/')
|
11
|
+
# which causes error is host app is in sub-uri. Url is now absolute rather than
|
12
|
+
# relative.
|
13
|
+
#
|
8
14
|
# 0.1.1
|
9
15
|
# -----
|
10
16
|
# Fix bug where trying to humanize the name to create a title cause an error
|
@@ -14,7 +20,7 @@ end
|
|
14
20
|
# -----
|
15
21
|
# Move to beta
|
16
22
|
#
|
17
|
-
# Rename ominous helper methods to remove likelihood of method
|
23
|
+
# Rename ominous helper methods to remove likelihood of method clashes in
|
18
24
|
# host app.
|
19
25
|
#
|
20
26
|
# 0.0.5
|
@@ -10,5 +10,18 @@
|
|
10
10
|
|
11
11
|
<%= yield %>
|
12
12
|
|
13
|
+
|
14
|
+
<div>
|
15
|
+
<h2>Ominous Warning session data</h2>
|
16
|
+
<% if !session[:ominous_warnings] or session[:ominous_warnings].empty? %>
|
17
|
+
none
|
18
|
+
<% else %>
|
19
|
+
<ul>
|
20
|
+
<% session[:ominous_warnings].each do |name, content| %>
|
21
|
+
<li><strong><%= name %></strong>: <%= content %></li>
|
22
|
+
<% end %>
|
23
|
+
</ul>
|
24
|
+
<% end %>
|
25
|
+
</div>
|
13
26
|
</body>
|
14
27
|
</html>
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|