pinterest-ruby 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/.gitignore +7 -0
 - data/.rubocop.yml +63 -0
 - data/.travis-gemfile +17 -0
 - data/.travis.yml +12 -0
 - data/.yardopts +1 -0
 - data/CHANGELOG.md +3 -0
 - data/Gemfile +24 -0
 - data/README.md +34 -0
 - data/Rakefile +44 -0
 - data/docs/FaradayMiddleware/SafeOj.html +218 -0
 - data/docs/FaradayMiddleware.html +125 -0
 - data/docs/Pinterest/Board.html +410 -0
 - data/docs/Pinterest/Client.html +1894 -0
 - data/docs/Pinterest/Collection.html +1877 -0
 - data/docs/Pinterest/Endpoints/Authentication.html +578 -0
 - data/docs/Pinterest/Endpoints/Boards.html +1443 -0
 - data/docs/Pinterest/Endpoints/Pins.html +1296 -0
 - data/docs/Pinterest/Endpoints/Users.html +1220 -0
 - data/docs/Pinterest/Endpoints.html +127 -0
 - data/docs/Pinterest/Entity.html +473 -0
 - data/docs/Pinterest/Errors/AuthorizationError.html +158 -0
 - data/docs/Pinterest/Errors/BadRequestError.html +158 -0
 - data/docs/Pinterest/Errors/BaseError.html +487 -0
 - data/docs/Pinterest/Errors/MethodNotAllowedError.html +158 -0
 - data/docs/Pinterest/Errors/NotFoundError.html +158 -0
 - data/docs/Pinterest/Errors/NotImplementedError.html +158 -0
 - data/docs/Pinterest/Errors/PermissionsError.html +158 -0
 - data/docs/Pinterest/Errors/RateLimitError.html +158 -0
 - data/docs/Pinterest/Errors/ServerError.html +158 -0
 - data/docs/Pinterest/Errors/TimeoutError.html +158 -0
 - data/docs/Pinterest/Errors.html +377 -0
 - data/docs/Pinterest/Image.html +617 -0
 - data/docs/Pinterest/Interest.html +402 -0
 - data/docs/Pinterest/Pin.html +511 -0
 - data/docs/Pinterest/User.html +408 -0
 - data/docs/Pinterest/Version.html +187 -0
 - data/docs/Pinterest.html +130 -0
 - data/docs/_index.html +401 -0
 - data/docs/class_list.html +51 -0
 - data/docs/css/common.css +1 -0
 - data/docs/css/full_list.css +58 -0
 - data/docs/css/style.css +492 -0
 - data/docs/file.README.html +106 -0
 - data/docs/file_list.html +56 -0
 - data/docs/frames.html +17 -0
 - data/docs/index.html +106 -0
 - data/docs/js/app.js +243 -0
 - data/docs/js/full_list.js +216 -0
 - data/docs/js/jquery.js +4 -0
 - data/docs/method_list.html +643 -0
 - data/docs/top-level-namespace.html +110 -0
 - data/lib/pinterest/client.rb +146 -0
 - data/lib/pinterest/collection.rb +97 -0
 - data/lib/pinterest/endpoints/authentication.rb +99 -0
 - data/lib/pinterest/endpoints/boards.rb +193 -0
 - data/lib/pinterest/endpoints/pins.rb +187 -0
 - data/lib/pinterest/endpoints/users.rb +158 -0
 - data/lib/pinterest/errors.rb +94 -0
 - data/lib/pinterest/models/board.rb +34 -0
 - data/lib/pinterest/models/entity.rb +42 -0
 - data/lib/pinterest/models/image.rb +49 -0
 - data/lib/pinterest/models/interest.rb +30 -0
 - data/lib/pinterest/models/pin.rb +43 -0
 - data/lib/pinterest/models/user.rb +33 -0
 - data/lib/pinterest/safe_oj.rb +25 -0
 - data/lib/pinterest/version.rb +23 -0
 - data/lib/pinterest.rb +31 -0
 - data/pinterest.gemspec +32 -0
 - data/spec/cassettes/Pinterest_Client/_perform_network_request_private_/should_correctly_handle_malformed_requests.yml +51 -0
 - data/spec/cassettes/Pinterest_Endpoints_Authentication/_fetch_access_token/should_make_the_call_to_Pinterest_and_return_the_authorization_token_also_saving_it.yml +58 -0
 - data/spec/cassettes/Pinterest_Endpoints_Authentication/_verify_access_token/should_return_an_exception_when_using_an_invalid_token.yml +52 -0
 - data/spec/cassettes/Pinterest_Endpoints_Authentication/_verify_access_token/should_verify_the_token.yml +59 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_board/should_complain_for_invalid_boards.yml +48 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_board/should_get_the_current_informations.yml +63 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_board/should_restrict_to_requested_fields.yml +57 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_boards/should_only_get_requested_fields.yml +57 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_boards/should_return_a_list_of_boards.yml +74 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_create_board/should_create_the_board_and_return_it_with_only_the_requested_fields.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_delete_board/should_perform_the_call_and_return_an_error.yml +48 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_delete_board/should_perform_the_call_and_return_true.yml +109 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_edit_board/should_edit_the_board_and_return_it_with_only_the_requested_fields.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_follow_board/should_complain_for_invalid_boards.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_follow_board/should_perform_the_call_and_return_true.yml +109 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_only_get_requested_fields.yml +59 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_paginate_correctly.yml +72 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_return_the_followed_boards.yml +72 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_only_get_requested_fields.yml +59 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_paginate_correctly.yml +66 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_search_boards.yml +75 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_suggested_boards/should_return_the_suggested_boards_returning_only_the_requested_fields.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_unfollow_board/should_complain_for_invalid_boards.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Boards/_unfollow_board/should_perform_the_call_and_return_true.yml +109 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_only_get_requested_fields.yml +59 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_paginate_correctly.yml +85 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_return_the_pins_of_the_board.yml +85 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_create_a_pin_by_using_a_image_URL.yml +71 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_create_a_pin_by_using_a_image_file.yml +1997 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_return_a_pin_containing_only_requested_fields.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_delete_pin/should_perform_the_call_and_return_an_error.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_delete_pin/should_perform_the_call_and_return_true.yml +109 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_edit_pin/should_edit_the_pin_and_return_it_with_only_the_requested_fields.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_only_get_requested_fields.yml +58 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_paginate_correctly.yml +87 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_return_the_list_of_liked_pins.yml +85 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_complain_for_non_existent_pins.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_get_the_current_informations.yml +71 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_restrict_to_requested_fields.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_only_get_requested_fields.yml +59 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_paginate_correctly.yml +808 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_return_my_pins.yml +88 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_only_get_requested_fields.yml +61 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_paginate_correctly.yml +89 -0
 - data/spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_search_my_pins.yml +89 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_follow_interest/should_perform_the_call_and_return_an_error.yml +48 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_follow_user/should_complain_for_invalid_users.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_follow_user/should_perform_the_call_and_return_true.yml +109 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_followers/should_only_get_requested_fields.yml +62 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_followers/should_paginate_correctly.yml +62 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_followers/should_return_a_list_of_followers.yml +62 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_only_get_requested_fields.yml +62 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_paginate_correctly.yml +131 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_return_a_list_of_followed_users.yml +66 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_interests/should_paginate_correctly.yml +112 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_interests/should_return_a_list_of_followed_interest.yml +58 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_me/should_get_the_current_informations.yml +62 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_me/should_restrict_to_requested_fields.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_unfollow_interest/should_perform_the_call_and_return_an_error.yml +48 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_unfollow_user/should_complain_for_invalid_users.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_unfollow_user/should_perform_the_call_and_return_true.yml +109 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_user/should_complain_for_non_existent_users.yml +56 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_user/should_get_the_current_informations.yml +60 -0
 - data/spec/cassettes/Pinterest_Endpoints_Users/_user/should_restrict_to_requested_fields.yml +56 -0
 - data/spec/pinterest/client_spec.rb +70 -0
 - data/spec/pinterest/collection_spec.rb +82 -0
 - data/spec/pinterest/endpoints/authentication_spec.rb +81 -0
 - data/spec/pinterest/endpoints/boards_spec.rb +209 -0
 - data/spec/pinterest/endpoints/pins_spec.rb +239 -0
 - data/spec/pinterest/endpoints/users_spec.rb +194 -0
 - data/spec/pinterest/errors_spec.rb +59 -0
 - data/spec/pinterest/fixtures/first.jpg +0 -0
 - data/spec/pinterest/models/board_spec.rb +48 -0
 - data/spec/pinterest/models/entity_spec.rb +35 -0
 - data/spec/pinterest/models/image_spec.rb +50 -0
 - data/spec/pinterest/models/interest_spec.rb +20 -0
 - data/spec/pinterest/models/pin_spec.rb +55 -0
 - data/spec/pinterest/models/user_spec.rb +45 -0
 - data/spec/spec_helper.rb +49 -0
 - data/tester.rb +19 -0
 - metadata +341 -0
 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,341 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: pinterest-ruby
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.0.0
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 7 
     | 
    
         
            +
            - Shogun
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2017-01-12 00:00:00.000000000 Z
         
     | 
