radiant-forms-extension 3.1.1 → 3.2.0.beta.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.
- data/README.md +13 -5
- data/VERSION +1 -1
- data/radiant-forms-extension.gemspec +3 -3
- metadata +13 -9
data/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Radiant Forms Extension
|
|
2
2
|
|
|
3
|
+
## BETA edition
|
|
4
|
+
|
|
5
|
+
Using this on master so that we can test the gem, this isn't recommended in production
|
|
6
|
+
|
|
3
7
|
This extension allows a developer to create forms which can take on multiple tasks
|
|
4
8
|
|
|
5
9
|
Using forms 'DRY's up the process of creating and reusing forms across a site (well I think so at least).
|
|
@@ -68,7 +72,8 @@ Using forms 'DRY's up the process of creating and reusing forms across a site (w
|
|
|
68
72
|
|
|
69
73
|
*assuming you have forms_mail installed as well*
|
|
70
74
|
|
|
71
|
-
|
|
75
|
+
cool_mailer:
|
|
76
|
+
extension: mail
|
|
72
77
|
field:
|
|
73
78
|
from: contact[email]
|
|
74
79
|
recipients: info@company.com
|
|
@@ -106,7 +111,8 @@ Define your mailing variables
|
|
|
106
111
|
|
|
107
112
|
_hardcoded_
|
|
108
113
|
|
|
109
|
-
|
|
114
|
+
cool_mailer:
|
|
115
|
+
extension: mail
|
|
110
116
|
from: email@email.com
|
|
111
117
|
to: email@email.com
|
|
112
118
|
reply_to: email@email.com
|
|
@@ -114,7 +120,8 @@ _hardcoded_
|
|
|
114
120
|
|
|
115
121
|
_variable_
|
|
116
122
|
|
|
117
|
-
|
|
123
|
+
cool_mailer:
|
|
124
|
+
extension: mail
|
|
118
125
|
field:
|
|
119
126
|
from: person[email]
|
|
120
127
|
to: person[email]
|
|
@@ -164,9 +171,10 @@ A showcase of how to use addons, allows you to send emails directly from the pag
|
|
|
164
171
|
|
|
165
172
|
end
|
|
166
173
|
|
|
167
|
-
Any form configured with a **blah**
|
|
174
|
+
Any form configured with a block containing a **blah** extension key will know to call this models create method
|
|
168
175
|
|
|
169
|
-
|
|
176
|
+
cool_mailer:
|
|
177
|
+
extension: blah
|
|
170
178
|
key: value
|
|
171
179
|
another: value
|
|
172
180
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.2.0.beta.1
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{radiant-forms-extension}
|
|
8
|
-
s.version = "3.
|
|
8
|
+
s.version = "3.2.0.beta.1"
|
|
9
9
|
|
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new("
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["dirkkelly"]
|
|
12
|
-
s.date = %q{2010-10-
|
|
12
|
+
s.date = %q{2010-10-19}
|
|
13
13
|
s.description = %q{Send data from a page to a form handler, extendable with addons}
|
|
14
14
|
s.email = %q{dirk.kelly@squaretalent.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: radiant-forms-extension
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 62196449
|
|
5
|
+
prerelease: true
|
|
6
6
|
segments:
|
|
7
7
|
- 3
|
|
8
|
+
- 2
|
|
9
|
+
- 0
|
|
10
|
+
- beta
|
|
8
11
|
- 1
|
|
9
|
-
|
|
10
|
-
version: 3.1.1
|
|
12
|
+
version: 3.2.0.beta.1
|
|
11
13
|
platform: ruby
|
|
12
14
|
authors:
|
|
13
15
|
- dirkkelly
|
|
@@ -15,7 +17,7 @@ autorequire:
|
|
|
15
17
|
bindir: bin
|
|
16
18
|
cert_chain: []
|
|
17
19
|
|
|
18
|
-
date: 2010-10-
|
|
20
|
+
date: 2010-10-19 00:00:00 +08:00
|
|
19
21
|
default_executable:
|
|
20
22
|
dependencies: []
|
|
21
23
|
|
|
@@ -96,12 +98,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
96
98
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
99
|
none: false
|
|
98
100
|
requirements:
|
|
99
|
-
- - "
|
|
101
|
+
- - ">"
|
|
100
102
|
- !ruby/object:Gem::Version
|
|
101
|
-
hash:
|
|
103
|
+
hash: 25
|
|
102
104
|
segments:
|
|
103
|
-
-
|
|
104
|
-
|
|
105
|
+
- 1
|
|
106
|
+
- 3
|
|
107
|
+
- 1
|
|
108
|
+
version: 1.3.1
|
|
105
109
|
requirements: []
|
|
106
110
|
|
|
107
111
|
rubyforge_project:
|