flyover-contact 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/routes.rb +1 -1
- data/lib/contact/version.rb +1 -1
- data/lib/flyover-contact.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5b05b293665f0472e0f633279cce9030859d170
|
4
|
+
data.tar.gz: 7887c886b4a133229f0e3f4a1907574a30b2505b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd1a15223861ac04555df8ec553dd09804bccc3d539e3dc9db6b2e13c7081efe310d746944bdc5f84c97792ea9e737fb3efb3aa29e1d2228d3de53a18a5bed06
|
7
|
+
data.tar.gz: 36fd24acfd826ecf2f6e405ece140b44786bc8c7d3dcc34f1574b0878a48885dddb1809aef3e9a93ff6dd5c1f0740205578ce17084b1be0f9739a1a1f06e3a6a
|
data/config/routes.rb
CHANGED
data/lib/contact/version.rb
CHANGED
data/lib/flyover-contact.rb
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
require "contact/engine"
|
2
2
|
|
3
3
|
module Contact
|
4
|
-
mattr_accessor :to_email, :subject, :success_message, :base_controller
|
4
|
+
mattr_accessor :to_email, :subject, :success_message, :base_controller, :contact_page_path
|
5
5
|
@@to_email = "to@example.com"
|
6
6
|
@@subject = "New Contact Form Submission"
|
7
7
|
@@success_message = "Success! Your message has been sent and we'll get back to you as soon as possible."
|
8
8
|
@@base_controller = "::ApplicationController"
|
9
|
+
@@contact_page_path = "contact"
|
9
10
|
|
10
11
|
def self.configure(&block)
|
11
12
|
yield self
|