| 
      
 12 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 13 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 14 
     | 
    
         
            +
              name: addressable
         
     | 
| 
      
 15 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 16 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 17 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 19 
     | 
    
         
            +
                    version: '2.5'
         
     | 
| 
      
 20 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 21 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 22 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 23 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 24 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 25 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 26 
     | 
    
         
            +
                    version: '2.5'
         
     | 
| 
      
 27 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 28 
     | 
    
         
            +
              name: faraday
         
     | 
| 
      
 29 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 30 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 31 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: '0.10'
         
     | 
| 
      
 34 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 35 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 36 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 37 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 38 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 39 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 40 
     | 
    
         
            +
                    version: '0.10'
         
     | 
| 
      
 41 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 42 
     | 
    
         
            +
              name: faraday_middleware
         
     | 
| 
      
 43 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 44 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 45 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 47 
     | 
    
         
            +
                    version: '0.10'
         
     | 
| 
      
 48 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 49 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 50 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 51 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 52 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 53 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 54 
     | 
    
         
            +
                    version: '0.10'
         
     | 
| 
      
 55 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 56 
     | 
    
         
            +
              name: fastimage
         
     | 
| 
      
 57 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 58 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 59 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 60 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 61 
     | 
    
         
            +
                    version: '2.0'
         
     | 
