--- !ruby/object:Gem::Specification name: redbooth-ruby version: !ruby/object:Gem::Version version: 0.1.4 platform: ruby authors: - Andres Bravo - Carlos Saura - Bruno Pedro - Oscar Ferrer autorequire: bindir: bin cert_chain: [] date: 2015-07-21 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: json requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 1.8.1 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 1.8.1 - !ruby/object:Gem::Dependency name: oauth2 requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 0.9.3 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 0.9.3 - !ruby/object:Gem::Dependency name: multipart-post requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 1.1.0 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 1.1.0 - !ruby/object:Gem::Dependency name: rspec requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' - !ruby/object:Gem::Dependency name: pry requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' - !ruby/object:Gem::Dependency name: vcr requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' - !ruby/object:Gem::Dependency name: fakeweb requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' - !ruby/object:Gem::Dependency name: rack-test requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' description: API wrapper for Redbooth. email: - support@redbooth.com executables: [] extensions: [] extra_rdoc_files: [] files: - ".gitignore" - ".rspec" - ".travis.yml" - Gemfile - LICENSE - README.md - Rakefile - lib/redbooth-ruby.rb - lib/redbooth-ruby/base.rb - lib/redbooth-ruby/client.rb - lib/redbooth-ruby/client_operations/metadata.rb - lib/redbooth-ruby/client_operations/perform.rb - lib/redbooth-ruby/client_operations/search.rb - lib/redbooth-ruby/comment.rb - lib/redbooth-ruby/conversation.rb - lib/redbooth-ruby/file.rb - lib/redbooth-ruby/helpers.rb - lib/redbooth-ruby/me.rb - lib/redbooth-ruby/membership.rb - lib/redbooth-ruby/note.rb - lib/redbooth-ruby/operations/base.rb - lib/redbooth-ruby/operations/create.rb - lib/redbooth-ruby/operations/delete.rb - lib/redbooth-ruby/operations/index.rb - lib/redbooth-ruby/operations/meta.rb - lib/redbooth-ruby/operations/show.rb - lib/redbooth-ruby/operations/update.rb - lib/redbooth-ruby/organization.rb - lib/redbooth-ruby/person.rb - lib/redbooth-ruby/project.rb - lib/redbooth-ruby/request/base.rb - lib/redbooth-ruby/request/collection.rb - lib/redbooth-ruby/request/connection.rb - lib/redbooth-ruby/request/helpers.rb - lib/redbooth-ruby/request/info.rb - lib/redbooth-ruby/request/response.rb - lib/redbooth-ruby/request/validator.rb - lib/redbooth-ruby/session.rb - lib/redbooth-ruby/subtask.rb - lib/redbooth-ruby/task.rb - lib/redbooth-ruby/task_list.rb - lib/redbooth-ruby/user.rb - lib/redbooth-ruby/version.rb - redbooth-ruby.gemspec - spec/cassettes/RedboothRuby_ClientOperations_Metadata/_metadata/.yml - spec/cassettes/RedboothRuby_ClientOperations_Metadata/_metadata/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_notes_collection.yml - spec/cassettes/RedboothRuby_ClientOperations_Search/_index/.yml - spec/cassettes/RedboothRuby_ClientOperations_Search/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_notes_collection.yml - spec/cassettes/RedboothRuby_Comment/_create/.yml - spec/cassettes/RedboothRuby_Comment/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_comment.yml - spec/cassettes/RedboothRuby_Comment/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_comment.yml - spec/cassettes/RedboothRuby_Comment/_index/.yml - spec/cassettes/RedboothRuby_Comment/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_comments_collection.yml - spec/cassettes/RedboothRuby_Comment/_initialize/.yml - spec/cassettes/RedboothRuby_Comment/_show/.yml - spec/cassettes/RedboothRuby_Comment/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_comment.yml - spec/cassettes/RedboothRuby_Comment/_update/.yml - spec/cassettes/RedboothRuby_Comment/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_comment.yml - spec/cassettes/RedboothRuby_Conversation/_create/.yml - spec/cassettes/RedboothRuby_Conversation/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_conversation.yml - spec/cassettes/RedboothRuby_Conversation/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_conversation.yml - spec/cassettes/RedboothRuby_Conversation/_index/.yml - spec/cassettes/RedboothRuby_Conversation/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_conversations_collection.yml - spec/cassettes/RedboothRuby_Conversation/_initialize/.yml - spec/cassettes/RedboothRuby_Conversation/_show/.yml - spec/cassettes/RedboothRuby_Conversation/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_conversation.yml - spec/cassettes/RedboothRuby_Conversation/_update/.yml - spec/cassettes/RedboothRuby_Conversation/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_conversation.yml - spec/cassettes/RedboothRuby_File/_create/.yml - spec/cassettes/RedboothRuby_File/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_file.yml - spec/cassettes/RedboothRuby_File/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_comment.yml - spec/cassettes/RedboothRuby_File/_download/downloads_a_file.yml - spec/cassettes/RedboothRuby_File/_download_to_path/downloads_a_file_to_a_path.yml - spec/cassettes/RedboothRuby_File/_index/.yml - spec/cassettes/RedboothRuby_File/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_comments_collection.yml - spec/cassettes/RedboothRuby_File/_initialize/.yml - spec/cassettes/RedboothRuby_File/_show/.yml - spec/cassettes/RedboothRuby_File/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_file.yml - spec/cassettes/RedboothRuby_File/_update/.yml - spec/cassettes/RedboothRuby_File/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_file.yml - spec/cassettes/RedboothRuby_Me/_initialize/.yml - spec/cassettes/RedboothRuby_Me/_show/.yml - spec/cassettes/RedboothRuby_Me/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_user.yml - spec/cassettes/RedboothRuby_Me/_update/.yml - spec/cassettes/RedboothRuby_Me/_update/integration/.yml - spec/cassettes/RedboothRuby_Membership/_create/integration/.yml - spec/cassettes/RedboothRuby_Membership/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_membership.yml - spec/cassettes/RedboothRuby_Membership/_index/.yml - spec/cassettes/RedboothRuby_Membership/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_membership.yml - spec/cassettes/RedboothRuby_Membership/_initialize/.yml - spec/cassettes/RedboothRuby_Membership/_show/.yml - spec/cassettes/RedboothRuby_Membership/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_membership.yml - spec/cassettes/RedboothRuby_Membership/_update/.yml - spec/cassettes/RedboothRuby_Membership/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_membership.yml - spec/cassettes/RedboothRuby_Note/_create/.yml - spec/cassettes/RedboothRuby_Note/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_note.yml - spec/cassettes/RedboothRuby_Note/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_note.yml - spec/cassettes/RedboothRuby_Note/_index/.yml - spec/cassettes/RedboothRuby_Note/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_notes_collection.yml - spec/cassettes/RedboothRuby_Note/_initialize/.yml - spec/cassettes/RedboothRuby_Note/_show/.yml - spec/cassettes/RedboothRuby_Note/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_note.yml - spec/cassettes/RedboothRuby_Note/_update/.yml - spec/cassettes/RedboothRuby_Note/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_note.yml - spec/cassettes/RedboothRuby_Organization/_create/.yml - spec/cassettes/RedboothRuby_Organization/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_organization.yml - spec/cassettes/RedboothRuby_Organization/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_organization.yml - spec/cassettes/RedboothRuby_Organization/_index/.yml - spec/cassettes/RedboothRuby_Organization/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_organization.yml - spec/cassettes/RedboothRuby_Organization/_initialize/.yml - spec/cassettes/RedboothRuby_Organization/_show/.yml - spec/cassettes/RedboothRuby_Organization/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_organization.yml - spec/cassettes/RedboothRuby_Organization/_update/.yml - spec/cassettes/RedboothRuby_Organization/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_organization.yml - spec/cassettes/RedboothRuby_Person/_create/integration/.yml - spec/cassettes/RedboothRuby_Person/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_person.yml - spec/cassettes/RedboothRuby_Person/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_person.yml - spec/cassettes/RedboothRuby_Person/_index/.yml - spec/cassettes/RedboothRuby_Person/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_person.yml - spec/cassettes/RedboothRuby_Person/_initialize/.yml - spec/cassettes/RedboothRuby_Person/_show/.yml - spec/cassettes/RedboothRuby_Person/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_person.yml - spec/cassettes/RedboothRuby_Person/_update/.yml - spec/cassettes/RedboothRuby_Person/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_person.yml - spec/cassettes/RedboothRuby_Project/_create/.yml - spec/cassettes/RedboothRuby_Project/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_project.yml - spec/cassettes/RedboothRuby_Project/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_project.yml - spec/cassettes/RedboothRuby_Project/_index/.yml - spec/cassettes/RedboothRuby_Project/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_project.yml - spec/cassettes/RedboothRuby_Project/_initialize/.yml - spec/cassettes/RedboothRuby_Project/_show/.yml - spec/cassettes/RedboothRuby_Project/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_project.yml - spec/cassettes/RedboothRuby_Project/_update/.yml - spec/cassettes/RedboothRuby_Project/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_project.yml - spec/cassettes/RedboothRuby_Request_Collection/_all/.yml - spec/cassettes/RedboothRuby_Request_Collection/_count/.yml - spec/cassettes/RedboothRuby_Request_Collection/_current_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_current_page/where_endpoint_is_not_paginated/.yml - spec/cassettes/RedboothRuby_Request_Collection/_initialize/.yml - spec/cassettes/RedboothRuby_Request_Collection/_next_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_next_page/where_endpoint_is_not_paginated/.yml - spec/cassettes/RedboothRuby_Request_Collection/_next_page/where_is_the_last_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_per_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_per_page/where_endpoint_is_not_paginated/.yml - spec/cassettes/RedboothRuby_Request_Collection/_prev_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_prev_page/where_endpoint_is_not_paginated/.yml - spec/cassettes/RedboothRuby_Request_Collection/_prev_page/where_is_the_first_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_total_pages/.yml - spec/cassettes/RedboothRuby_Request_Collection/_total_pages/where_endpoint_is_not_paginated/.yml - spec/cassettes/RedboothRuby_Session/_refresh_access_token_/call_on_token_refresh_with_the_old_and_new_token.yml - spec/cassettes/RedboothRuby_Session/_refresh_access_token_/refreshes_the_access_token/.yml - spec/cassettes/RedboothRuby_Session/_refresh_access_token_/updates_intance_variables/.yml - spec/cassettes/RedboothRuby_Subtask/_create/.yml - spec/cassettes/RedboothRuby_Subtask/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_subtask.yml - spec/cassettes/RedboothRuby_Subtask/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_subtask.yml - spec/cassettes/RedboothRuby_Subtask/_index/.yml - spec/cassettes/RedboothRuby_Subtask/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_subtasks_collection.yml - spec/cassettes/RedboothRuby_Subtask/_initialize/.yml - spec/cassettes/RedboothRuby_Subtask/_show/.yml - spec/cassettes/RedboothRuby_Subtask/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_subtask.yml - spec/cassettes/RedboothRuby_Subtask/_update/.yml - spec/cassettes/RedboothRuby_Subtask/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_subtask.yml - spec/cassettes/RedboothRuby_Task/_create/.yml - spec/cassettes/RedboothRuby_Task/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_index/.yml - spec/cassettes/RedboothRuby_Task/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_initialize/.yml - spec/cassettes/RedboothRuby_Task/_medatada/.yml - spec/cassettes/RedboothRuby_Task/_medatada/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_medatada_/.yml - spec/cassettes/RedboothRuby_Task/_medatada_/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_metadata_merge/.yml - spec/cassettes/RedboothRuby_Task/_metadata_merge/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_show/returns_a_task_with_the_correct_assigned_id.yml - spec/cassettes/RedboothRuby_Task/_show/returns_a_task_with_the_correct_id.yml - spec/cassettes/RedboothRuby_Task/_show/returns_a_task_with_the_correct_name.yml - spec/cassettes/RedboothRuby_Task/_show/returns_a_task_with_the_correct_project_id.yml - spec/cassettes/RedboothRuby_Task/_update/.yml - spec/cassettes/RedboothRuby_Task/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_create/.yml - spec/cassettes/RedboothRuby_User/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_create/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_create/name/.yml - spec/cassettes/RedboothRuby_User/_create/project_id/.yml - spec/cassettes/RedboothRuby_User/_create/task_list_id/.yml - spec/cassettes/RedboothRuby_User/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_index/.yml - spec/cassettes/RedboothRuby_User/_index/class/.yml - spec/cassettes/RedboothRuby_User/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_initialize/.yml - spec/cassettes/RedboothRuby_User/_initialize/assigned_id/.yml - spec/cassettes/RedboothRuby_User/_initialize/description/.yml - spec/cassettes/RedboothRuby_User/_initialize/due_on/.yml - spec/cassettes/RedboothRuby_User/_initialize/id/.yml - spec/cassettes/RedboothRuby_User/_initialize/initializes_all_attributes_correctly.yml - spec/cassettes/RedboothRuby_User/_initialize/name/.yml - spec/cassettes/RedboothRuby_User/_initialize/project_id/.yml - spec/cassettes/RedboothRuby_User/_show/.yml - spec/cassettes/RedboothRuby_User/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_user.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_task_with_the_correct_assigned_id.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_task_with_the_correct_id.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_task_with_the_correct_name.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_task_with_the_correct_project_id.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_user_with_the_correct_email.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_user_with_the_correct_first_name.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_user_with_the_correct_id.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_user_with_the_correct_last_name.yml - spec/cassettes/RedboothRuby_User/_update/.yml - spec/cassettes/RedboothRuby_User/_update/id/.yml - spec/cassettes/RedboothRuby_User/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_update/name/.yml - spec/fixtures/hola.txt - spec/redbooth-ruby/base_spec.rb - spec/redbooth-ruby/client_operations/metadata_spec.rb - spec/redbooth-ruby/client_operations/perform_spec.rb - spec/redbooth-ruby/client_operations/search_spec.rb - spec/redbooth-ruby/client_spec.rb - spec/redbooth-ruby/comment_spec.rb - spec/redbooth-ruby/conversation_spec.rb - spec/redbooth-ruby/file_spec.rb - spec/redbooth-ruby/me_spec.rb - spec/redbooth-ruby/membership_spec.rb - spec/redbooth-ruby/note_spec.rb - spec/redbooth-ruby/organization_spec.rb - spec/redbooth-ruby/person_spec.rb - spec/redbooth-ruby/project_spec.rb - spec/redbooth-ruby/request/base_spec.rb - spec/redbooth-ruby/request/collection_spec.rb - spec/redbooth-ruby/request/connection_spec.rb - spec/redbooth-ruby/request/info_spec.rb - spec/redbooth-ruby/request/response_spec.rb - spec/redbooth-ruby/request/validator_spec.rb - spec/redbooth-ruby/session_spec.rb - spec/redbooth-ruby/subtaks_spec.rb - spec/redbooth-ruby/task_spec.rb - spec/redbooth-ruby/user_spec.rb - spec/redbooth_spec.rb - spec/shared/authentication_context.rb - spec/spec_helper.rb - temp/spec/files/test_download.txt homepage: https://github.com/teambox/redbooth-ruby licenses: [] metadata: {} post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 1.9.3 required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' requirements: [] rubyforge_project: rubygems_version: 2.2.2 signing_key: specification_version: 4 summary: API wrapper for Redbooth. test_files: - spec/cassettes/RedboothRuby_ClientOperations_Metadata/_metadata/.yml - spec/cassettes/RedboothRuby_ClientOperations_Metadata/_metadata/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_notes_collection.yml - spec/cassettes/RedboothRuby_ClientOperations_Search/_index/.yml - spec/cassettes/RedboothRuby_ClientOperations_Search/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_notes_collection.yml - spec/cassettes/RedboothRuby_Comment/_create/.yml - spec/cassettes/RedboothRuby_Comment/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_comment.yml - spec/cassettes/RedboothRuby_Comment/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_comment.yml - spec/cassettes/RedboothRuby_Comment/_index/.yml - spec/cassettes/RedboothRuby_Comment/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_comments_collection.yml - spec/cassettes/RedboothRuby_Comment/_initialize/.yml - spec/cassettes/RedboothRuby_Comment/_show/.yml - spec/cassettes/RedboothRuby_Comment/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_comment.yml - spec/cassettes/RedboothRuby_Comment/_update/.yml - spec/cassettes/RedboothRuby_Comment/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_comment.yml - spec/cassettes/RedboothRuby_Conversation/_create/.yml - spec/cassettes/RedboothRuby_Conversation/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_conversation.yml - spec/cassettes/RedboothRuby_Conversation/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_conversation.yml - spec/cassettes/RedboothRuby_Conversation/_index/.yml - spec/cassettes/RedboothRuby_Conversation/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_conversations_collection.yml - spec/cassettes/RedboothRuby_Conversation/_initialize/.yml - spec/cassettes/RedboothRuby_Conversation/_show/.yml - spec/cassettes/RedboothRuby_Conversation/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_conversation.yml - spec/cassettes/RedboothRuby_Conversation/_update/.yml - spec/cassettes/RedboothRuby_Conversation/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_conversation.yml - spec/cassettes/RedboothRuby_File/_create/.yml - spec/cassettes/RedboothRuby_File/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_file.yml - spec/cassettes/RedboothRuby_File/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_comment.yml - spec/cassettes/RedboothRuby_File/_download/downloads_a_file.yml - spec/cassettes/RedboothRuby_File/_download_to_path/downloads_a_file_to_a_path.yml - spec/cassettes/RedboothRuby_File/_index/.yml - spec/cassettes/RedboothRuby_File/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_comments_collection.yml - spec/cassettes/RedboothRuby_File/_initialize/.yml - spec/cassettes/RedboothRuby_File/_show/.yml - spec/cassettes/RedboothRuby_File/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_file.yml - spec/cassettes/RedboothRuby_File/_update/.yml - spec/cassettes/RedboothRuby_File/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_file.yml - spec/cassettes/RedboothRuby_Me/_initialize/.yml - spec/cassettes/RedboothRuby_Me/_show/.yml - spec/cassettes/RedboothRuby_Me/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_user.yml - spec/cassettes/RedboothRuby_Me/_update/.yml - spec/cassettes/RedboothRuby_Me/_update/integration/.yml - spec/cassettes/RedboothRuby_Membership/_create/integration/.yml - spec/cassettes/RedboothRuby_Membership/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_membership.yml - spec/cassettes/RedboothRuby_Membership/_index/.yml - spec/cassettes/RedboothRuby_Membership/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_membership.yml - spec/cassettes/RedboothRuby_Membership/_initialize/.yml - spec/cassettes/RedboothRuby_Membership/_show/.yml - spec/cassettes/RedboothRuby_Membership/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_membership.yml - spec/cassettes/RedboothRuby_Membership/_update/.yml - spec/cassettes/RedboothRuby_Membership/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_membership.yml - spec/cassettes/RedboothRuby_Note/_create/.yml - spec/cassettes/RedboothRuby_Note/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_note.yml - spec/cassettes/RedboothRuby_Note/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_note.yml - spec/cassettes/RedboothRuby_Note/_index/.yml - spec/cassettes/RedboothRuby_Note/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_notes_collection.yml - spec/cassettes/RedboothRuby_Note/_initialize/.yml - spec/cassettes/RedboothRuby_Note/_show/.yml - spec/cassettes/RedboothRuby_Note/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_note.yml - spec/cassettes/RedboothRuby_Note/_update/.yml - spec/cassettes/RedboothRuby_Note/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_note.yml - spec/cassettes/RedboothRuby_Organization/_create/.yml - spec/cassettes/RedboothRuby_Organization/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_organization.yml - spec/cassettes/RedboothRuby_Organization/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_organization.yml - spec/cassettes/RedboothRuby_Organization/_index/.yml - spec/cassettes/RedboothRuby_Organization/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_organization.yml - spec/cassettes/RedboothRuby_Organization/_initialize/.yml - spec/cassettes/RedboothRuby_Organization/_show/.yml - spec/cassettes/RedboothRuby_Organization/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_organization.yml - spec/cassettes/RedboothRuby_Organization/_update/.yml - spec/cassettes/RedboothRuby_Organization/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_organization.yml - spec/cassettes/RedboothRuby_Person/_create/integration/.yml - spec/cassettes/RedboothRuby_Person/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_person.yml - spec/cassettes/RedboothRuby_Person/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_person.yml - spec/cassettes/RedboothRuby_Person/_index/.yml - spec/cassettes/RedboothRuby_Person/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_person.yml - spec/cassettes/RedboothRuby_Person/_initialize/.yml - spec/cassettes/RedboothRuby_Person/_show/.yml - spec/cassettes/RedboothRuby_Person/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_person.yml - spec/cassettes/RedboothRuby_Person/_update/.yml - spec/cassettes/RedboothRuby_Person/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_person.yml - spec/cassettes/RedboothRuby_Project/_create/.yml - spec/cassettes/RedboothRuby_Project/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_project.yml - spec/cassettes/RedboothRuby_Project/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_project.yml - spec/cassettes/RedboothRuby_Project/_index/.yml - spec/cassettes/RedboothRuby_Project/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_project.yml - spec/cassettes/RedboothRuby_Project/_initialize/.yml - spec/cassettes/RedboothRuby_Project/_show/.yml - spec/cassettes/RedboothRuby_Project/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_project.yml - spec/cassettes/RedboothRuby_Project/_update/.yml - spec/cassettes/RedboothRuby_Project/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_project.yml - spec/cassettes/RedboothRuby_Request_Collection/_all/.yml - spec/cassettes/RedboothRuby_Request_Collection/_count/.yml - spec/cassettes/RedboothRuby_Request_Collection/_current_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_current_page/where_endpoint_is_not_paginated/.yml - spec/cassettes/RedboothRuby_Request_Collection/_initialize/.yml - spec/cassettes/RedboothRuby_Request_Collection/_next_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_next_page/where_endpoint_is_not_paginated/.yml - spec/cassettes/RedboothRuby_Request_Collection/_next_page/where_is_the_last_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_per_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_per_page/where_endpoint_is_not_paginated/.yml - spec/cassettes/RedboothRuby_Request_Collection/_prev_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_prev_page/where_endpoint_is_not_paginated/.yml - spec/cassettes/RedboothRuby_Request_Collection/_prev_page/where_is_the_first_page/.yml - spec/cassettes/RedboothRuby_Request_Collection/_total_pages/.yml - spec/cassettes/RedboothRuby_Request_Collection/_total_pages/where_endpoint_is_not_paginated/.yml - spec/cassettes/RedboothRuby_Session/_refresh_access_token_/call_on_token_refresh_with_the_old_and_new_token.yml - spec/cassettes/RedboothRuby_Session/_refresh_access_token_/refreshes_the_access_token/.yml - spec/cassettes/RedboothRuby_Session/_refresh_access_token_/updates_intance_variables/.yml - spec/cassettes/RedboothRuby_Subtask/_create/.yml - spec/cassettes/RedboothRuby_Subtask/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_subtask.yml - spec/cassettes/RedboothRuby_Subtask/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_subtask.yml - spec/cassettes/RedboothRuby_Subtask/_index/.yml - spec/cassettes/RedboothRuby_Subtask/_index/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_subtasks_collection.yml - spec/cassettes/RedboothRuby_Subtask/_initialize/.yml - spec/cassettes/RedboothRuby_Subtask/_show/.yml - spec/cassettes/RedboothRuby_Subtask/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_subtask.yml - spec/cassettes/RedboothRuby_Subtask/_update/.yml - spec/cassettes/RedboothRuby_Subtask/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_subtask.yml - spec/cassettes/RedboothRuby_Task/_create/.yml - spec/cassettes/RedboothRuby_Task/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_index/.yml - spec/cassettes/RedboothRuby_Task/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_initialize/.yml - spec/cassettes/RedboothRuby_Task/_medatada/.yml - spec/cassettes/RedboothRuby_Task/_medatada/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_medatada_/.yml - spec/cassettes/RedboothRuby_Task/_medatada_/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_metadata_merge/.yml - spec/cassettes/RedboothRuby_Task/_metadata_merge/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_Task/_show/returns_a_task_with_the_correct_assigned_id.yml - spec/cassettes/RedboothRuby_Task/_show/returns_a_task_with_the_correct_id.yml - spec/cassettes/RedboothRuby_Task/_show/returns_a_task_with_the_correct_name.yml - spec/cassettes/RedboothRuby_Task/_show/returns_a_task_with_the_correct_project_id.yml - spec/cassettes/RedboothRuby_Task/_update/.yml - spec/cassettes/RedboothRuby_Task/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_create/.yml - spec/cassettes/RedboothRuby_User/_create/makes_a_new_POST_request_using_the_correct_API_endpoint_to_create_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_create/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_create/name/.yml - spec/cassettes/RedboothRuby_User/_create/project_id/.yml - spec/cassettes/RedboothRuby_User/_create/task_list_id/.yml - spec/cassettes/RedboothRuby_User/_delete/makes_a_new_DELETE_request_using_the_correct_API_endpoint_to_delete_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_index/.yml - spec/cassettes/RedboothRuby_User/_index/class/.yml - spec/cassettes/RedboothRuby_User/_index/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_initialize/.yml - spec/cassettes/RedboothRuby_User/_initialize/assigned_id/.yml - spec/cassettes/RedboothRuby_User/_initialize/description/.yml - spec/cassettes/RedboothRuby_User/_initialize/due_on/.yml - spec/cassettes/RedboothRuby_User/_initialize/id/.yml - spec/cassettes/RedboothRuby_User/_initialize/initializes_all_attributes_correctly.yml - spec/cassettes/RedboothRuby_User/_initialize/name/.yml - spec/cassettes/RedboothRuby_User/_initialize/project_id/.yml - spec/cassettes/RedboothRuby_User/_show/.yml - spec/cassettes/RedboothRuby_User/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_show/makes_a_new_GET_request_using_the_correct_API_endpoint_to_receive_a_specific_user.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_task_with_the_correct_assigned_id.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_task_with_the_correct_id.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_task_with_the_correct_name.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_task_with_the_correct_project_id.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_user_with_the_correct_email.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_user_with_the_correct_first_name.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_user_with_the_correct_id.yml - spec/cassettes/RedboothRuby_User/_show/returns_a_user_with_the_correct_last_name.yml - spec/cassettes/RedboothRuby_User/_update/.yml - spec/cassettes/RedboothRuby_User/_update/id/.yml - spec/cassettes/RedboothRuby_User/_update/makes_a_new_PUT_request_using_the_correct_API_endpoint_to_receive_a_specific_task.yml - spec/cassettes/RedboothRuby_User/_update/name/.yml - spec/fixtures/hola.txt - spec/redbooth-ruby/base_spec.rb - spec/redbooth-ruby/client_operations/metadata_spec.rb - spec/redbooth-ruby/client_operations/perform_spec.rb - spec/redbooth-ruby/client_operations/search_spec.rb - spec/redbooth-ruby/client_spec.rb - spec/redbooth-ruby/comment_spec.rb - spec/redbooth-ruby/conversation_spec.rb - spec/redbooth-ruby/file_spec.rb - spec/redbooth-ruby/me_spec.rb - spec/redbooth-ruby/membership_spec.rb - spec/redbooth-ruby/note_spec.rb - spec/redbooth-ruby/organization_spec.rb - spec/redbooth-ruby/person_spec.rb - spec/redbooth-ruby/project_spec.rb - spec/redbooth-ruby/request/base_spec.rb - spec/redbooth-ruby/request/collection_spec.rb - spec/redbooth-ruby/request/connection_spec.rb - spec/redbooth-ruby/request/info_spec.rb - spec/redbooth-ruby/request/response_spec.rb - spec/redbooth-ruby/request/validator_spec.rb - spec/redbooth-ruby/session_spec.rb - spec/redbooth-ruby/subtaks_spec.rb - spec/redbooth-ruby/task_spec.rb - spec/redbooth-ruby/user_spec.rb - spec/redbooth_spec.rb - spec/shared/authentication_context.rb - spec/spec_helper.rb