gfrom 0.1.1 → 0.1.2
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/gfrom.gemspec +3 -3
- data/readme.md +5 -3
- metadata +5 -3
data/gfrom.gemspec
CHANGED
@@ -5,11 +5,11 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.platform = Gem::Platform::RUBY
|
7
7
|
spec.name = "gfrom"
|
8
|
-
spec.version = "0.1.
|
8
|
+
spec.version = "0.1.2"
|
9
9
|
spec.authors = ["Marvin Marcelo"]
|
10
10
|
spec.email = ["mrclmrvn@gmail.com"]
|
11
|
-
spec.description = %q{
|
12
|
-
spec.summary = %q{Google
|
11
|
+
spec.description = %q{Render unathenticated Google Form in your website. Useful for collecting data from your users without a database. Just create a google form from your google account. If you are using Google Apps, please read form options}
|
12
|
+
spec.summary = %q{From Google Form}
|
13
13
|
spec.homepage = "https://bitbucket.org/mrclmrvn/gfrom/"
|
14
14
|
spec.license = "MIT"
|
15
15
|
spec.date = '2013-05-01'
|
data/readme.md
CHANGED
@@ -1,12 +1,14 @@
|
|
1
1
|
# Gfrom (From Google Form)
|
2
2
|
|
3
|
-
Render unathenticated Google Form in your website. Useful for collecting data from your users without a database. Just create a google form from your google account
|
3
|
+
Render unathenticated Google Form in your website. Useful for collecting data from your users without a database. Just create a google form from your google account. If you are using Google Apps, please read [form options](http://support.google.com/drive/bin/answer.py?hl=en&answer=160166).
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
7
|
Add this line to your application's Gemfile:
|
8
8
|
|
9
|
-
|
9
|
+
```ruby
|
10
|
+
gem 'gfrom'
|
11
|
+
```
|
10
12
|
|
11
13
|
And then execute:
|
12
14
|
|
@@ -35,7 +37,7 @@ result = @myform.submit(params)
|
|
35
37
|
# or false otherwise, and an error message, which would probably unsatisfied required fields
|
36
38
|
```
|
37
39
|
|
38
|
-
|
40
|
+
## TODO
|
39
41
|
|
40
42
|
* Support for Authenticated forms (requires login to organization/google apps)
|
41
43
|
* Radio buttons and checkboxes (not sure if this will work on current version - 0.1.0)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gfrom
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -91,7 +91,9 @@ dependencies:
|
|
91
91
|
- - ! '>='
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: '0'
|
94
|
-
description:
|
94
|
+
description: Render unathenticated Google Form in your website. Useful for collecting
|
95
|
+
data from your users without a database. Just create a google form from your google
|
96
|
+
account. If you are using Google Apps, please read form options
|
95
97
|
email:
|
96
98
|
- mrclmrvn@gmail.com
|
97
99
|
executables: []
|
@@ -130,6 +132,6 @@ rubyforge_project:
|
|
130
132
|
rubygems_version: 1.8.25
|
131
133
|
signing_key:
|
132
134
|
specification_version: 3
|
133
|
-
summary: Google
|
135
|
+
summary: From Google Form
|
134
136
|
test_files:
|
135
137
|
- spec/.gitkeep
|