| 
      
 62 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 63 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 64 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 65 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 66 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 68 
     | 
    
         
            +
                    version: '2.0'
         
     | 
| 
      
 69 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 70 
     | 
    
         
            +
              name: oj
         
     | 
| 
      
 71 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 72 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 73 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 74 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 75 
     | 
    
         
            +
                    version: '2.18'
         
     | 
| 
      
 76 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 77 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 78 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 79 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 80 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 81 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 82 
     | 
    
         
            +
                    version: '2.18'
         
     | 
| 
      
 83 
     | 
    
         
            +
            description: Pinterest API wrapper for Ruby.
         
     | 
| 
      
 84 
     | 
    
         
            +
            email:
         
     | 
| 
      
 85 
     | 
    
         
            +
            - shogun@cowtech.it
         
     | 
| 
      
 86 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 87 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 88 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 89 
     | 
    
         
            +
            files:
         
     | 
| 
      
 90 
     | 
    
         
            +
            - ".gitignore"
         
     | 
| 
      
 91 
     | 
    
         
            +
            - ".rubocop.yml"
         
     | 
| 
      
 92 
     | 
    
         
            +
            - ".travis-gemfile"
         
     | 
| 
      
 93 
     | 
    
         
            +
            - ".travis.yml"
         
     | 
| 
      
 94 
     | 
    
         
            +
            - ".yardopts"
         
     | 
| 
      
 95 
     | 
    
         
            +
            - CHANGELOG.md
         
     | 
| 
      
 96 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 97 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 98 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 99 
     | 
    
         
            +
            - docs/FaradayMiddleware.html
         
     | 
| 
      
 100 
     | 
    
         
            +
            - docs/FaradayMiddleware/SafeOj.html
         
     | 
| 
      
 101 
     | 
    
         
            +
            - docs/Pinterest.html
         
     | 
| 
      
 102 
     | 
    
         
            +
            - docs/Pinterest/Board.html
         
     | 
| 
      
 103 
     | 
    
         
            +
            - docs/Pinterest/Client.html
         
     | 
| 
      
 104 
     | 
    
         
            +
            - docs/Pinterest/Collection.html
         
     | 
