contact_form 0.0.4 → 0.0.5
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/MIT-LICENSE +1 -1
- data/README.rdoc +15 -3
- data/lib/contact_form/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bae0ed2fbd6c744be4cab30f46bd519591b2d6d1
|
|
4
|
+
data.tar.gz: 6ba48a73e630d557937aa9773b740ed438a27264
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5406d2d9d5c096c207a63f1c2af5f81154572461179d366272631350214e821f8098c2b36f33f347e61e126627f16548bf78a4d0199e1c644860e102d23c8a0e
|
|
7
|
+
data.tar.gz: b43576144b430e291f09ad8e8311af1417d7dbd4be8d23cfb96a5fa067b064428bb66bde532f11e70789f0cffd16cb17322952d02800ea6a97e619e5ad8e7364
|
data/MIT-LICENSE
CHANGED
data/README.rdoc
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
This gem contains a little contact form. It is build with a mountable engine.
|
|
4
4
|
It is simple and just sends two emails. Nothing gets saved to the database. The first email is to the website administrator and the second email is an auto reply to the user.
|
|
5
5
|
|
|
6
|
-
This gem is compatible with rails 4.0.0 and rails 3.2. For rails 3.2 you must use the version 0.0.2, or the branch "rails_32".
|
|
6
|
+
This gem is compatible with rails 4.1.x, 4.0.0 and rails 3.2. For rails 4.0.0 you must use the version 0.0.4, or the branch "rails_40". For rails 3.2 you must use the version 0.0.2, or the branch "rails_32".
|
|
7
7
|
|
|
8
8
|
=== Quick Start
|
|
9
9
|
|
|
10
|
-
rails 4.
|
|
10
|
+
rails 4.1.0:
|
|
11
11
|
|
|
12
12
|
gem install contact_form
|
|
13
13
|
|
|
@@ -15,6 +15,18 @@ Or add it to your Gemfile:
|
|
|
15
15
|
|
|
16
16
|
gem "contact_form"
|
|
17
17
|
|
|
18
|
+
rails 4.0.0:
|
|
19
|
+
|
|
20
|
+
gem install contact_form -v 0.0.4
|
|
21
|
+
|
|
22
|
+
Or add it to your Gemfile:
|
|
23
|
+
|
|
24
|
+
gem "contact_form", "0.0.4"
|
|
25
|
+
|
|
26
|
+
or directly from the rails 4.0.0 branch from github:
|
|
27
|
+
|
|
28
|
+
gem "contact_form", :git => "https://github.com/mattherick/contact_form.git", :branch => "rails_40"
|
|
29
|
+
|
|
18
30
|
rails 3.2:
|
|
19
31
|
|
|
20
32
|
gem install contact_form -v 0.0.2
|
|
@@ -57,4 +69,4 @@ Or simple generate all files
|
|
|
57
69
|
rails g contact_form:all # generates all files
|
|
58
70
|
|
|
59
71
|
|
|
60
|
-
Copyright (c) 2012 Matthias Frick, released under the MIT license
|
|
72
|
+
Copyright (c) 2012 - 2014 Matthias Frick, released under the MIT license
|
data/lib/contact_form/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: contact_form
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthias Frick
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-09-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 4.
|
|
19
|
+
version: 4.1.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ~>
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 4.
|
|
26
|
+
version: 4.1.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: jquery-rails
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -226,7 +226,7 @@ rubyforge_project: contact_form
|
|
|
226
226
|
rubygems_version: 2.0.2
|
|
227
227
|
signing_key:
|
|
228
228
|
specification_version: 4
|
|
229
|
-
summary: contact_form-0.0.
|
|
229
|
+
summary: contact_form-0.0.5
|
|
230
230
|
test_files:
|
|
231
231
|
- test/contact_form_test.rb
|
|
232
232
|
- test/dummy/app/assets/javascripts/application.js
|