samplify_api_client 1.0.0
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 +7 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +69 -0
- data/README.md +221 -0
- data/Rakefile +8 -0
- data/docs/AppError.md +10 -0
- data/docs/ApplicationItemData.md +11 -0
- data/docs/AttributeData.md +16 -0
- data/docs/AttributeOption.md +10 -0
- data/docs/Attributes.md +10 -0
- data/docs/AttributesApi.md +78 -0
- data/docs/AuthApi.md +191 -0
- data/docs/AuthError.md +9 -0
- data/docs/Author.md +10 -0
- data/docs/BuyProject.md +10 -0
- data/docs/BuyProjectItem.md +12 -0
- data/docs/BuyProjectResponse.md +9 -0
- data/docs/BuyProjectsPayload.md +7 -0
- data/docs/Categories.md +10 -0
- data/docs/CategoriesApi.md +72 -0
- data/docs/CategoryData.md +9 -0
- data/docs/CodePayload.md +11 -0
- data/docs/Countries.md +10 -0
- data/docs/CountriesApi.md +72 -0
- data/docs/CountryData.md +11 -0
- data/docs/CreateLineItem.md +10 -0
- data/docs/DefaultApi.md +88 -0
- data/docs/EndLinks.md +13 -0
- data/docs/ErrorType.md +9 -0
- data/docs/Event.md +10 -0
- data/docs/EventData.md +15 -0
- data/docs/EventListData.md +15 -0
- data/docs/Events.md +10 -0
- data/docs/EventsApi.md +287 -0
- data/docs/ExclusionData.md +9 -0
- data/docs/Feasibility.md +10 -0
- data/docs/FeasibilityApi.md +61 -0
- data/docs/FeasibilityData.md +14 -0
- data/docs/FeasibilityResponseData.md +9 -0
- data/docs/LineItemActionResponse.md +14 -0
- data/docs/LineItemData.md +22 -0
- data/docs/LineItemItemData.md +17 -0
- data/docs/LineItemReportData.md +25 -0
- data/docs/LineItemResponseData.md +27 -0
- data/docs/LineItems.md +10 -0
- data/docs/LineItemsApi.md +420 -0
- data/docs/Links.md +12 -0
- data/docs/LogoutPayload.md +10 -0
- data/docs/Meta.md +10 -0
- data/docs/Project.md +14 -0
- data/docs/ProjectAction.md +10 -0
- data/docs/ProjectActionResponse.md +13 -0
- data/docs/ProjectCategoryData.md +8 -0
- data/docs/ProjectItemData.md +14 -0
- data/docs/ProjectReport.md +10 -0
- data/docs/ProjectReportData.md +21 -0
- data/docs/ProjectReports.md +10 -0
- data/docs/ProjectResponse.md +10 -0
- data/docs/ProjectResponseData.md +19 -0
- data/docs/ProjectSurveyEndLinks.md +10 -0
- data/docs/ProjectSurveyEndLinksData.md +12 -0
- data/docs/Projects.md +10 -0
- data/docs/ProjectsApi.md +620 -0
- data/docs/QuotaCell.md +10 -0
- data/docs/QuotaCellFeasibility.md +9 -0
- data/docs/QuotaGroupData.md +9 -0
- data/docs/QuotaGroupFeasibility.md +8 -0
- data/docs/QuotaPlanData.md +9 -0
- data/docs/Reconcile.md +10 -0
- data/docs/ReconcileData.md +7 -0
- data/docs/RefreshTokenPayload.md +10 -0
- data/docs/Reprice.md +10 -0
- data/docs/RepriceData.md +22 -0
- data/docs/RepricePayload.md +20 -0
- data/docs/RespondentApi.md +86 -0
- data/docs/Status.md +9 -0
- data/docs/SupportedLanguage.md +10 -0
- data/docs/SurveyEndLinks.md +10 -0
- data/docs/SurveyTestId.md +10 -0
- data/docs/SurveyTestLink.md +9 -0
- data/docs/Target.md +11 -0
- data/docs/TargetingAttribute.md +10 -0
- data/docs/TokenMedia.md +11 -0
- data/docs/TokenPayload.md +11 -0
- data/docs/URLParam.md +9 -0
- data/docs/UpdateLineItem.md +21 -0
- data/docs/UpdateProjectData.md +13 -0
- data/docs/UpdateProjectLineItem.md +22 -0
- data/docs/UserInfo.md +10 -0
- data/docs/UserInfoResponseData.md +10 -0
- data/docs/UsersApi.md +68 -0
- data/examples/auth.rb +18 -0
- data/git_push.sh +55 -0
- data/lib/samplify_api_client/api/attributes_api.rb +111 -0
- data/lib/samplify_api_client/api/auth_api.rb +230 -0
- data/lib/samplify_api_client/api/categories_api.rb +99 -0
- data/lib/samplify_api_client/api/countries_api.rb +99 -0
- data/lib/samplify_api_client/api/default_api.rb +115 -0
- data/lib/samplify_api_client/api/events_api.rb +317 -0
- data/lib/samplify_api_client/api/feasibility_api.rb +75 -0
- data/lib/samplify_api_client/api/line_items_api.rb +468 -0
- data/lib/samplify_api_client/api/projects_api.rb +660 -0
- data/lib/samplify_api_client/api/respondent_api.rb +113 -0
- data/lib/samplify_api_client/api/users_api.rb +81 -0
- data/lib/samplify_api_client/api_client.rb +389 -0
- data/lib/samplify_api_client/api_error.rb +38 -0
- data/lib/samplify_api_client/configuration.rb +209 -0
- data/lib/samplify_api_client/models/app_error.rb +218 -0
- data/lib/samplify_api_client/models/application_item_data.rb +234 -0
- data/lib/samplify_api_client/models/attribute_data.rb +334 -0
- data/lib/samplify_api_client/models/attribute_option.rb +219 -0
- data/lib/samplify_api_client/models/attributes.rb +219 -0
- data/lib/samplify_api_client/models/auth_error.rb +205 -0
- data/lib/samplify_api_client/models/author.rb +253 -0
- data/lib/samplify_api_client/models/buy_project.rb +219 -0
- data/lib/samplify_api_client/models/buy_project_item.rb +243 -0
- data/lib/samplify_api_client/models/buy_project_response.rb +194 -0
- data/lib/samplify_api_client/models/buy_projects_payload.rb +174 -0
- data/lib/samplify_api_client/models/categories.rb +219 -0
- data/lib/samplify_api_client/models/category_data.rb +204 -0
- data/lib/samplify_api_client/models/code_payload.rb +229 -0
- data/lib/samplify_api_client/models/countries.rb +219 -0
- data/lib/samplify_api_client/models/country_data.rb +230 -0
- data/lib/samplify_api_client/models/create_line_item.rb +217 -0
- data/lib/samplify_api_client/models/end_links.rb +288 -0
- data/lib/samplify_api_client/models/error_type.rb +204 -0
- data/lib/samplify_api_client/models/event.rb +217 -0
- data/lib/samplify_api_client/models/event_data.rb +289 -0
- data/lib/samplify_api_client/models/event_list_data.rb +289 -0
- data/lib/samplify_api_client/models/events.rb +219 -0
- data/lib/samplify_api_client/models/exclusion_data.rb +206 -0
- data/lib/samplify_api_client/models/feasibility.rb +219 -0
- data/lib/samplify_api_client/models/feasibility_data.rb +255 -0
- data/lib/samplify_api_client/models/feasibility_response_data.rb +193 -0
- data/lib/samplify_api_client/models/line_item_action_response.rb +244 -0
- data/lib/samplify_api_client/models/line_item_data.rb +398 -0
- data/lib/samplify_api_client/models/line_item_item_data.rb +358 -0
- data/lib/samplify_api_client/models/line_item_report_data.rb +478 -0
- data/lib/samplify_api_client/models/line_item_response_data.rb +408 -0
- data/lib/samplify_api_client/models/line_items.rb +219 -0
- data/lib/samplify_api_client/models/links.rb +219 -0
- data/lib/samplify_api_client/models/logout_payload.rb +219 -0
- data/lib/samplify_api_client/models/meta.rb +203 -0
- data/lib/samplify_api_client/models/project.rb +273 -0
- data/lib/samplify_api_client/models/project_action.rb +217 -0
- data/lib/samplify_api_client/models/project_action_response.rb +236 -0
- data/lib/samplify_api_client/models/project_category_data.rb +191 -0
- data/lib/samplify_api_client/models/project_item_data.rb +307 -0
- data/lib/samplify_api_client/models/project_report.rb +217 -0
- data/lib/samplify_api_client/models/project_report_data.rb +414 -0
- data/lib/samplify_api_client/models/project_reports.rb +219 -0
- data/lib/samplify_api_client/models/project_response.rb +217 -0
- data/lib/samplify_api_client/models/project_response_data.rb +347 -0
- data/lib/samplify_api_client/models/project_survey_end_links.rb +217 -0
- data/lib/samplify_api_client/models/project_survey_end_links_data.rb +272 -0
- data/lib/samplify_api_client/models/projects.rb +219 -0
- data/lib/samplify_api_client/models/quota_cell.rb +206 -0
- data/lib/samplify_api_client/models/quota_cell_feasibility.rb +204 -0
- data/lib/samplify_api_client/models/quota_group_data.rb +201 -0
- data/lib/samplify_api_client/models/quota_group_feasibility.rb +185 -0
- data/lib/samplify_api_client/models/quota_plan_data.rb +198 -0
- data/lib/samplify_api_client/models/reconcile.rb +217 -0
- data/lib/samplify_api_client/models/reconcile_data.rb +174 -0
- data/lib/samplify_api_client/models/refresh_token_payload.rb +214 -0
- data/lib/samplify_api_client/models/reprice.rb +217 -0
- data/lib/samplify_api_client/models/reprice_data.rb +399 -0
- data/lib/samplify_api_client/models/reprice_payload.rb +369 -0
- data/lib/samplify_api_client/models/status.rb +206 -0
- data/lib/samplify_api_client/models/supported_language.rb +219 -0
- data/lib/samplify_api_client/models/survey_end_links.rb +216 -0
- data/lib/samplify_api_client/models/survey_test_id.rb +219 -0
- data/lib/samplify_api_client/models/survey_test_link.rb +206 -0
- data/lib/samplify_api_client/models/target.rb +258 -0
- data/lib/samplify_api_client/models/targeting_attribute.rb +216 -0
- data/lib/samplify_api_client/models/token_media.rb +235 -0
- data/lib/samplify_api_client/models/token_payload.rb +229 -0
- data/lib/samplify_api_client/models/update_line_item.rb +353 -0
- data/lib/samplify_api_client/models/update_project_data.rb +238 -0
- data/lib/samplify_api_client/models/update_project_line_item.rb +368 -0
- data/lib/samplify_api_client/models/url_param.rb +204 -0
- data/lib/samplify_api_client/models/user_info.rb +217 -0
- data/lib/samplify_api_client/models/user_info_response_data.rb +221 -0
- data/lib/samplify_api_client/version.rb +15 -0
- data/lib/samplify_api_client.rb +125 -0
- data/samplify_api_client.gemspec +45 -0
- data/spec/api/attributes_api_spec.rb +53 -0
- data/spec/api/auth_api_spec.rb +79 -0
- data/spec/api/categories_api_spec.rb +51 -0
- data/spec/api/countries_api_spec.rb +51 -0
- data/spec/api/default_api_spec.rb +55 -0
- data/spec/api/events_api_spec.rb +100 -0
- data/spec/api/feasibility_api_spec.rb +46 -0
- data/spec/api/line_items_api_spec.rb +128 -0
- data/spec/api/projects_api_spec.rb +168 -0
- data/spec/api/respondent_api_spec.rb +55 -0
- data/spec/api/users_api_spec.rb +49 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/app_error_spec.rb +53 -0
- data/spec/models/application_item_data_spec.rb +59 -0
- data/spec/models/attribute_data_spec.rb +93 -0
- data/spec/models/attribute_option_spec.rb +53 -0
- data/spec/models/attributes_spec.rb +53 -0
- data/spec/models/auth_error_spec.rb +47 -0
- data/spec/models/author_spec.rb +57 -0
- data/spec/models/buy_project_item_spec.rb +65 -0
- data/spec/models/buy_project_response_spec.rb +47 -0
- data/spec/models/buy_project_spec.rb +53 -0
- data/spec/models/buy_projects_payload_spec.rb +35 -0
- data/spec/models/categories_spec.rb +53 -0
- data/spec/models/category_data_spec.rb +47 -0
- data/spec/models/code_payload_spec.rb +59 -0
- data/spec/models/countries_spec.rb +53 -0
- data/spec/models/country_data_spec.rb +59 -0
- data/spec/models/create_line_item_spec.rb +53 -0
- data/spec/models/end_links_spec.rb +75 -0
- data/spec/models/error_type_spec.rb +47 -0
- data/spec/models/event_data_spec.rb +83 -0
- data/spec/models/event_list_data_spec.rb +83 -0
- data/spec/models/event_spec.rb +53 -0
- data/spec/models/events_spec.rb +53 -0
- data/spec/models/exclusion_data_spec.rb +47 -0
- data/spec/models/feasibility_data_spec.rb +77 -0
- data/spec/models/feasibility_response_data_spec.rb +47 -0
- data/spec/models/feasibility_spec.rb +53 -0
- data/spec/models/line_item_action_response_spec.rb +77 -0
- data/spec/models/line_item_data_spec.rb +129 -0
- data/spec/models/line_item_item_data_spec.rb +99 -0
- data/spec/models/line_item_report_data_spec.rb +147 -0
- data/spec/models/line_item_response_data_spec.rb +159 -0
- data/spec/models/line_items_spec.rb +53 -0
- data/spec/models/links_spec.rb +65 -0
- data/spec/models/logout_payload_spec.rb +53 -0
- data/spec/models/meta_spec.rb +53 -0
- data/spec/models/project_action_response_spec.rb +71 -0
- data/spec/models/project_action_spec.rb +53 -0
- data/spec/models/project_category_data_spec.rb +41 -0
- data/spec/models/project_item_data_spec.rb +81 -0
- data/spec/models/project_report_data_spec.rb +123 -0
- data/spec/models/project_report_spec.rb +53 -0
- data/spec/models/project_reports_spec.rb +53 -0
- data/spec/models/project_response_data_spec.rb +107 -0
- data/spec/models/project_response_spec.rb +53 -0
- data/spec/models/project_spec.rb +77 -0
- data/spec/models/project_survey_end_links_data_spec.rb +69 -0
- data/spec/models/project_survey_end_links_spec.rb +53 -0
- data/spec/models/projects_spec.rb +53 -0
- data/spec/models/quota_cell_feasibility_spec.rb +47 -0
- data/spec/models/quota_cell_spec.rb +53 -0
- data/spec/models/quota_group_data_spec.rb +47 -0
- data/spec/models/quota_group_feasibility_spec.rb +41 -0
- data/spec/models/quota_plan_data_spec.rb +47 -0
- data/spec/models/reconcile_data_spec.rb +35 -0
- data/spec/models/reconcile_spec.rb +53 -0
- data/spec/models/refresh_token_payload_spec.rb +53 -0
- data/spec/models/reprice_data_spec.rb +125 -0
- data/spec/models/reprice_payload_spec.rb +113 -0
- data/spec/models/reprice_spec.rb +53 -0
- data/spec/models/status_spec.rb +47 -0
- data/spec/models/supported_language_spec.rb +53 -0
- data/spec/models/survey_end_links_spec.rb +53 -0
- data/spec/models/survey_test_id_spec.rb +53 -0
- data/spec/models/survey_test_link_spec.rb +47 -0
- data/spec/models/target_spec.rb +63 -0
- data/spec/models/targeting_attribute_spec.rb +53 -0
- data/spec/models/token_media_spec.rb +59 -0
- data/spec/models/token_payload_spec.rb +59 -0
- data/spec/models/update_line_item_spec.rb +123 -0
- data/spec/models/update_project_data_spec.rb +71 -0
- data/spec/models/update_project_line_item_spec.rb +129 -0
- data/spec/models/url_param_spec.rb +47 -0
- data/spec/models/user_info_response_data_spec.rb +53 -0
- data/spec/models/user_info_spec.rb +53 -0
- data/spec/spec_helper.rb +111 -0
- metadata +585 -0
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Samplify API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
# load the gem
|
|
14
|
+
require 'samplify_api_client'
|
|
15
|
+
|
|
16
|
+
# The following was generated by the `rspec --init` command. Conventionally, all
|
|
17
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
|
18
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
|
19
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
|
20
|
+
# files.
|
|
21
|
+
#
|
|
22
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
|
23
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
|
24
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
|
25
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
|
26
|
+
# a separate helper file that requires the additional dependencies and performs
|
|
27
|
+
# the additional setup, and require it from the spec files that actually need
|
|
28
|
+
# it.
|
|
29
|
+
#
|
|
30
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
|
31
|
+
# users commonly want.
|
|
32
|
+
#
|
|
33
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
|
34
|
+
RSpec.configure do |config|
|
|
35
|
+
# rspec-expectations config goes here. You can use an alternate
|
|
36
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
|
37
|
+
# assertions if you prefer.
|
|
38
|
+
config.expect_with :rspec do |expectations|
|
|
39
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
|
40
|
+
# and `failure_message` of custom matchers include text for helper methods
|
|
41
|
+
# defined using `chain`, e.g.:
|
|
42
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
|
43
|
+
# # => "be bigger than 2 and smaller than 4"
|
|
44
|
+
# ...rather than:
|
|
45
|
+
# # => "be bigger than 2"
|
|
46
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
|
50
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
|
51
|
+
config.mock_with :rspec do |mocks|
|
|
52
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
|
53
|
+
# a real object. This is generally recommended, and will default to
|
|
54
|
+
# `true` in RSpec 4.
|
|
55
|
+
mocks.verify_partial_doubles = true
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# The settings below are suggested to provide a good initial experience
|
|
59
|
+
# with RSpec, but feel free to customize to your heart's content.
|
|
60
|
+
=begin
|
|
61
|
+
# These two settings work together to allow you to limit a spec run
|
|
62
|
+
# to individual examples or groups you care about by tagging them with
|
|
63
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
|
64
|
+
# get run.
|
|
65
|
+
config.filter_run :focus
|
|
66
|
+
config.run_all_when_everything_filtered = true
|
|
67
|
+
|
|
68
|
+
# Allows RSpec to persist some state between runs in order to support
|
|
69
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
|
70
|
+
# you configure your source control system to ignore this file.
|
|
71
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
|
72
|
+
|
|
73
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
|
74
|
+
# recommended. For more details, see:
|
|
75
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
|
76
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
|
77
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
|
78
|
+
config.disable_monkey_patching!
|
|
79
|
+
|
|
80
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
|
81
|
+
# be too noisy due to issues in dependencies.
|
|
82
|
+
config.warnings = true
|
|
83
|
+
|
|
84
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
|
85
|
+
# file, and it's useful to allow more verbose output when running an
|
|
86
|
+
# individual spec file.
|
|
87
|
+
if config.files_to_run.one?
|
|
88
|
+
# Use the documentation formatter for detailed output,
|
|
89
|
+
# unless a formatter has already been configured
|
|
90
|
+
# (e.g. via a command-line flag).
|
|
91
|
+
config.default_formatter = 'doc'
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
# Print the 10 slowest examples and example groups at the
|
|
95
|
+
# end of the spec run, to help surface which specs are running
|
|
96
|
+
# particularly slow.
|
|
97
|
+
config.profile_examples = 10
|
|
98
|
+
|
|
99
|
+
# Run specs in random order to surface order dependencies. If you find an
|
|
100
|
+
# order dependency and want to debug it, you can fix the order by providing
|
|
101
|
+
# the seed, which is printed after each run.
|
|
102
|
+
# --seed 1234
|
|
103
|
+
config.order = :random
|
|
104
|
+
|
|
105
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
|
106
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
|
107
|
+
# test failures related to randomization by passing the same `--seed` value
|
|
108
|
+
# as the one that triggered the failure.
|
|
109
|
+
Kernel.srand config.seed
|
|
110
|
+
=end
|
|
111
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,585 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: samplify_api_client
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Saadullah Saeed
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2019-03-02 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: typhoeus
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.0'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 1.0.1
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - "~>"
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.0'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 1.0.1
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: json
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: 2.1.0
|
|
40
|
+
- - "~>"
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '2.1'
|
|
43
|
+
type: :runtime
|
|
44
|
+
prerelease: false
|
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - ">="
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: 2.1.0
|
|
50
|
+
- - "~>"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '2.1'
|
|
53
|
+
- !ruby/object:Gem::Dependency
|
|
54
|
+
name: rspec
|
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: 3.6.0
|
|
60
|
+
- - "~>"
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: '3.6'
|
|
63
|
+
type: :development
|
|
64
|
+
prerelease: false
|
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: 3.6.0
|
|
70
|
+
- - "~>"
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: '3.6'
|
|
73
|
+
- !ruby/object:Gem::Dependency
|
|
74
|
+
name: vcr
|
|
75
|
+
requirement: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - "~>"
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: '3.0'
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: 3.0.1
|
|
83
|
+
type: :development
|
|
84
|
+
prerelease: false
|
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '3.0'
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: 3.0.1
|
|
93
|
+
- !ruby/object:Gem::Dependency
|
|
94
|
+
name: webmock
|
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
|
96
|
+
requirements:
|
|
97
|
+
- - "~>"
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: '1.24'
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: 1.24.3
|
|
103
|
+
type: :development
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - "~>"
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '1.24'
|
|
110
|
+
- - ">="
|
|
111
|
+
- !ruby/object:Gem::Version
|
|
112
|
+
version: 1.24.3
|
|
113
|
+
- !ruby/object:Gem::Dependency
|
|
114
|
+
name: autotest
|
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
|
116
|
+
requirements:
|
|
117
|
+
- - "~>"
|
|
118
|
+
- !ruby/object:Gem::Version
|
|
119
|
+
version: '4.4'
|
|
120
|
+
- - ">="
|
|
121
|
+
- !ruby/object:Gem::Version
|
|
122
|
+
version: 4.4.6
|
|
123
|
+
type: :development
|
|
124
|
+
prerelease: false
|
|
125
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
126
|
+
requirements:
|
|
127
|
+
- - "~>"
|
|
128
|
+
- !ruby/object:Gem::Version
|
|
129
|
+
version: '4.4'
|
|
130
|
+
- - ">="
|
|
131
|
+
- !ruby/object:Gem::Version
|
|
132
|
+
version: 4.4.6
|
|
133
|
+
- !ruby/object:Gem::Dependency
|
|
134
|
+
name: autotest-rails-pure
|
|
135
|
+
requirement: !ruby/object:Gem::Requirement
|
|
136
|
+
requirements:
|
|
137
|
+
- - "~>"
|
|
138
|
+
- !ruby/object:Gem::Version
|
|
139
|
+
version: '4.1'
|
|
140
|
+
- - ">="
|
|
141
|
+
- !ruby/object:Gem::Version
|
|
142
|
+
version: 4.1.2
|
|
143
|
+
type: :development
|
|
144
|
+
prerelease: false
|
|
145
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
146
|
+
requirements:
|
|
147
|
+
- - "~>"
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: '4.1'
|
|
150
|
+
- - ">="
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: 4.1.2
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: autotest-growl
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - "~>"
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '0.2'
|
|
160
|
+
- - ">="
|
|
161
|
+
- !ruby/object:Gem::Version
|
|
162
|
+
version: 0.2.16
|
|
163
|
+
type: :development
|
|
164
|
+
prerelease: false
|
|
165
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
166
|
+
requirements:
|
|
167
|
+
- - "~>"
|
|
168
|
+
- !ruby/object:Gem::Version
|
|
169
|
+
version: '0.2'
|
|
170
|
+
- - ">="
|
|
171
|
+
- !ruby/object:Gem::Version
|
|
172
|
+
version: 0.2.16
|
|
173
|
+
- !ruby/object:Gem::Dependency
|
|
174
|
+
name: autotest-fsevent
|
|
175
|
+
requirement: !ruby/object:Gem::Requirement
|
|
176
|
+
requirements:
|
|
177
|
+
- - "~>"
|
|
178
|
+
- !ruby/object:Gem::Version
|
|
179
|
+
version: '0.2'
|
|
180
|
+
- - ">="
|
|
181
|
+
- !ruby/object:Gem::Version
|
|
182
|
+
version: 0.2.12
|
|
183
|
+
type: :development
|
|
184
|
+
prerelease: false
|
|
185
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
186
|
+
requirements:
|
|
187
|
+
- - "~>"
|
|
188
|
+
- !ruby/object:Gem::Version
|
|
189
|
+
version: '0.2'
|
|
190
|
+
- - ">="
|
|
191
|
+
- !ruby/object:Gem::Version
|
|
192
|
+
version: 0.2.12
|
|
193
|
+
description: This is an API Client for the Dynata Samplify API
|
|
194
|
+
email:
|
|
195
|
+
- ssaeed@researchnow.com
|
|
196
|
+
executables: []
|
|
197
|
+
extensions: []
|
|
198
|
+
extra_rdoc_files: []
|
|
199
|
+
files:
|
|
200
|
+
- Gemfile
|
|
201
|
+
- Gemfile.lock
|
|
202
|
+
- README.md
|
|
203
|
+
- Rakefile
|
|
204
|
+
- docs/AppError.md
|
|
205
|
+
- docs/ApplicationItemData.md
|
|
206
|
+
- docs/AttributeData.md
|
|
207
|
+
- docs/AttributeOption.md
|
|
208
|
+
- docs/Attributes.md
|
|
209
|
+
- docs/AttributesApi.md
|
|
210
|
+
- docs/AuthApi.md
|
|
211
|
+
- docs/AuthError.md
|
|
212
|
+
- docs/Author.md
|
|
213
|
+
- docs/BuyProject.md
|
|
214
|
+
- docs/BuyProjectItem.md
|
|
215
|
+
- docs/BuyProjectResponse.md
|
|
216
|
+
- docs/BuyProjectsPayload.md
|
|
217
|
+
- docs/Categories.md
|
|
218
|
+
- docs/CategoriesApi.md
|
|
219
|
+
- docs/CategoryData.md
|
|
220
|
+
- docs/CodePayload.md
|
|
221
|
+
- docs/Countries.md
|
|
222
|
+
- docs/CountriesApi.md
|
|
223
|
+
- docs/CountryData.md
|
|
224
|
+
- docs/CreateLineItem.md
|
|
225
|
+
- docs/DefaultApi.md
|
|
226
|
+
- docs/EndLinks.md
|
|
227
|
+
- docs/ErrorType.md
|
|
228
|
+
- docs/Event.md
|
|
229
|
+
- docs/EventData.md
|
|
230
|
+
- docs/EventListData.md
|
|
231
|
+
- docs/Events.md
|
|
232
|
+
- docs/EventsApi.md
|
|
233
|
+
- docs/ExclusionData.md
|
|
234
|
+
- docs/Feasibility.md
|
|
235
|
+
- docs/FeasibilityApi.md
|
|
236
|
+
- docs/FeasibilityData.md
|
|
237
|
+
- docs/FeasibilityResponseData.md
|
|
238
|
+
- docs/LineItemActionResponse.md
|
|
239
|
+
- docs/LineItemData.md
|
|
240
|
+
- docs/LineItemItemData.md
|
|
241
|
+
- docs/LineItemReportData.md
|
|
242
|
+
- docs/LineItemResponseData.md
|
|
243
|
+
- docs/LineItems.md
|
|
244
|
+
- docs/LineItemsApi.md
|
|
245
|
+
- docs/Links.md
|
|
246
|
+
- docs/LogoutPayload.md
|
|
247
|
+
- docs/Meta.md
|
|
248
|
+
- docs/Project.md
|
|
249
|
+
- docs/ProjectAction.md
|
|
250
|
+
- docs/ProjectActionResponse.md
|
|
251
|
+
- docs/ProjectCategoryData.md
|
|
252
|
+
- docs/ProjectItemData.md
|
|
253
|
+
- docs/ProjectReport.md
|
|
254
|
+
- docs/ProjectReportData.md
|
|
255
|
+
- docs/ProjectReports.md
|
|
256
|
+
- docs/ProjectResponse.md
|
|
257
|
+
- docs/ProjectResponseData.md
|
|
258
|
+
- docs/ProjectSurveyEndLinks.md
|
|
259
|
+
- docs/ProjectSurveyEndLinksData.md
|
|
260
|
+
- docs/Projects.md
|
|
261
|
+
- docs/ProjectsApi.md
|
|
262
|
+
- docs/QuotaCell.md
|
|
263
|
+
- docs/QuotaCellFeasibility.md
|
|
264
|
+
- docs/QuotaGroupData.md
|
|
265
|
+
- docs/QuotaGroupFeasibility.md
|
|
266
|
+
- docs/QuotaPlanData.md
|
|
267
|
+
- docs/Reconcile.md
|
|
268
|
+
- docs/ReconcileData.md
|
|
269
|
+
- docs/RefreshTokenPayload.md
|
|
270
|
+
- docs/Reprice.md
|
|
271
|
+
- docs/RepriceData.md
|
|
272
|
+
- docs/RepricePayload.md
|
|
273
|
+
- docs/RespondentApi.md
|
|
274
|
+
- docs/Status.md
|
|
275
|
+
- docs/SupportedLanguage.md
|
|
276
|
+
- docs/SurveyEndLinks.md
|
|
277
|
+
- docs/SurveyTestId.md
|
|
278
|
+
- docs/SurveyTestLink.md
|
|
279
|
+
- docs/Target.md
|
|
280
|
+
- docs/TargetingAttribute.md
|
|
281
|
+
- docs/TokenMedia.md
|
|
282
|
+
- docs/TokenPayload.md
|
|
283
|
+
- docs/URLParam.md
|
|
284
|
+
- docs/UpdateLineItem.md
|
|
285
|
+
- docs/UpdateProjectData.md
|
|
286
|
+
- docs/UpdateProjectLineItem.md
|
|
287
|
+
- docs/UserInfo.md
|
|
288
|
+
- docs/UserInfoResponseData.md
|
|
289
|
+
- docs/UsersApi.md
|
|
290
|
+
- examples/auth.rb
|
|
291
|
+
- git_push.sh
|
|
292
|
+
- lib/samplify_api_client.rb
|
|
293
|
+
- lib/samplify_api_client/api/attributes_api.rb
|
|
294
|
+
- lib/samplify_api_client/api/auth_api.rb
|
|
295
|
+
- lib/samplify_api_client/api/categories_api.rb
|
|
296
|
+
- lib/samplify_api_client/api/countries_api.rb
|
|
297
|
+
- lib/samplify_api_client/api/default_api.rb
|
|
298
|
+
- lib/samplify_api_client/api/events_api.rb
|
|
299
|
+
- lib/samplify_api_client/api/feasibility_api.rb
|
|
300
|
+
- lib/samplify_api_client/api/line_items_api.rb
|
|
301
|
+
- lib/samplify_api_client/api/projects_api.rb
|
|
302
|
+
- lib/samplify_api_client/api/respondent_api.rb
|
|
303
|
+
- lib/samplify_api_client/api/users_api.rb
|
|
304
|
+
- lib/samplify_api_client/api_client.rb
|
|
305
|
+
- lib/samplify_api_client/api_error.rb
|
|
306
|
+
- lib/samplify_api_client/configuration.rb
|
|
307
|
+
- lib/samplify_api_client/models/app_error.rb
|
|
308
|
+
- lib/samplify_api_client/models/application_item_data.rb
|
|
309
|
+
- lib/samplify_api_client/models/attribute_data.rb
|
|
310
|
+
- lib/samplify_api_client/models/attribute_option.rb
|
|
311
|
+
- lib/samplify_api_client/models/attributes.rb
|
|
312
|
+
- lib/samplify_api_client/models/auth_error.rb
|
|
313
|
+
- lib/samplify_api_client/models/author.rb
|
|
314
|
+
- lib/samplify_api_client/models/buy_project.rb
|
|
315
|
+
- lib/samplify_api_client/models/buy_project_item.rb
|
|
316
|
+
- lib/samplify_api_client/models/buy_project_response.rb
|
|
317
|
+
- lib/samplify_api_client/models/buy_projects_payload.rb
|
|
318
|
+
- lib/samplify_api_client/models/categories.rb
|
|
319
|
+
- lib/samplify_api_client/models/category_data.rb
|
|
320
|
+
- lib/samplify_api_client/models/code_payload.rb
|
|
321
|
+
- lib/samplify_api_client/models/countries.rb
|
|
322
|
+
- lib/samplify_api_client/models/country_data.rb
|
|
323
|
+
- lib/samplify_api_client/models/create_line_item.rb
|
|
324
|
+
- lib/samplify_api_client/models/end_links.rb
|
|
325
|
+
- lib/samplify_api_client/models/error_type.rb
|
|
326
|
+
- lib/samplify_api_client/models/event.rb
|
|
327
|
+
- lib/samplify_api_client/models/event_data.rb
|
|
328
|
+
- lib/samplify_api_client/models/event_list_data.rb
|
|
329
|
+
- lib/samplify_api_client/models/events.rb
|
|
330
|
+
- lib/samplify_api_client/models/exclusion_data.rb
|
|
331
|
+
- lib/samplify_api_client/models/feasibility.rb
|
|
332
|
+
- lib/samplify_api_client/models/feasibility_data.rb
|
|
333
|
+
- lib/samplify_api_client/models/feasibility_response_data.rb
|
|
334
|
+
- lib/samplify_api_client/models/line_item_action_response.rb
|
|
335
|
+
- lib/samplify_api_client/models/line_item_data.rb
|
|
336
|
+
- lib/samplify_api_client/models/line_item_item_data.rb
|
|
337
|
+
- lib/samplify_api_client/models/line_item_report_data.rb
|
|
338
|
+
- lib/samplify_api_client/models/line_item_response_data.rb
|
|
339
|
+
- lib/samplify_api_client/models/line_items.rb
|
|
340
|
+
- lib/samplify_api_client/models/links.rb
|
|
341
|
+
- lib/samplify_api_client/models/logout_payload.rb
|
|
342
|
+
- lib/samplify_api_client/models/meta.rb
|
|
343
|
+
- lib/samplify_api_client/models/project.rb
|
|
344
|
+
- lib/samplify_api_client/models/project_action.rb
|
|
345
|
+
- lib/samplify_api_client/models/project_action_response.rb
|
|
346
|
+
- lib/samplify_api_client/models/project_category_data.rb
|
|
347
|
+
- lib/samplify_api_client/models/project_item_data.rb
|
|
348
|
+
- lib/samplify_api_client/models/project_report.rb
|
|
349
|
+
- lib/samplify_api_client/models/project_report_data.rb
|
|
350
|
+
- lib/samplify_api_client/models/project_reports.rb
|
|
351
|
+
- lib/samplify_api_client/models/project_response.rb
|
|
352
|
+
- lib/samplify_api_client/models/project_response_data.rb
|
|
353
|
+
- lib/samplify_api_client/models/project_survey_end_links.rb
|
|
354
|
+
- lib/samplify_api_client/models/project_survey_end_links_data.rb
|
|
355
|
+
- lib/samplify_api_client/models/projects.rb
|
|
356
|
+
- lib/samplify_api_client/models/quota_cell.rb
|
|
357
|
+
- lib/samplify_api_client/models/quota_cell_feasibility.rb
|
|
358
|
+
- lib/samplify_api_client/models/quota_group_data.rb
|
|
359
|
+
- lib/samplify_api_client/models/quota_group_feasibility.rb
|
|
360
|
+
- lib/samplify_api_client/models/quota_plan_data.rb
|
|
361
|
+
- lib/samplify_api_client/models/reconcile.rb
|
|
362
|
+
- lib/samplify_api_client/models/reconcile_data.rb
|
|
363
|
+
- lib/samplify_api_client/models/refresh_token_payload.rb
|
|
364
|
+
- lib/samplify_api_client/models/reprice.rb
|
|
365
|
+
- lib/samplify_api_client/models/reprice_data.rb
|
|
366
|
+
- lib/samplify_api_client/models/reprice_payload.rb
|
|
367
|
+
- lib/samplify_api_client/models/status.rb
|
|
368
|
+
- lib/samplify_api_client/models/supported_language.rb
|
|
369
|
+
- lib/samplify_api_client/models/survey_end_links.rb
|
|
370
|
+
- lib/samplify_api_client/models/survey_test_id.rb
|
|
371
|
+
- lib/samplify_api_client/models/survey_test_link.rb
|
|
372
|
+
- lib/samplify_api_client/models/target.rb
|
|
373
|
+
- lib/samplify_api_client/models/targeting_attribute.rb
|
|
374
|
+
- lib/samplify_api_client/models/token_media.rb
|
|
375
|
+
- lib/samplify_api_client/models/token_payload.rb
|
|
376
|
+
- lib/samplify_api_client/models/update_line_item.rb
|
|
377
|
+
- lib/samplify_api_client/models/update_project_data.rb
|
|
378
|
+
- lib/samplify_api_client/models/update_project_line_item.rb
|
|
379
|
+
- lib/samplify_api_client/models/url_param.rb
|
|
380
|
+
- lib/samplify_api_client/models/user_info.rb
|
|
381
|
+
- lib/samplify_api_client/models/user_info_response_data.rb
|
|
382
|
+
- lib/samplify_api_client/version.rb
|
|
383
|
+
- samplify_api_client.gemspec
|
|
384
|
+
- spec/api/attributes_api_spec.rb
|
|
385
|
+
- spec/api/auth_api_spec.rb
|
|
386
|
+
- spec/api/categories_api_spec.rb
|
|
387
|
+
- spec/api/countries_api_spec.rb
|
|
388
|
+
- spec/api/default_api_spec.rb
|
|
389
|
+
- spec/api/events_api_spec.rb
|
|
390
|
+
- spec/api/feasibility_api_spec.rb
|
|
391
|
+
- spec/api/line_items_api_spec.rb
|
|
392
|
+
- spec/api/projects_api_spec.rb
|
|
393
|
+
- spec/api/respondent_api_spec.rb
|
|
394
|
+
- spec/api/users_api_spec.rb
|
|
395
|
+
- spec/api_client_spec.rb
|
|
396
|
+
- spec/configuration_spec.rb
|
|
397
|
+
- spec/models/app_error_spec.rb
|
|
398
|
+
- spec/models/application_item_data_spec.rb
|
|
399
|
+
- spec/models/attribute_data_spec.rb
|
|
400
|
+
- spec/models/attribute_option_spec.rb
|
|
401
|
+
- spec/models/attributes_spec.rb
|
|
402
|
+
- spec/models/auth_error_spec.rb
|
|
403
|
+
- spec/models/author_spec.rb
|
|
404
|
+
- spec/models/buy_project_item_spec.rb
|
|
405
|
+
- spec/models/buy_project_response_spec.rb
|
|
406
|
+
- spec/models/buy_project_spec.rb
|
|
407
|
+
- spec/models/buy_projects_payload_spec.rb
|
|
408
|
+
- spec/models/categories_spec.rb
|
|
409
|
+
- spec/models/category_data_spec.rb
|
|
410
|
+
- spec/models/code_payload_spec.rb
|
|
411
|
+
- spec/models/countries_spec.rb
|
|
412
|
+
- spec/models/country_data_spec.rb
|
|
413
|
+
- spec/models/create_line_item_spec.rb
|
|
414
|
+
- spec/models/end_links_spec.rb
|
|
415
|
+
- spec/models/error_type_spec.rb
|
|
416
|
+
- spec/models/event_data_spec.rb
|
|
417
|
+
- spec/models/event_list_data_spec.rb
|
|
418
|
+
- spec/models/event_spec.rb
|
|
419
|
+
- spec/models/events_spec.rb
|
|
420
|
+
- spec/models/exclusion_data_spec.rb
|
|
421
|
+
- spec/models/feasibility_data_spec.rb
|
|
422
|
+
- spec/models/feasibility_response_data_spec.rb
|
|
423
|
+
- spec/models/feasibility_spec.rb
|
|
424
|
+
- spec/models/line_item_action_response_spec.rb
|
|
425
|
+
- spec/models/line_item_data_spec.rb
|
|
426
|
+
- spec/models/line_item_item_data_spec.rb
|
|
427
|
+
- spec/models/line_item_report_data_spec.rb
|
|
428
|
+
- spec/models/line_item_response_data_spec.rb
|
|
429
|
+
- spec/models/line_items_spec.rb
|
|
430
|
+
- spec/models/links_spec.rb
|
|
431
|
+
- spec/models/logout_payload_spec.rb
|
|
432
|
+
- spec/models/meta_spec.rb
|
|
433
|
+
- spec/models/project_action_response_spec.rb
|
|
434
|
+
- spec/models/project_action_spec.rb
|
|
435
|
+
- spec/models/project_category_data_spec.rb
|
|
436
|
+
- spec/models/project_item_data_spec.rb
|
|
437
|
+
- spec/models/project_report_data_spec.rb
|
|
438
|
+
- spec/models/project_report_spec.rb
|
|
439
|
+
- spec/models/project_reports_spec.rb
|
|
440
|
+
- spec/models/project_response_data_spec.rb
|
|
441
|
+
- spec/models/project_response_spec.rb
|
|
442
|
+
- spec/models/project_spec.rb
|
|
443
|
+
- spec/models/project_survey_end_links_data_spec.rb
|
|
444
|
+
- spec/models/project_survey_end_links_spec.rb
|
|
445
|
+
- spec/models/projects_spec.rb
|
|
446
|
+
- spec/models/quota_cell_feasibility_spec.rb
|
|
447
|
+
- spec/models/quota_cell_spec.rb
|
|
448
|
+
- spec/models/quota_group_data_spec.rb
|
|
449
|
+
- spec/models/quota_group_feasibility_spec.rb
|
|
450
|
+
- spec/models/quota_plan_data_spec.rb
|
|
451
|
+
- spec/models/reconcile_data_spec.rb
|
|
452
|
+
- spec/models/reconcile_spec.rb
|
|
453
|
+
- spec/models/refresh_token_payload_spec.rb
|
|
454
|
+
- spec/models/reprice_data_spec.rb
|
|
455
|
+
- spec/models/reprice_payload_spec.rb
|
|
456
|
+
- spec/models/reprice_spec.rb
|
|
457
|
+
- spec/models/status_spec.rb
|
|
458
|
+
- spec/models/supported_language_spec.rb
|
|
459
|
+
- spec/models/survey_end_links_spec.rb
|
|
460
|
+
- spec/models/survey_test_id_spec.rb
|
|
461
|
+
- spec/models/survey_test_link_spec.rb
|
|
462
|
+
- spec/models/target_spec.rb
|
|
463
|
+
- spec/models/targeting_attribute_spec.rb
|
|
464
|
+
- spec/models/token_media_spec.rb
|
|
465
|
+
- spec/models/token_payload_spec.rb
|
|
466
|
+
- spec/models/update_line_item_spec.rb
|
|
467
|
+
- spec/models/update_project_data_spec.rb
|
|
468
|
+
- spec/models/update_project_line_item_spec.rb
|
|
469
|
+
- spec/models/url_param_spec.rb
|
|
470
|
+
- spec/models/user_info_response_data_spec.rb
|
|
471
|
+
- spec/models/user_info_spec.rb
|
|
472
|
+
- spec/spec_helper.rb
|
|
473
|
+
homepage: http://developers.dynata.com/samplifyapi-docs/
|
|
474
|
+
licenses:
|
|
475
|
+
- Unlicense
|
|
476
|
+
metadata: {}
|
|
477
|
+
post_install_message:
|
|
478
|
+
rdoc_options: []
|
|
479
|
+
require_paths:
|
|
480
|
+
- lib
|
|
481
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
482
|
+
requirements:
|
|
483
|
+
- - ">="
|
|
484
|
+
- !ruby/object:Gem::Version
|
|
485
|
+
version: '1.9'
|
|
486
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
487
|
+
requirements:
|
|
488
|
+
- - ">="
|
|
489
|
+
- !ruby/object:Gem::Version
|
|
490
|
+
version: '0'
|
|
491
|
+
requirements: []
|
|
492
|
+
rubygems_version: 3.0.1
|
|
493
|
+
signing_key:
|
|
494
|
+
specification_version: 4
|
|
495
|
+
summary: Samplify API Ruby Gem
|
|
496
|
+
test_files:
|
|
497
|
+
- spec/api/feasibility_api_spec.rb
|
|
498
|
+
- spec/api/default_api_spec.rb
|
|
499
|
+
- spec/api/auth_api_spec.rb
|
|
500
|
+
- spec/api/projects_api_spec.rb
|
|
501
|
+
- spec/api/attributes_api_spec.rb
|
|
502
|
+
- spec/api/categories_api_spec.rb
|
|
503
|
+
- spec/api/users_api_spec.rb
|
|
504
|
+
- spec/api/respondent_api_spec.rb
|
|
505
|
+
- spec/api/events_api_spec.rb
|
|
506
|
+
- spec/api/countries_api_spec.rb
|
|
507
|
+
- spec/api/line_items_api_spec.rb
|
|
508
|
+
- spec/api_client_spec.rb
|
|
509
|
+
- spec/configuration_spec.rb
|
|
510
|
+
- spec/models/exclusion_data_spec.rb
|
|
511
|
+
- spec/models/feasibility_spec.rb
|
|
512
|
+
- spec/models/reprice_payload_spec.rb
|
|
513
|
+
- spec/models/project_response_data_spec.rb
|
|
514
|
+
- spec/models/update_project_line_item_spec.rb
|
|
515
|
+
- spec/models/reconcile_spec.rb
|
|
516
|
+
- spec/models/line_item_response_data_spec.rb
|
|
517
|
+
- spec/models/create_line_item_spec.rb
|
|
518
|
+
- spec/models/auth_error_spec.rb
|
|
519
|
+
- spec/models/quota_cell_feasibility_spec.rb
|
|
520
|
+
- spec/models/project_spec.rb
|
|
521
|
+
- spec/models/refresh_token_payload_spec.rb
|
|
522
|
+
- spec/models/project_report_spec.rb
|
|
523
|
+
- spec/models/project_report_data_spec.rb
|
|
524
|
+
- spec/models/reprice_spec.rb
|
|
525
|
+
- spec/models/attributes_spec.rb
|
|
526
|
+
- spec/models/url_param_spec.rb
|
|
527
|
+
- spec/models/token_payload_spec.rb
|
|
528
|
+
- spec/models/line_item_item_data_spec.rb
|
|
529
|
+
- spec/models/survey_end_links_spec.rb
|
|
530
|
+
- spec/models/countries_spec.rb
|
|
531
|
+
- spec/models/survey_test_id_spec.rb
|
|
532
|
+
- spec/models/buy_project_spec.rb
|
|
533
|
+
- spec/models/project_reports_spec.rb
|
|
534
|
+
- spec/models/survey_test_link_spec.rb
|
|
535
|
+
- spec/models/links_spec.rb
|
|
536
|
+
- spec/models/line_item_report_data_spec.rb
|
|
537
|
+
- spec/models/country_data_spec.rb
|
|
538
|
+
- spec/models/targeting_attribute_spec.rb
|
|
539
|
+
- spec/models/reconcile_data_spec.rb
|
|
540
|
+
- spec/models/project_item_data_spec.rb
|
|
541
|
+
- spec/models/end_links_spec.rb
|
|
542
|
+
- spec/models/user_info_response_data_spec.rb
|
|
543
|
+
- spec/models/line_item_action_response_spec.rb
|
|
544
|
+
- spec/models/project_category_data_spec.rb
|
|
545
|
+
- spec/models/application_item_data_spec.rb
|
|
546
|
+
- spec/models/feasibility_data_spec.rb
|
|
547
|
+
- spec/models/quota_group_feasibility_spec.rb
|
|
548
|
+
- spec/models/status_spec.rb
|
|
549
|
+
- spec/models/user_info_spec.rb
|
|
550
|
+
- spec/models/code_payload_spec.rb
|
|
551
|
+
- spec/models/reprice_data_spec.rb
|
|
552
|
+
- spec/models/meta_spec.rb
|
|
553
|
+
- spec/models/buy_projects_payload_spec.rb
|
|
554
|
+
- spec/models/target_spec.rb
|
|
555
|
+
- spec/models/update_line_item_spec.rb
|
|
556
|
+
- spec/models/quota_group_data_spec.rb
|
|
557
|
+
- spec/models/categories_spec.rb
|
|
558
|
+
- spec/models/update_project_data_spec.rb
|
|
559
|
+
- spec/models/project_action_spec.rb
|
|
560
|
+
- spec/models/projects_spec.rb
|
|
561
|
+
- spec/models/project_survey_end_links_spec.rb
|
|
562
|
+
- spec/models/attribute_data_spec.rb
|
|
563
|
+
- spec/models/quota_cell_spec.rb
|
|
564
|
+
- spec/models/line_items_spec.rb
|
|
565
|
+
- spec/models/feasibility_response_data_spec.rb
|
|
566
|
+
- spec/models/project_action_response_spec.rb
|
|
567
|
+
- spec/models/buy_project_item_spec.rb
|
|
568
|
+
- spec/models/event_spec.rb
|
|
569
|
+
- spec/models/event_list_data_spec.rb
|
|
570
|
+
- spec/models/logout_payload_spec.rb
|
|
571
|
+
- spec/models/error_type_spec.rb
|
|
572
|
+
- spec/models/project_response_spec.rb
|
|
573
|
+
- spec/models/category_data_spec.rb
|
|
574
|
+
- spec/models/attribute_option_spec.rb
|
|
575
|
+
- spec/models/buy_project_response_spec.rb
|
|
576
|
+
- spec/models/event_data_spec.rb
|
|
577
|
+
- spec/models/line_item_data_spec.rb
|
|
578
|
+
- spec/models/app_error_spec.rb
|
|
579
|
+
- spec/models/author_spec.rb
|
|
580
|
+
- spec/models/project_survey_end_links_data_spec.rb
|
|
581
|
+
- spec/models/supported_language_spec.rb
|
|
582
|
+
- spec/models/token_media_spec.rb
|
|
583
|
+
- spec/models/events_spec.rb
|
|
584
|
+
- spec/models/quota_plan_data_spec.rb
|
|
585
|
+
- spec/spec_helper.rb
|