impact_radius_api 0.1.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 +14 -0
 - data/.rspec +2 -0
 - data/Gemfile +4 -0
 - data/LICENSE.txt +22 -0
 - data/README.md +99 -0
 - data/Rakefile +2 -0
 - data/impact_radius_api.gemspec +32 -0
 - data/lib/impact_radius_api.rb +34 -0
 - data/lib/impact_radius_api/api_resource.rb +90 -0
 - data/lib/impact_radius_api/api_response.rb +40 -0
 - data/lib/impact_radius_api/errors/argument_error.rb +4 -0
 - data/lib/impact_radius_api/errors/authentication_error.rb +4 -0
 - data/lib/impact_radius_api/errors/error.rb +15 -0
 - data/lib/impact_radius_api/errors/invalid_request_error.rb +4 -0
 - data/lib/impact_radius_api/errors/not_implemented_error.rb +4 -0
 - data/lib/impact_radius_api/mediapartners.rb +27 -0
 - data/lib/impact_radius_api/version.rb +3 -0
 - data/spec/impact_radius_api_spec.rb +834 -0
 - data/spec/spec_helper.rb +94 -0
 - metadata +232 -0
 
    
        data/spec/spec_helper.rb
    ADDED
    
    | 
         @@ -0,0 +1,94 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'rubygems'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'bundler/setup'
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'webmock/rspec'
         
     | 
| 
      
 4 
     | 
    
         
            +
            # our gem
         
     | 
| 
      
 5 
     | 
    
         
            +
            require 'impact_radius_api'
         
     | 
| 
      
 6 
     | 
    
         
            +
            # This file was generated by the `rspec --init` command. Conventionally, all
         
     | 
| 
      
 7 
     | 
    
         
            +
            # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
         
     | 
| 
      
 8 
     | 
    
         
            +
            # The generated `.rspec` file contains `--require spec_helper` which will cause this
         
     | 
| 
      
 9 
     | 
    
         
            +
            # file to always be loaded, without a need to explicitly require it in any files.
         
     | 
| 
      
 10 
     | 
    
         
            +
            #
         
     | 
| 
      
 11 
     | 
    
         
            +
            # Given that it is always loaded, you are encouraged to keep this file as
         
     | 
| 
      
 12 
     | 
    
         
            +
            # light-weight as possible. Requiring heavyweight dependencies from this file
         
     | 
| 
      
 13 
     | 
    
         
            +
            # will add to the boot time of your test suite on EVERY test run, even for an
         
     | 
| 
      
 14 
     | 
    
         
            +
            # individual file that may not need all of that loaded. Instead, consider making
         
     | 
| 
      
 15 
     | 
    
         
            +
            # a separate helper file that requires the additional dependencies and performs
         
     | 
| 
      
 16 
     | 
    
         
            +
            # the additional setup, and require it from the spec files that actually need it.
         
     | 
| 
      
 17 
     | 
    
         
            +
            #
         
     | 
| 
      
 18 
     | 
    
         
            +
            # The `.rspec` file also contains a few flags that are not defaults but that
         
     | 
| 
      
 19 
     | 
    
         
            +
            # users commonly want.
         
     | 
| 
      
 20 
     | 
    
         
            +
            #
         
     | 
| 
      
 21 
     | 
    
         
            +
            # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
         
     | 
| 
      
 22 
     | 
    
         
            +
            RSpec.configure do |config|
         
     | 
| 
      
 23 
     | 
    
         
            +
              # rspec-expectations config goes here. You can use an alternate
         
     | 
| 
      
 24 
     | 
    
         
            +
              # assertion/expectation library such as wrong or the stdlib/minitest
         
     | 
| 
      
 25 
     | 
    
         
            +
              # assertions if you prefer.
         
     | 
| 
      
 26 
     | 
    
         
            +
              config.expect_with :rspec do |expectations|
         
     | 
| 
      
 27 
     | 
    
         
            +
                # This option will default to `true` in RSpec 4. It makes the `description`
         
     | 
| 
      
 28 
     | 
    
         
            +
                # and `failure_message` of custom matchers include text for helper methods
         
     | 
| 
      
 29 
     | 
    
         
            +
                # defined using `chain`, e.g.:
         
     | 
| 
      
 30 
     | 
    
         
            +
                # be_bigger_than(2).and_smaller_than(4).description
         
     | 
