mail_form 1.7.1 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a21d1043e50e04398ae1eaafa9d8d07293abda0fdaef6d05a1aa2d270c385ca
4
- data.tar.gz: 633a1afcc6ceeee820f9989c48637a0b6b1bf8cff9b0ec08189b9d4c5c525b7a
3
+ metadata.gz: fafb31d6fcba8c9d1412a17b15aa225963a0af0c27514218e33f7dc27bad71dd
4
+ data.tar.gz: 3d780e1e5eaa74e3f6a17a3b1bae23edb1ba8c860fff72a94be084da0e76a648
5
5
  SHA512:
6
- metadata.gz: b8ec2e855b47a401eafb56ea39a0f474a6f9fa5530cdaa2a70ec35e49940e36ba52bdd7448f1a80e89806408db3881216d21c1e66fe4c8b04d785446b9d43872
7
- data.tar.gz: f02a1213af0f4cef95c7ca79c6b875bc1d2e109ba766c4940c83b038dab4ff6684f95735f08751ef649d37fb51c4f70015b2e3c068cc050cfe9e591ca8cd6b95
6
+ metadata.gz: 2578aee1b96544f3da889237bc00969a994913f5b59581e69940fc3c28c29b38a72283c57c0959d9cf238855a90ec9a40e0c8d2093efa2a32f129b4a03b7e5d8
7
+ data.tar.gz: 5d119f7f61d22081be3a7c0c9356fce328823148dc841172180496d832635d8c21064497b5e6bcd3db0c58531cd2cfe5afcc2aee8d44a92b4afdc2235baefaaf
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009-2015 Plataformatec http://plataformatec.com.br/
1
+ Copyright (c) 2009-2019 Plataformatec http://plataformatec.com.br/
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -4,12 +4,12 @@
4
4
  [![Build Status](https://api.travis-ci.org/plataformatec/mail_form.svg?branch=master)](http://travis-ci.org/plataformatec/mail_form)
5
5
  [![Code Climate](https://codeclimate.com/github/plataformatec/mail_form.svg)](https://codeclimate.com/github/plataformatec/mail_form)
6
6
 
7
- ### Rails 3
7
+ ### Rails 5
8
8
 
9
9
  This gem was built on top of `ActiveModel` to showcase how you can pull in validations, naming
10
10
  and `i18n` from Rails to your models without the need to implement it all by yourself.
11
11
 
12
- This README refers to the **MailForm** gem to be used in Rails 3.2 or 4+. For instructions
12
+ This README refers to the **MailForm** gem to be used in Rails 5+. For instructions
13
13
  on how to use MailForm in older versions of Rails, please refer to the available branches.
14
14
 
15
15
  ### Description
@@ -224,4 +224,4 @@ Take a look at lib/mail_form/views/mail_form/contact.erb in this repo to see how
224
224
 
225
225
  If you discover any bug, please use github issues tracker.
226
226
 
227
- Copyright (c) 2009-2016 Plataformatec http://plataformatec.com.br/
227
+ Copyright (c) 2009-2019 Plataformatec http://plataformatec.com.br/
@@ -1,3 +1,3 @@
1
1
  module MailForm
2
- VERSION = "1.7.1".freeze
2
+ VERSION = "1.8.0".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mail_form
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - José Valim
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-04-14 00:00:00.000000000 Z
12
+ date: 2019-08-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionmailer
@@ -17,40 +17,28 @@ dependencies:
17
17
  requirements:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: '3.2'
21
- - - "<"
22
- - !ruby/object:Gem::Version
23
- version: '6'
20
+ version: '5.0'
24
21
  type: :runtime
25
22
  prerelease: false
26
23
  version_requirements: !ruby/object:Gem::Requirement
27
24
  requirements:
28
25
  - - ">="
29
26
  - !ruby/object:Gem::Version
30
- version: '3.2'
31
- - - "<"
32
- - !ruby/object:Gem::Version
33
- version: '6'
27
+ version: '5.0'
34
28
  - !ruby/object:Gem::Dependency
35
29
  name: activemodel
36
30
  requirement: !ruby/object:Gem::Requirement
37
31
  requirements:
38
32
  - - ">="
39
33
  - !ruby/object:Gem::Version
40
- version: '3.2'
41
- - - "<"
42
- - !ruby/object:Gem::Version
43
- version: '6'
34
+ version: '5.0'
44
35
  type: :runtime
45
36
  prerelease: false
46
37
  version_requirements: !ruby/object:Gem::Requirement
47
38
  requirements:
48
39
  - - ">="
49
40
  - !ruby/object:Gem::Version
50
- version: '3.2'
51
- - - "<"
52
- - !ruby/object:Gem::Version
53
- version: '6'
41
+ version: '5.0'
54
42
  description: Send e-mail straight from forms in Rails with I18n, validations, attachments
55
43
  and request information.
56
44
  email: contact@plataformatec.com.br
@@ -86,7 +74,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
86
74
  requirements:
87
75
  - - ">="
88
76
  - !ruby/object:Gem::Version
89
- version: '0'
77
+ version: 2.4.0
90
78
  required_rubygems_version: !ruby/object:Gem::Requirement
91
79
  requirements:
92
80
  - - ">="
@@ -94,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
82
  version: '0'
95
83
  requirements: []
96
84
  rubyforge_project: mail_form
97
- rubygems_version: 2.7.4
85
+ rubygems_version: 2.7.6
98
86
  signing_key:
99
87
  specification_version: 4
100
88
  summary: Send e-mail straight from forms in Rails with I18n, validations, attachments