| 
      
 105 
     | 
    
         
            +
            - docs/Pinterest/Endpoints.html
         
     | 
| 
      
 106 
     | 
    
         
            +
            - docs/Pinterest/Endpoints/Authentication.html
         
     | 
| 
      
 107 
     | 
    
         
            +
            - docs/Pinterest/Endpoints/Boards.html
         
     | 
| 
      
 108 
     | 
    
         
            +
            - docs/Pinterest/Endpoints/Pins.html
         
     | 
| 
      
 109 
     | 
    
         
            +
            - docs/Pinterest/Endpoints/Users.html
         
     | 
| 
      
 110 
     | 
    
         
            +
            - docs/Pinterest/Entity.html
         
     | 
| 
      
 111 
     | 
    
         
            +
            - docs/Pinterest/Errors.html
         
     | 
| 
      
 112 
     | 
    
         
            +
            - docs/Pinterest/Errors/AuthorizationError.html
         
     | 
| 
      
 113 
     | 
    
         
            +
            - docs/Pinterest/Errors/BadRequestError.html
         
     | 
| 
      
 114 
     | 
    
         
            +
            - docs/Pinterest/Errors/BaseError.html
         
     | 
| 
      
 115 
     | 
    
         
            +
            - docs/Pinterest/Errors/MethodNotAllowedError.html
         
     | 
| 
      
 116 
     | 
    
         
            +
            - docs/Pinterest/Errors/NotFoundError.html
         
     | 
| 
      
 117 
     | 
    
         
            +
            - docs/Pinterest/Errors/NotImplementedError.html
         
     | 
| 
      
 118 
     | 
    
         
            +
            - docs/Pinterest/Errors/PermissionsError.html
         
     | 
| 
      
 119 
     | 
    
         
            +
            - docs/Pinterest/Errors/RateLimitError.html
         
     | 
| 
      
 120 
     | 
    
         
            +
            - docs/Pinterest/Errors/ServerError.html
         
     | 
| 
      
 121 
     | 
    
         
            +
            - docs/Pinterest/Errors/TimeoutError.html
         
     | 
| 
      
 122 
     | 
    
         
            +
            - docs/Pinterest/Image.html
         
     | 
| 
      
 123 
     | 
    
         
            +
            - docs/Pinterest/Interest.html
         
     | 
| 
      
 124 
     | 
    
         
            +
            - docs/Pinterest/Pin.html
         
     | 
| 
      
 125 
     | 
    
         
            +
            - docs/Pinterest/User.html
         
     | 
| 
      
 126 
     | 
    
         
            +
            - docs/Pinterest/Version.html
         
     | 
| 
      
 127 
     | 
    
         
            +
            - docs/_index.html
         
     | 
| 
      
 128 
     | 
    
         
            +
            - docs/class_list.html
         
     | 
| 
      
 129 
     | 
    
         
            +
            - docs/css/common.css
         
     | 
| 
      
 130 
     | 
    
         
            +
            - docs/css/full_list.css
         
     | 
| 
      
 131 
     | 
    
         
            +
            - docs/css/style.css
         
     | 
| 
      
 132 
     | 
    
         
            +
            - docs/file.README.html
         
     | 
| 
      
 133 
     | 
    
         
            +
            - docs/file_list.html
         
     | 
| 
      
 134 
     | 
    
         
            +
            - docs/frames.html
         
     | 
| 
      
 135 
     | 
    
         
            +
            - docs/index.html
         
     | 
| 
      
 136 
     | 
    
         
            +
            - docs/js/app.js
         
     | 
| 
      
 137 
     | 
    
         
            +
            - docs/js/full_list.js
         
     | 
| 
      
 138 
     | 
    
         
            +
            - docs/js/jquery.js
         
     | 
| 
      
 139 
     | 
    
         
            +
            - docs/method_list.html
         
     | 
| 
      
 140 
     | 
    
         
            +
            - docs/top-level-namespace.html
         
     | 
| 
      
 141 
     | 
    
         
            +
            - lib/pinterest.rb
         
     | 
| 
      
 142 
     | 
    
         
            +
            - lib/pinterest/client.rb
         
     | 
| 
      
 143 
     | 
    
         
            +
            - lib/pinterest/collection.rb
         
     | 
