isurvey 0.0.8 → 0.0.9
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 +8 -8
- data/README.md +2 -2
- data/lib/isurvey/api.rb +1 -0
- data/lib/isurvey/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NjhlMmQwNzkxMWUxYmZjNzAyYWY3MTAxMjQ5MDljMjA5ZDA2NDFmMA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDljYzQ2OTMxNzI3OGFkZTFkNTY4NDE5NDMxN2MxZWMwYWM1MmQ3Nw==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YTVmYTk4NzE1Mjc3MjNmMzUzMDc2YjBmOTBlMjFkNjBjM2U1MjBkMDBjMGQy
|
|
10
|
+
NGQ3MWJiZGUxYzUwMTZhYmM4MDc2Y2UyZjJiMzAzM2RhZjUzOTBkYzdhMGYy
|
|
11
|
+
ZTVkNWUwNjI5MDE5ZTE4M2ZhNGZhNjc2ODAxZGJmNjUyYWU2Nzg=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NWJkM2IyMWIxNGFjNWVjZmU4ZDU1YzE3ZjVmNjcwYjViZmNkMDYxZGUwZjMy
|
|
14
|
+
MDdlODdiZjI0YzhhYmI2OTliZjYxMDBjMmE4YjVhNjY1YjU5ZTk3MTdkYTc0
|
|
15
|
+
Y2UzMzhkNzcyOTllMWU0OWQ0NDY3MzE1ZTJiZTM2NDliOGI0YzQ=
|
data/README.md
CHANGED
|
@@ -16,7 +16,7 @@ Or install it yourself as:
|
|
|
16
16
|
|
|
17
17
|
$ gem install isurvey
|
|
18
18
|
|
|
19
|
-
You must set up your company identifier and survey password. Perhaps in config/
|
|
19
|
+
You must set up your company identifier and survey password. Perhaps in config/initializers/isurvey.rb if you are using Rails.
|
|
20
20
|
|
|
21
21
|
Isurvey::Credentials.company_identifier = [cp]
|
|
22
22
|
Isurvey::Credentials.survey_password = [sp]
|
|
@@ -33,7 +33,7 @@ To get a list of all answers:
|
|
|
33
33
|
|
|
34
34
|
Isurvey::Answer.all
|
|
35
35
|
|
|
36
|
-
All of the properties available through the
|
|
36
|
+
All of the properties available through the iSurvey API are also available through the gem. You obtain a property value by calling for it on the appropriate class; for example, Isurvey::Answer.all.first.screen_id would give you the screen_id of the first Answer.
|
|
37
37
|
|
|
38
38
|
For questions, the available properties are:
|
|
39
39
|
|
data/lib/isurvey/api.rb
CHANGED
data/lib/isurvey/version.rb
CHANGED