| 
      
 31 
     | 
    
         
            +
                #   # => "be bigger than 2 and smaller than 4"
         
     | 
| 
      
 32 
     | 
    
         
            +
                # ...rather than:
         
     | 
| 
      
 33 
     | 
    
         
            +
                #   # => "be bigger than 2"
         
     | 
| 
      
 34 
     | 
    
         
            +
                expectations.include_chain_clauses_in_custom_matcher_descriptions = true
         
     | 
| 
      
 35 
     | 
    
         
            +
              end
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
              # rspec-mocks config goes here. You can use an alternate test double
         
     | 
| 
      
 38 
     | 
    
         
            +
              # library (such as bogus or mocha) by changing the `mock_with` option here.
         
     | 
| 
      
 39 
     | 
    
         
            +
              config.mock_with :rspec do |mocks|
         
     | 
| 
      
 40 
     | 
    
         
            +
                # Prevents you from mocking or stubbing a method that does not exist on
         
     | 
| 
      
 41 
     | 
    
         
            +
                # a real object. This is generally recommended, and will default to
         
     | 
| 
      
 42 
     | 
    
         
            +
                # `true` in RSpec 4.
         
     | 
| 
      
 43 
     | 
    
         
            +
                mocks.verify_partial_doubles = true
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
            # The settings below are suggested to provide a good initial experience
         
     | 
| 
      
 47 
     | 
    
         
            +
            # with RSpec, but feel free to customize to your heart's content.
         
     | 
| 
      
 48 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 49 
     | 
    
         
            +
              # These two settings work together to allow you to limit a spec run
         
     | 
| 
      
 50 
     | 
    
         
            +
              # to individual examples or groups you care about by tagging them with
         
     | 
| 
      
 51 
     | 
    
         
            +
              # `:focus` metadata. When nothing is tagged with `:focus`, all examples
         
     | 
| 
      
 52 
     | 
    
         
            +
              # get run.
         
     | 
| 
      
 53 
     | 
    
         
            +
              config.filter_run :focus
         
     | 
| 
      
 54 
     | 
    
         
            +
              config.run_all_when_everything_filtered = true
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
              # Limits the available syntax to the non-monkey patched syntax that is recommended.
         
     | 
| 
      
 57 
     | 
    
         
            +
              # For more details, see:
         
     | 
| 
      
 58 
     | 
    
         
            +
              #   - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
         
     | 
| 
      
 59 
     | 
    
         
            +
              #   - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
         
     | 
| 
      
 60 
     | 
    
         
            +
              #   - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
         
     | 
| 
      
 61 
     | 
    
         
            +
              config.disable_monkey_patching!
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
              # This setting enables warnings. It's recommended, but in some cases may
         
     | 
| 
      
 64 
     | 
    
         
            +
              # be too noisy due to issues in dependencies.
         
     | 
| 
      
 65 
     | 
    
         
            +
              config.warnings = true
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
              # Many RSpec users commonly either run the entire suite or an individual
         
     | 
| 
      
 68 
     | 
    
         
            +
              # file, and it's useful to allow more verbose output when running an
         
     | 
| 
      
 69 
     | 
    
         
            +
              # individual spec file.
         
     | 
| 
      
 70 
     | 
    
         
            +
              if config.files_to_run.one?
         
     | 
| 
      
 71 
     | 
    
         
            +
                # Use the documentation formatter for detailed output,
         
     | 
| 
      
 72 
     | 
    
         
            +
                # unless a formatter has already been configured
         
     | 
| 
      
 73 
     | 
    
         
            +
                # (e.g. via a command-line flag).
         
     | 
| 
      
 74 
     | 
    
         
            +
                config.default_formatter = 'doc'
         
     | 
| 
      
 75 
     | 
    
         
            +
              end
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
              # Print the 10 slowest examples and example groups at the
         
     | 
| 
      
 78 
     | 
    
         
            +
              # end of the spec run, to help surface which specs are running
         
     | 
| 
      
 79 
     | 
    
         
            +
              # particularly slow.
         
     | 
| 
      
 80 
     | 
    
         
            +
              config.profile_examples = 10
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
              # Run specs in random order to surface order dependencies. If you find an
         
     | 
| 
      
 83 
     | 
    
         
            +
              # order dependency and want to debug it, you can fix the order by providing
         
     | 
| 
      
 84 
     | 
    
         
            +
              # the seed, which is printed after each run.
         
     | 