| 
      
 144 
     | 
    
         
            +
            - lib/pinterest/endpoints/authentication.rb
         
     | 
| 
      
 145 
     | 
    
         
            +
            - lib/pinterest/endpoints/boards.rb
         
     | 
| 
      
 146 
     | 
    
         
            +
            - lib/pinterest/endpoints/pins.rb
         
     | 
| 
      
 147 
     | 
    
         
            +
            - lib/pinterest/endpoints/users.rb
         
     | 
| 
      
 148 
     | 
    
         
            +
            - lib/pinterest/errors.rb
         
     | 
| 
      
 149 
     | 
    
         
            +
            - lib/pinterest/models/board.rb
         
     | 
| 
      
 150 
     | 
    
         
            +
            - lib/pinterest/models/entity.rb
         
     | 
| 
      
 151 
     | 
    
         
            +
            - lib/pinterest/models/image.rb
         
     | 
| 
      
 152 
     | 
    
         
            +
            - lib/pinterest/models/interest.rb
         
     | 
| 
      
 153 
     | 
    
         
            +
            - lib/pinterest/models/pin.rb
         
     | 
| 
      
 154 
     | 
    
         
            +
            - lib/pinterest/models/user.rb
         
     | 
| 
      
 155 
     | 
    
         
            +
            - lib/pinterest/safe_oj.rb
         
     | 
| 
      
 156 
     | 
    
         
            +
            - lib/pinterest/version.rb
         
     | 
| 
      
 157 
     | 
    
         
            +
            - pinterest.gemspec
         
     | 
| 
      
 158 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Client/_perform_network_request_private_/should_correctly_handle_malformed_requests.yml
         
     | 
| 
      
 159 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Authentication/_fetch_access_token/should_make_the_call_to_Pinterest_and_return_the_authorization_token_also_saving_it.yml
         
     | 
| 
      
 160 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Authentication/_verify_access_token/should_return_an_exception_when_using_an_invalid_token.yml
         
     | 
| 
      
 161 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Authentication/_verify_access_token/should_verify_the_token.yml
         
     | 
| 
      
 162 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_board/should_complain_for_invalid_boards.yml
         
     | 
| 
      
 163 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_board/should_get_the_current_informations.yml
         
     | 
| 
      
 164 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_board/should_restrict_to_requested_fields.yml
         
     | 
| 
      
 165 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_boards/should_only_get_requested_fields.yml
         
     | 
| 
      
 166 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_boards/should_return_a_list_of_boards.yml
         
     | 
| 
      
 167 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_create_board/should_create_the_board_and_return_it_with_only_the_requested_fields.yml
         
     | 
| 
      
 168 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_delete_board/should_perform_the_call_and_return_an_error.yml
         
     | 
| 
      
 169 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_delete_board/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 170 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_edit_board/should_edit_the_board_and_return_it_with_only_the_requested_fields.yml
         
     | 
| 
      
 171 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_follow_board/should_complain_for_invalid_boards.yml
         
     | 
| 
      
 172 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_follow_board/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 173 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_only_get_requested_fields.yml
         
     | 
| 
      
 174 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_paginate_correctly.yml
         
     | 
| 
      
 175 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_return_the_followed_boards.yml
         
     | 
| 
      
 176 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_only_get_requested_fields.yml
         
     | 
| 
      
 177 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_paginate_correctly.yml
         
     | 
| 
      
 178 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_search_boards.yml
         
     | 
| 
      
 179 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_suggested_boards/should_return_the_suggested_boards_returning_only_the_requested_fields.yml
         
     | 
| 
      
 180 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_unfollow_board/should_complain_for_invalid_boards.yml
         
     | 
| 
      
 181 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_unfollow_board/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 182 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_only_get_requested_fields.yml
         
     | 
| 
      
 183 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_paginate_correctly.yml
         
     | 
| 
      
 184 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_return_the_pins_of_the_board.yml
         
     | 
| 
      
 185 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_create_a_pin_by_using_a_image_URL.yml
         
     | 
| 
      
 186 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_create_a_pin_by_using_a_image_file.yml
         
     | 
| 
      
 187 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_return_a_pin_containing_only_requested_fields.yml
         
     | 
