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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +1 -1
- data/app/views/layouts/maily/application.html.erb +2 -1
- data/app/views/maily/emails/show.html.erb +0 -6
- data/app/views/maily/shared/_javascript.html.erb +5 -0
- data/lib/maily/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9082fa9721504abbc0670f970a7758c91abdb448313a1217518ff69f78a73d0
|
|
4
|
+
data.tar.gz: cec5451e7cd8199abdd5c2b211c2e065c2daa01ccf35840b65ab383f8cc42af2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c54d8bcef6389af1894e4da3013d7331e61e99b1be8d1a0fe058f4a6eed37a3101a48244e92b67aecd398ba21056ef33fa23ebf7f140db133529fe88dd2aea78
|
|
7
|
+
data.tar.gz: 466b96cda518e409cd63946ebdc5d348f816536d2e46d9377d72dc2c023eef4ba6a3ff795bb5179b9ee72f9e58ce253a0911eacb5a721fce5363ea38a284061d
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
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' %>
|
data/lib/maily/version.rb
CHANGED
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.
|
|
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-
|
|
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
|
-
|
|
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.
|