| 
      
 85 
     | 
    
         
            +
              #     --seed 1234
         
     | 
| 
      
 86 
     | 
    
         
            +
              config.order = :random
         
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
              # Seed global randomization in this process using the `--seed` CLI option.
         
     | 
| 
      
 89 
     | 
    
         
            +
              # Setting this allows you to use `--seed` to deterministically reproduce
         
     | 
| 
      
 90 
     | 
    
         
            +
              # test failures related to randomization by passing the same `--seed` value
         
     | 
| 
      
 91 
     | 
    
         
            +
              # as the one that triggered the failure.
         
     | 
| 
      
 92 
     | 
    
         
            +
              Kernel.srand config.seed
         
     | 
| 
      
 93 
     | 
    
         
            +
            =end
         
     | 
| 
      
 94 
     | 
    
         
            +
            end
         
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,232 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: impact_radius_api
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.0
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 7 
     | 
    
         
            +
            - Kirk Jarvis
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2017-03-13 00:00:00.000000000 Z
         
     | 
| 
      
 12 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 13 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 14 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 15 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 16 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 17 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 19 
     | 
    
         
            +
                    version: '1.7'
         
     | 
| 
      
 20 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 21 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 22 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 23 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 24 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 25 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 26 
     | 
    
         
            +
                    version: '1.7'
         
     | 
| 
      
 27 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 28 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 29 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 30 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 31 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 34 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 35 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 36 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 37 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 38 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 39 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 40 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 41 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 42 
     | 
    
         
            +
              name: webmock
         
     | 
| 
      
 43 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 44 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 45 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 47 
     | 
    
         
            +
                    version: 1.20.0
         
     | 
| 
      
 48 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 49 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 50 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 51 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 52 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 53 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 54 
     | 
    
         
            +
                    version: 1.20.0
         
     | 
| 
      
 55 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 56 
     | 
    
         
            +
              name: rspec
         
     | 
| 
      
 57 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 58 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 59 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 60 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 61 
     | 
    
         
            +
                    version: 3.1.0
         
     | 
| 
      
 62 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 63 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 64 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 65 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 66 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 68 
     | 
    
         
            +
                    version: 3.1.0
         
     | 
| 
      
 69 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 70 
     | 
    
         
            +
              name: pry
         
     | 
| 
      
 71 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 72 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 73 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 74 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 75 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 76 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 77 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 78 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 79 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 80 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 81 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 82 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 83 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 84 
     | 
    
         
            +
              name: addressable
         
     | 
| 
      
 85 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 86 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 87 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 88 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 89 
     | 
    
         
            +
                    version: '2.3'
         
     | 
| 
      
 90 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 91 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 92 
     | 
    
         
            +
                    version: 2.3.6
         
     | 
| 
      
 93 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 94 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 95 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 96 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 97 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 98 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 99 
     | 
    
         
            +
                    version: '2.3'
         
     | 
| 
      
 100 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 101 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 102 
     | 
    
         
            +
                    version: 2.3.6
         
     | 
| 
      
 103 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 104 
     | 
    
         
            +
              name: htmlentities
         
     | 
| 
      
 105 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 106 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 107 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 108 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 109 
     | 
    
         
            +
                    version: '4.3'
         
     | 
| 
      
 110 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 111 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 112 
     | 
    
         
            +
                    version: 4.3.2
         
     | 
| 
      
 113 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 114 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 115 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 116 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 117 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 118 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 119 
     | 
    
         
            +
                    version: '4.3'
         
     | 
| 
      
 120 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 121 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 122 
     | 
    
         
            +
                    version: 4.3.2
         
     | 
| 
      
 123 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 124 
     | 
    
         
            +
              name: httparty
         
     | 
| 
      
 125 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 126 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 127 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 128 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 129 
     | 
    
         
            +
                    version: '0.13'
         
     | 
| 
      
 130 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 131 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 132 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 133 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 134 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 135 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 136 
     | 
    
         
            +
                    version: '0.13'
         
     | 
| 
      
 137 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 138 
     | 
    
         
            +
              name: json
         
     | 
| 
      
 139 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 140 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 141 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 142 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 143 
     | 
    
         
            +
                    version: '1.8'
         
     | 
| 
      
 144 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 145 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 146 
     | 
    
         
            +
                    version: 1.8.1
         
     | 