| 
      
 188 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_delete_pin/should_perform_the_call_and_return_an_error.yml
         
     | 
| 
      
 189 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_delete_pin/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 190 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_edit_pin/should_edit_the_pin_and_return_it_with_only_the_requested_fields.yml
         
     | 
| 
      
 191 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_only_get_requested_fields.yml
         
     | 
| 
      
 192 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_paginate_correctly.yml
         
     | 
| 
      
 193 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_return_the_list_of_liked_pins.yml
         
     | 
| 
      
 194 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_complain_for_non_existent_pins.yml
         
     | 
| 
      
 195 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_get_the_current_informations.yml
         
     | 
| 
      
 196 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_restrict_to_requested_fields.yml
         
     | 
| 
      
 197 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_only_get_requested_fields.yml
         
     | 
| 
      
 198 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_paginate_correctly.yml
         
     | 
| 
      
 199 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_return_my_pins.yml
         
     | 
| 
      
 200 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_only_get_requested_fields.yml
         
     | 
| 
      
 201 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_paginate_correctly.yml
         
     | 
| 
      
 202 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_search_my_pins.yml
         
     | 
| 
      
 203 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_follow_interest/should_perform_the_call_and_return_an_error.yml
         
     | 
| 
      
 204 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_follow_user/should_complain_for_invalid_users.yml
         
     | 
| 
      
 205 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_follow_user/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 206 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_followers/should_only_get_requested_fields.yml
         
     | 
| 
      
 207 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_followers/should_paginate_correctly.yml
         
     | 
| 
      
 208 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_followers/should_return_a_list_of_followers.yml
         
     | 
| 
      
 209 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_only_get_requested_fields.yml
         
     | 
| 
      
 210 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_paginate_correctly.yml
         
     | 
| 
      
 211 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_return_a_list_of_followed_users.yml
         
     | 
| 
      
 212 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_interests/should_paginate_correctly.yml
         
     | 
| 
      
 213 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_interests/should_return_a_list_of_followed_interest.yml
         
     | 
| 
      
 214 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_me/should_get_the_current_informations.yml
         
     | 
| 
      
 215 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_me/should_restrict_to_requested_fields.yml
         
     | 
| 
      
 216 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_unfollow_interest/should_perform_the_call_and_return_an_error.yml
         
     | 
| 
      
 217 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_unfollow_user/should_complain_for_invalid_users.yml
         
     | 
| 
      
 218 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_unfollow_user/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 219 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_user/should_complain_for_non_existent_users.yml
         
     | 
| 
      
 220 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_user/should_get_the_current_informations.yml
         
     | 
| 
      
 221 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_user/should_restrict_to_requested_fields.yml
         
     | 
| 
      
 222 
     | 
    
         
            +
            - spec/pinterest/client_spec.rb
         
     | 
| 
      
 223 
     | 
    
         
            +
            - spec/pinterest/collection_spec.rb
         
     | 
| 
      
 224 
     | 
    
         
            +
            - spec/pinterest/endpoints/authentication_spec.rb
         
     | 
| 
      
 225 
     | 
    
         
            +
            - spec/pinterest/endpoints/boards_spec.rb
         
     | 
| 
      
 226 
     | 
    
         
            +
            - spec/pinterest/endpoints/pins_spec.rb
         
     | 
| 
      
 227 
     | 
    
         
            +
            - spec/pinterest/endpoints/users_spec.rb
         
     | 
| 
      
 228 
     | 
    
         
            +
            - spec/pinterest/errors_spec.rb
         
     | 
| 
      
 229 
     | 
    
         
            +
            - spec/pinterest/fixtures/first.jpg
         
     | 
| 
      
 230 
     | 
    
         
            +
            - spec/pinterest/models/board_spec.rb
         
     | 
| 
      
 231 
     | 
    
         
            +
            - spec/pinterest/models/entity_spec.rb
         
     | 
| 
      
 232 
     | 
    
         
            +
            - spec/pinterest/models/image_spec.rb
         
     | 
| 
      
 233 
     | 
    
         
            +
            - spec/pinterest/models/interest_spec.rb
         
     | 
| 
      
 234 
     | 
    
         
            +
            - spec/pinterest/models/pin_spec.rb
         
     | 
