poptart 0.0.9 → 0.0.10
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/Gemfile.lock +1 -1
- data/lib/poptart/boolean_question.rb +2 -2
- data/lib/poptart/question.rb +5 -3
- data/lib/poptart/survey_question.rb +5 -0
- data/lib/poptart/user.rb +4 -0
- data/lib/version.rb +1 -1
- data/spec/requests/answers_spec.rb +20 -0
- data/spec/requests/creating_questions_spec.rb +3 -2
- data/spec/vcr/creating/quesitons_returns_boolean_question.yml +72 -65
- data/spec/vcr/retrieving/answers_returns_all_answered_survey_questions_for_a_question_by_key.yml +7928 -0
- metadata +4 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: poptart
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Austen Ito
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -240,6 +240,7 @@ files:
|
|
240
240
|
- spec/vcr/poptart/root/builds_urls.yml
|
241
241
|
- spec/vcr/poptart/root/returns_survey_links.yml
|
242
242
|
- spec/vcr/retrieving/answers_returns_all_answered_survey_questions_for_a_question.yml
|
243
|
+
- spec/vcr/retrieving/answers_returns_all_answered_survey_questions_for_a_question_by_key.yml
|
243
244
|
- spec/vcr/retrieving/answers_returns_answers.yml
|
244
245
|
- spec/vcr/retrieving/responses_returns_responses.yml
|
245
246
|
- spec/vcr/user/management_creates_a_user.yml
|
@@ -288,6 +289,7 @@ test_files:
|
|
288
289
|
- spec/vcr/poptart/root/builds_urls.yml
|
289
290
|
- spec/vcr/poptart/root/returns_survey_links.yml
|
290
291
|
- spec/vcr/retrieving/answers_returns_all_answered_survey_questions_for_a_question.yml
|
292
|
+
- spec/vcr/retrieving/answers_returns_all_answered_survey_questions_for_a_question_by_key.yml
|
291
293
|
- spec/vcr/retrieving/answers_returns_answers.yml
|
292
294
|
- spec/vcr/retrieving/responses_returns_responses.yml
|
293
295
|
- spec/vcr/user/management_creates_a_user.yml
|