| 
      
 147 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 148 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 149 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 150 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 151 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 152 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 153 
     | 
    
         
            +
                    version: '1.8'
         
     | 
| 
      
 154 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 155 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 156 
     | 
    
         
            +
                    version: 1.8.1
         
     | 
| 
      
 157 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 158 
     | 
    
         
            +
              name: recursive-open-struct
         
     | 
| 
      
 159 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 160 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 161 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 162 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 163 
     | 
    
         
            +
                    version: '0.5'
         
     | 
| 
      
 164 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 165 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 166 
     | 
    
         
            +
                    version: 0.5.0
         
     | 
| 
      
 167 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 168 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 169 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 170 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 171 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 172 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 173 
     | 
    
         
            +
                    version: '0.5'
         
     | 
| 
      
 174 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 175 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 176 
     | 
    
         
            +
                    version: 0.5.0
         
     | 
| 
      
 177 
     | 
    
         
            +
            description: Ruby wrapper for Impact Radius API (http://dev.impactradius.com/display/api/Home).  Media
         
     | 
| 
      
 178 
     | 
    
         
            +
              Partner Resources (http://dev.impactradius.com/display/api/Media+Partner+Resources)
         
     | 
| 
      
 179 
     | 
    
         
            +
              and part of (http://dev.impactradius.com/display/api/Product+Data+System+Media+Partner+Resources)
         
     | 
| 
      
 180 
     | 
    
         
            +
              is curently supported.
         
     | 
| 
      
 181 
     | 
    
         
            +
            email:
         
     | 
| 
      
 182 
     | 
    
         
            +
            - zuuzlo@yahoo.com
         
     | 
| 
      
 183 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 184 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 185 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 186 
     | 
    
         
            +
            files:
         
     | 
| 
      
 187 
     | 
    
         
            +
            - ".gitignore"
         
     | 
| 
      
 188 
     | 
    
         
            +
            - ".rspec"
         
     | 
| 
      
 189 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 190 
     | 
    
         
            +
            - LICENSE.txt
         
     | 
| 
      
 191 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 192 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 193 
     | 
    
         
            +
            - impact_radius_api.gemspec
         
     | 
| 
      
 194 
     | 
    
         
            +
            - lib/impact_radius_api.rb
         
     | 
| 
      
 195 
     | 
    
         
            +
            - lib/impact_radius_api/api_resource.rb
         
     | 
| 
      
 196 
     | 
    
         
            +
            - lib/impact_radius_api/api_response.rb
         
     | 
| 
      
 197 
     | 
    
         
            +
            - lib/impact_radius_api/errors/argument_error.rb
         
     | 
| 
      
 198 
     | 
    
         
            +
            - lib/impact_radius_api/errors/authentication_error.rb
         
     | 
| 
      
 199 
     | 
    
         
            +
            - lib/impact_radius_api/errors/error.rb
         
     | 
| 
      
 200 
     | 
    
         
            +
            - lib/impact_radius_api/errors/invalid_request_error.rb
         
     | 
| 
      
 201 
     | 
    
         
            +
            - lib/impact_radius_api/errors/not_implemented_error.rb
         
     | 
| 
      
 202 
     | 
    
         
            +
            - lib/impact_radius_api/mediapartners.rb
         
     | 
| 
      
 203 
     | 
    
         
            +
            - lib/impact_radius_api/version.rb
         
     | 
| 
      
 204 
     | 
    
         
            +
            - spec/impact_radius_api_spec.rb
         
     | 
| 
      
 205 
     | 
    
         
            +
            - spec/spec_helper.rb
         
     | 
| 
      
 206 
     | 
    
         
            +
            homepage: ''
         
     | 
| 
      
 207 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 208 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 209 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 210 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 211 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 212 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 213 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 214 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 215 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 216 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 217 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 218 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 219 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 220 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 221 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 222 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 223 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 224 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 225 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 226 
     | 
    
         
            +
            rubygems_version: 2.4.6
         
     | 
| 
      
 227 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 228 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 229 
     | 
    
         
            +
            summary: Ruby wrapper for Impact Radius API
         
     | 
| 
      
 230 
     | 
    
         
            +
            test_files:
         
     | 
| 
      
 231 
     | 
    
         
            +
            - spec/impact_radius_api_spec.rb
         
     | 
| 
      
 232 
     | 
    
         
            +
            - spec/spec_helper.rb
         
     |