| 
      
 235 
     | 
    
         
            +
            - spec/pinterest/models/user_spec.rb
         
     | 
| 
      
 236 
     | 
    
         
            +
            - spec/spec_helper.rb
         
     | 
| 
      
 237 
     | 
    
         
            +
            - tester.rb
         
     | 
| 
      
 238 
     | 
    
         
            +
            homepage: https://github.com/ShogunPanda/pinterest-ruby
         
     | 
| 
      
 239 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 240 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 241 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 242 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 243 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 244 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 245 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 246 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 247 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 248 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 249 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 250 
     | 
    
         
            +
                  version: '2.2'
         
     | 
| 
      
 251 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 252 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 253 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 254 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 255 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 256 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 257 
     | 
    
         
            +
            rubyforge_project: pinterest-ruby
         
     | 
| 
      
 258 
     | 
    
         
            +
            rubygems_version: 2.5.1
         
     | 
| 
      
 259 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 260 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 261 
     | 
    
         
            +
            summary: Pinterest API wrapper for Ruby.
         
     | 
| 
      
 262 
     | 
    
         
            +
            test_files:
         
     | 
| 
      
 263 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Client/_perform_network_request_private_/should_correctly_handle_malformed_requests.yml
         
     | 
| 
      
 264 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Authentication/_fetch_access_token/should_make_the_call_to_Pinterest_and_return_the_authorization_token_also_saving_it.yml
         
     | 
| 
      
 265 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Authentication/_verify_access_token/should_return_an_exception_when_using_an_invalid_token.yml
         
     | 
| 
      
 266 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Authentication/_verify_access_token/should_verify_the_token.yml
         
     | 
| 
      
 267 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_board/should_complain_for_invalid_boards.yml
         
     | 
| 
      
 268 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_board/should_get_the_current_informations.yml
         
     | 
| 
      
 269 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_board/should_restrict_to_requested_fields.yml
         
     | 
| 
      
 270 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_boards/should_only_get_requested_fields.yml
         
     | 
| 
      
 271 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_boards/should_return_a_list_of_boards.yml
         
     | 
| 
      
 272 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_create_board/should_create_the_board_and_return_it_with_only_the_requested_fields.yml
         
     | 
| 
      
 273 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_delete_board/should_perform_the_call_and_return_an_error.yml
         
     | 
| 
      
 274 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_delete_board/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 275 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_edit_board/should_edit_the_board_and_return_it_with_only_the_requested_fields.yml
         
     | 
| 
      
 276 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_follow_board/should_complain_for_invalid_boards.yml
         
     | 
| 
      
 277 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_follow_board/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 278 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_only_get_requested_fields.yml
         
     | 
| 
      
 279 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_paginate_correctly.yml
         
     | 
| 
      
 280 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_following_boards/should_return_the_followed_boards.yml
         
     | 
| 
      
 281 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_only_get_requested_fields.yml
         
     | 
| 
      
 282 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_paginate_correctly.yml
         
     | 
| 
      
 283 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_search_my_boards/should_search_boards.yml
         
     | 
| 
      
 284 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_suggested_boards/should_return_the_suggested_boards_returning_only_the_requested_fields.yml
         
     | 
| 
      
 285 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_unfollow_board/should_complain_for_invalid_boards.yml
         
     | 
| 
      
 286 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Boards/_unfollow_board/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 287 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_only_get_requested_fields.yml
         
     | 
| 
      
 288 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_paginate_correctly.yml
         
     | 
| 
      
 289 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_board_pins/should_return_the_pins_of_the_board.yml
         
     | 
| 
      
 290 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_create_a_pin_by_using_a_image_URL.yml
         
     | 
| 
      
 291 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_create_a_pin_by_using_a_image_file.yml
         
     | 
| 
      
 292 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_create_pin/should_return_a_pin_containing_only_requested_fields.yml
         
     | 
| 
      
 293 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_delete_pin/should_perform_the_call_and_return_an_error.yml
         
     | 
| 
      
 294 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_delete_pin/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 295 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_edit_pin/should_edit_the_pin_and_return_it_with_only_the_requested_fields.yml
         
     | 
| 
      
 296 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_only_get_requested_fields.yml
         
     | 
| 
      
 297 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_paginate_correctly.yml
         
     | 
