maily 0.10.0 → 0.10.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d01f0d8930069a1374188b48d4e61c1a1086fbe3255daa27f17a6bc216a2acbd
4
- data.tar.gz: 7807b4055b8db684bc5a20434e79d9a40fff8c89386002e8356ccc655b8da739
3
+ metadata.gz: d9082fa9721504abbc0670f970a7758c91abdb448313a1217518ff69f78a73d0
4
+ data.tar.gz: cec5451e7cd8199abdd5c2b211c2e065c2daa01ccf35840b65ab383f8cc42af2
5
5
  SHA512:
6
- metadata.gz: f6742b9d9d8b09d469e719dc685219c12358dba1af053a98ef6daecaf70588134d921d1bac1d353342c8cffc9fc88e7623d2591d06dcef8cbafd8456f57b0f6d
7
- data.tar.gz: 95f2d2e0cd3f1498fe913b5f2cab33558b52d0ef283edb82515f1ff58ff5d0b2114ea424b18429c98efb493fca47ef416a59a67c836ec6ded7f901b43bea27a7
6
+ metadata.gz: c54d8bcef6389af1894e4da3013d7331e61e99b1be8d1a0fe058f4a6eed37a3101a48244e92b67aecd398ba21056ef33fa23ebf7f140db133529fe88dd2aea78
7
+ data.tar.gz: 466b96cda518e409cd63946ebdc5d348f816536d2e46d9377d72dc2c023eef4ba6a3ff795bb5179b9ee72f9e58ce253a0911eacb5a721fce5363ea38a284061d
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.10.1]
6
+
7
+ - UI: fix iframe (onload) resize
8
+
5
9
  ## [0.10.0]
6
10
 
7
11
  - Support `ActionMailer::Parameterized` (#39)
@@ -114,6 +118,7 @@ All notable changes to this project will be documented in this file.
114
118
 
115
119
  - First real usable release :tada:
116
120
 
121
+ [0.10.1]: https://github.com/markets/maily/compare/v0.10.0...v0.10.1
117
122
  [0.10.0]: https://github.com/markets/maily/compare/v0.9.1...v0.10.0
118
123
  [0.9.1]: https://github.com/markets/maily/compare/v0.9.0...v0.9.1
119
124
  [0.9.0]: https://github.com/markets/maily/compare/v0.8.2...v0.9.0
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  <p align="center">
6
6
  <a href="https://rubygems.org/gems/maily"><img src="https://img.shields.io/gem/v/maily.svg?style=flat-square"></a>
7
7
  <a href="https://travis-ci.org/markets/maily"><img src="https://travis-ci.org/markets/maily.svg?branch=master"></a>
8
- <a href="https://codeclimate.com/github/markets/maily/maintainability)"><img src="https://api.codeclimate.com/v1/badges/fff01b2137fd73070b14/maintainability"></a>
8
+ <a href="https://codeclimate.com/github/markets/maily/maintainability"><img src="https://api.codeclimate.com/v1/badges/fff01b2137fd73070b14/maintainability"></a>
9
9
  <a href="https://github.com/markets/maily/blob/master/MIT-LICENSE"><img alt="GitHub" src="https://img.shields.io/github/license/markets/maily.svg?style=flat-square"></a>
10
10
  </p>
11
11
  </div>
@@ -2,8 +2,9 @@
2
2
  <html>
3
3
  <head>
4
4
  <title><%= title %></title>
5
- <%= stylesheet_link_tag "maily/application", media: "all" %>
6
5
  <%= csrf_meta_tags %>
6
+ <%= stylesheet_link_tag "maily/application", media: "all" %>
7
+ <%= render 'maily/shared/javascript' %>
7
8
  </head>
8
9
  <body>
9
10
  <%= render 'maily/shared/header' %>
@@ -68,9 +68,3 @@
68
68
  </ul>
69
69
  <% end %>
70
70
  </div>
71
-
72
- <script>
73
- function resizeIframe(obj) {
74
- obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
75
- }
76
- </script>
@@ -0,0 +1,5 @@
1
+ <script>
2
+ function resizeIframe(obj) {
3
+ obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
4
+ }
5
+ </script>
@@ -1,3 +1,3 @@
1
1
  module Maily
2
- VERSION = "0.10.0"
2
+ VERSION = "0.10.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: maily
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - markets
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-27 00:00:00.000000000 Z
11
+ date: 2019-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -107,6 +107,7 @@ files:
107
107
  - app/views/maily/shared/_flash_messages.html.erb
108
108
  - app/views/maily/shared/_footer.html.erb
109
109
  - app/views/maily/shared/_header.html.erb
110
+ - app/views/maily/shared/_javascript.html.erb
110
111
  - app/views/maily/shared/_sidebar.html.erb
111
112
  - config/routes.rb
112
113
  - lib/generators/maily/install_generator.rb
@@ -136,7 +137,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
137
  - !ruby/object:Gem::Version
137
138
  version: '0'
138
139
  requirements: []
139
- rubygems_version: 3.0.3
140
+ rubyforge_project:
141
+ rubygems_version: 2.7.6
140
142
  signing_key:
141
143
  specification_version: 4
142
144
  summary: Rails Engine to preview emails in the browser.