| 
      
 298 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_likes/should_return_the_list_of_liked_pins.yml
         
     | 
| 
      
 299 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_complain_for_non_existent_pins.yml
         
     | 
| 
      
 300 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_get_the_current_informations.yml
         
     | 
| 
      
 301 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pin/should_restrict_to_requested_fields.yml
         
     | 
| 
      
 302 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_only_get_requested_fields.yml
         
     | 
| 
      
 303 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_paginate_correctly.yml
         
     | 
| 
      
 304 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_pins/should_return_my_pins.yml
         
     | 
| 
      
 305 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_only_get_requested_fields.yml
         
     | 
| 
      
 306 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_paginate_correctly.yml
         
     | 
| 
      
 307 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Pins/_search_my_pins/should_search_my_pins.yml
         
     | 
| 
      
 308 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_follow_interest/should_perform_the_call_and_return_an_error.yml
         
     | 
| 
      
 309 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_follow_user/should_complain_for_invalid_users.yml
         
     | 
| 
      
 310 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_follow_user/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 311 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_followers/should_only_get_requested_fields.yml
         
     | 
| 
      
 312 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_followers/should_paginate_correctly.yml
         
     | 
| 
      
 313 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_followers/should_return_a_list_of_followers.yml
         
     | 
| 
      
 314 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_only_get_requested_fields.yml
         
     | 
| 
      
 315 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_paginate_correctly.yml
         
     | 
| 
      
 316 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_following_users/should_return_a_list_of_followed_users.yml
         
     | 
| 
      
 317 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_interests/should_paginate_correctly.yml
         
     | 
| 
      
 318 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_interests/should_return_a_list_of_followed_interest.yml
         
     | 
| 
      
 319 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_me/should_get_the_current_informations.yml
         
     | 
| 
      
 320 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_me/should_restrict_to_requested_fields.yml
         
     | 
| 
      
 321 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_unfollow_interest/should_perform_the_call_and_return_an_error.yml
         
     | 
| 
      
 322 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_unfollow_user/should_complain_for_invalid_users.yml
         
     | 
| 
      
 323 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_unfollow_user/should_perform_the_call_and_return_true.yml
         
     | 
| 
      
 324 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_user/should_complain_for_non_existent_users.yml
         
     | 
| 
      
 325 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_user/should_get_the_current_informations.yml
         
     | 
| 
      
 326 
     | 
    
         
            +
            - spec/cassettes/Pinterest_Endpoints_Users/_user/should_restrict_to_requested_fields.yml
         
     | 
| 
      
 327 
     | 
    
         
            +
            - spec/pinterest/client_spec.rb
         
     | 
| 
      
 328 
     | 
    
         
            +
            - spec/pinterest/collection_spec.rb
         
     | 
| 
      
 329 
     | 
    
         
            +
            - spec/pinterest/endpoints/authentication_spec.rb
         
     | 
| 
      
 330 
     | 
    
         
            +
            - spec/pinterest/endpoints/boards_spec.rb
         
     | 
| 
      
 331 
     | 
    
         
            +
            - spec/pinterest/endpoints/pins_spec.rb
         
     | 
| 
      
 332 
     | 
    
         
            +
            - spec/pinterest/endpoints/users_spec.rb
         
     | 
| 
      
 333 
     | 
    
         
            +
            - spec/pinterest/errors_spec.rb
         
     | 
| 
      
 334 
     | 
    
         
            +
            - spec/pinterest/fixtures/first.jpg
         
     | 
| 
      
 335 
     | 
    
         
            +
            - spec/pinterest/models/board_spec.rb
         
     | 
| 
      
 336 
     | 
    
         
            +
            - spec/pinterest/models/entity_spec.rb
         
     | 
| 
      
 337 
     | 
    
         
            +
            - spec/pinterest/models/image_spec.rb
         
     | 
| 
      
 338 
     | 
    
         
            +
            - spec/pinterest/models/interest_spec.rb
         
     | 
| 
      
 339 
     | 
    
         
            +
            - spec/pinterest/models/pin_spec.rb
         
     | 
| 
      
 340 
     | 
    
         
            +
            - spec/pinterest/models/user_spec.rb
         
     | 
| 
      
 341 
     | 
    
         
            +
            - spec/spec_helper.rb
         
     |