adwords4r 12.1.0 → 13.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.
- data/ChangeLog.txt +3 -0
 - data/Rakefile +1 -1
 - data/examples/account_info.rb +2 -2
 - data/examples/create_all.rb +2 -2
 - data/examples/keyword_suggestions.rb +14 -8
 - data/examples/reports.rb +2 -2
 - data/lib/adwords4r/services.rb +2 -0
 - data/lib/adwords4r/v12/AccountServiceDriver.rb +3 -3
 - data/lib/adwords4r/v12/AdGroupServiceDriver.rb +8 -8
 - data/lib/adwords4r/v12/AdServiceDriver.rb +10 -10
 - data/lib/adwords4r/v12/CampaignServiceDriver.rb +11 -11
 - data/lib/adwords4r/v12/CriterionServiceDriver.rb +9 -9
 - data/lib/adwords4r/v12/InfoServiceDriver.rb +8 -8
 - data/lib/adwords4r/v12/KeywordToolServiceDriver.rb +2 -2
 - data/lib/adwords4r/v12/ReportServiceDriver.rb +7 -7
 - data/lib/adwords4r/v12/ReportServiceMappingRegistry.rb +2 -2
 - data/lib/adwords4r/v12/SiteSuggestionServiceDriver.rb +4 -4
 - data/lib/adwords4r/v12/TrafficEstimatorService.rb +1 -1
 - data/lib/adwords4r/v12/TrafficEstimatorServiceDriver.rb +4 -4
 - data/lib/adwords4r/v12/TrafficEstimatorServiceMappingRegistry.rb +2 -2
 - data/lib/adwords4r/v13/AccountService.rb +297 -0
 - data/lib/adwords4r/v13/AccountServiceDriver.rb +85 -0
 - data/lib/adwords4r/v13/AccountServiceMappingRegistry.rb +337 -0
 - data/lib/adwords4r/v13/AdGroupService.rb +277 -0
 - data/lib/adwords4r/v13/AdGroupServiceDriver.rb +117 -0
 - data/lib/adwords4r/v13/AdGroupServiceMappingRegistry.rb +296 -0
 - data/lib/adwords4r/v13/AdService.rb +846 -0
 - data/lib/adwords4r/v13/AdServiceDriver.rb +125 -0
 - data/lib/adwords4r/v13/AdServiceMappingRegistry.rb +859 -0
 - data/lib/adwords4r/v13/CampaignService.rb +562 -0
 - data/lib/adwords4r/v13/CampaignServiceDriver.rb +149 -0
 - data/lib/adwords4r/v13/CampaignServiceMappingRegistry.rb +696 -0
 - data/lib/adwords4r/v13/CriterionService.rb +484 -0
 - data/lib/adwords4r/v13/CriterionServiceDriver.rb +117 -0
 - data/lib/adwords4r/v13/CriterionServiceMappingRegistry.rb +519 -0
 - data/lib/adwords4r/v13/InfoService.rb +242 -0
 - data/lib/adwords4r/v13/InfoServiceDriver.rb +109 -0
 - data/lib/adwords4r/v13/InfoServiceMappingRegistry.rb +228 -0
 - data/lib/adwords4r/v13/KeywordToolService.rb +211 -0
 - data/lib/adwords4r/v13/KeywordToolServiceDriver.rb +61 -0
 - data/lib/adwords4r/v13/KeywordToolServiceMappingRegistry.rb +231 -0
 - data/lib/adwords4r/v13/ReportService.rb +322 -0
 - data/lib/adwords4r/v13/ReportServiceDriver.rb +101 -0
 - data/lib/adwords4r/v13/ReportServiceMappingRegistry.rb +298 -0
 - data/lib/adwords4r/v13/SiteSuggestionService.rb +242 -0
 - data/lib/adwords4r/v13/SiteSuggestionServiceDriver.rb +77 -0
 - data/lib/adwords4r/v13/SiteSuggestionServiceMappingRegistry.rb +271 -0
 - data/lib/adwords4r/v13/TrafficEstimatorService.rb +348 -0
 - data/lib/adwords4r/v13/TrafficEstimatorServiceDriver.rb +77 -0
 - data/lib/adwords4r/v13/TrafficEstimatorServiceMappingRegistry.rb +491 -0
 - data/setup.rb +0 -0
 - metadata +93 -54
 
    
        data/setup.rb
    CHANGED
    
    | 
         
            File without changes
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,33 +1,45 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
     | 
    
         
            -
            rubygems_version: 0.9.4
         
     | 
| 
       3 
     | 
    
         
            -
            specification_version: 1
         
     | 
| 
       4 
2 
     | 
    
         
             
            name: adwords4r
         
     | 
| 
       5 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       6 
     | 
    
         
            -
              version:  
     | 
| 
       7 
     | 
    
         
            -
            date: 2008-08-25 00:00:00 -04:00
         
     | 
| 
       8 
     | 
    
         
            -
            summary: Client library for the AdWords API.
         
     | 
| 
       9 
     | 
    
         
            -
            require_paths: 
         
     | 
| 
       10 
     | 
    
         
            -
            - lib
         
     | 
| 
       11 
     | 
    
         
            -
            email: jeffy@google.com
         
     | 
| 
       12 
     | 
    
         
            -
            homepage: http://rubyforge.org/projects/google4r/
         
     | 
| 
       13 
     | 
    
         
            -
            rubyforge_project: google4r
         
     | 
| 
       14 
     | 
    
         
            -
            description: Adwords4r provides an easy to use way to access the AdWords API in ruby.Currently the following AdWords API versions are supported:* V10* V11
         
     | 
| 
       15 
     | 
    
         
            -
            autorequire: adwords4r
         
     | 
| 
       16 
     | 
    
         
            -
            default_executable: 
         
     | 
| 
       17 
     | 
    
         
            -
            bindir: bin
         
     | 
| 
       18 
     | 
    
         
            -
            has_rdoc: false
         
     | 
| 
       19 
     | 
    
         
            -
            required_ruby_version: !ruby/object:Gem::Version::Requirement 
         
     | 
| 
       20 
     | 
    
         
            -
              requirements: 
         
     | 
| 
       21 
     | 
    
         
            -
              - - ">"
         
     | 
| 
       22 
     | 
    
         
            -
                - !ruby/object:Gem::Version 
         
     | 
| 
       23 
     | 
    
         
            -
                  version: 0.0.0
         
     | 
| 
       24 
     | 
    
         
            -
              version: 
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 13.0.0
         
     | 
| 
       25 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       26 
     | 
    
         
            -
            signing_key: 
         
     | 
| 
       27 
     | 
    
         
            -
            cert_chain: 
         
     | 
| 
       28 
     | 
    
         
            -
            post_install_message: 
         
     | 
| 
       29 
6 
     | 
    
         
             
            authors: 
         
     | 
| 
       30 
7 
     | 
    
         
             
            - Jeffrey Posnick, Patrick Chanezon, Ryan Leavengood
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire: adwords4r
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2008-10-22 00:00:00 -04:00
         
     | 
| 
      
 13 
     | 
    
         
            +
            default_executable: 
         
     | 
| 
      
 14 
     | 
    
         
            +
            dependencies: 
         
     | 
| 
      
 15 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 16 
     | 
    
         
            +
              name: soap4r
         
     | 
| 
      
 17 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 18 
     | 
    
         
            +
              version_requirement: 
         
     | 
| 
      
 19 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 20 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 21 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 23 
     | 
    
         
            +
                    version: 1.5.8
         
     | 
| 
      
 24 
     | 
    
         
            +
                version: 
         
     | 
| 
      
 25 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 26 
     | 
    
         
            +
              name: httpclient
         
     | 
| 
      
 27 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 28 
     | 
    
         
            +
              version_requirement: 
         
     | 
| 
      
 29 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 30 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 31 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: 2.1.2
         
     | 
| 
      
 34 
     | 
    
         
            +
                version: 
         
     | 
| 
      
 35 
     | 
    
         
            +
            description: Adwords4r provides an easy to use way to access the AdWords API in ruby.Currently the following AdWords API versions are supported:* V10* V11
         
     | 
| 
      
 36 
     | 
    
         
            +
            email: jeffy@google.com
         
     | 
| 
      
 37 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
       31 
43 
     | 
    
         
             
            files: 
         
     | 
| 
       32 
44 
     | 
    
         
             
            - Licence.txt
         
     | 
| 
       33 
45 
     | 
    
         
             
            - setup.rb
         
     | 
| 
         @@ -37,9 +49,36 @@ files: 
     | 
|
| 
       37 
49 
     | 
    
         
             
            - Readme.txt
         
     | 
| 
       38 
50 
     | 
    
         
             
            - adwords.properties
         
     | 
| 
       39 
51 
     | 
    
         
             
            - Rakefile
         
     | 
| 
       40 
     | 
    
         
            -
            - lib/adwords4r.rb
         
     | 
| 
       41 
     | 
    
         
            -
            - lib/adwords4r/ 
     | 
| 
       42 
     | 
    
         
            -
            - lib/adwords4r/ 
     | 
| 
      
 52 
     | 
    
         
            +
            - lib/adwords4r/v13/AccountService.rb
         
     | 
| 
      
 53 
     | 
    
         
            +
            - lib/adwords4r/v13/AccountServiceMappingRegistry.rb
         
     | 
| 
      
 54 
     | 
    
         
            +
            - lib/adwords4r/v13/AccountServiceDriver.rb
         
     | 
| 
      
 55 
     | 
    
         
            +
            - lib/adwords4r/v13/AdGroupService.rb
         
     | 
| 
      
 56 
     | 
    
         
            +
            - lib/adwords4r/v13/AdGroupServiceMappingRegistry.rb
         
     | 
| 
      
 57 
     | 
    
         
            +
            - lib/adwords4r/v13/AdGroupServiceDriver.rb
         
     | 
| 
      
 58 
     | 
    
         
            +
            - lib/adwords4r/v13/AdService.rb
         
     | 
| 
      
 59 
     | 
    
         
            +
            - lib/adwords4r/v13/AdServiceMappingRegistry.rb
         
     | 
| 
      
 60 
     | 
    
         
            +
            - lib/adwords4r/v13/AdServiceDriver.rb
         
     | 
| 
      
 61 
     | 
    
         
            +
            - lib/adwords4r/v13/InfoService.rb
         
     | 
| 
      
 62 
     | 
    
         
            +
            - lib/adwords4r/v13/CampaignService.rb
         
     | 
| 
      
 63 
     | 
    
         
            +
            - lib/adwords4r/v13/CampaignServiceMappingRegistry.rb
         
     | 
| 
      
 64 
     | 
    
         
            +
            - lib/adwords4r/v13/CampaignServiceDriver.rb
         
     | 
| 
      
 65 
     | 
    
         
            +
            - lib/adwords4r/v13/CriterionService.rb
         
     | 
| 
      
 66 
     | 
    
         
            +
            - lib/adwords4r/v13/CriterionServiceMappingRegistry.rb
         
     | 
| 
      
 67 
     | 
    
         
            +
            - lib/adwords4r/v13/CriterionServiceDriver.rb
         
     | 
| 
      
 68 
     | 
    
         
            +
            - lib/adwords4r/v13/InfoServiceMappingRegistry.rb
         
     | 
| 
      
 69 
     | 
    
         
            +
            - lib/adwords4r/v13/InfoServiceDriver.rb
         
     | 
| 
      
 70 
     | 
    
         
            +
            - lib/adwords4r/v13/KeywordToolService.rb
         
     | 
| 
      
 71 
     | 
    
         
            +
            - lib/adwords4r/v13/KeywordToolServiceMappingRegistry.rb
         
     | 
| 
      
 72 
     | 
    
         
            +
            - lib/adwords4r/v13/KeywordToolServiceDriver.rb
         
     | 
| 
      
 73 
     | 
    
         
            +
            - lib/adwords4r/v13/ReportService.rb
         
     | 
| 
      
 74 
     | 
    
         
            +
            - lib/adwords4r/v13/ReportServiceMappingRegistry.rb
         
     | 
| 
      
 75 
     | 
    
         
            +
            - lib/adwords4r/v13/ReportServiceDriver.rb
         
     | 
| 
      
 76 
     | 
    
         
            +
            - lib/adwords4r/v13/SiteSuggestionService.rb
         
     | 
| 
      
 77 
     | 
    
         
            +
            - lib/adwords4r/v13/SiteSuggestionServiceMappingRegistry.rb
         
     | 
| 
      
 78 
     | 
    
         
            +
            - lib/adwords4r/v13/SiteSuggestionServiceDriver.rb
         
     | 
| 
      
 79 
     | 
    
         
            +
            - lib/adwords4r/v13/TrafficEstimatorService.rb
         
     | 
| 
      
 80 
     | 
    
         
            +
            - lib/adwords4r/v13/TrafficEstimatorServiceMappingRegistry.rb
         
     | 
| 
      
 81 
     | 
    
         
            +
            - lib/adwords4r/v13/TrafficEstimatorServiceDriver.rb
         
     | 
| 
       43 
82 
     | 
    
         
             
            - lib/adwords4r/v12/AccountService.rb
         
     | 
| 
       44 
83 
     | 
    
         
             
            - lib/adwords4r/v12/CriterionService.rb
         
     | 
| 
       45 
84 
     | 
    
         
             
            - lib/adwords4r/v12/KeywordToolServiceDriver.rb
         
     | 
| 
         @@ -70,39 +109,39 @@ files: 
     | 
|
| 
       70 
109 
     | 
    
         
             
            - lib/adwords4r/v12/AdServiceMappingRegistry.rb
         
     | 
| 
       71 
110 
     | 
    
         
             
            - lib/adwords4r/v12/CampaignServiceDriver.rb
         
     | 
| 
       72 
111 
     | 
    
         
             
            - lib/adwords4r/v12/InfoService.rb
         
     | 
| 
      
 112 
     | 
    
         
            +
            - lib/adwords4r/credentials.rb
         
     | 
| 
      
 113 
     | 
    
         
            +
            - lib/adwords4r/services.rb
         
     | 
| 
      
 114 
     | 
    
         
            +
            - lib/adwords4r.rb
         
     | 
| 
       73 
115 
     | 
    
         
             
            - examples/reports.rb
         
     | 
| 
       74 
116 
     | 
    
         
             
            - examples/keyword_suggestions.rb
         
     | 
| 
       75 
117 
     | 
    
         
             
            - examples/account_info.rb
         
     | 
| 
       76 
118 
     | 
    
         
             
            - examples/create_all.rb
         
     | 
| 
       77 
     | 
    
         
            -
             
     | 
| 
       78 
     | 
    
         
            -
             
     | 
| 
      
 119 
     | 
    
         
            +
            has_rdoc: false
         
     | 
| 
      
 120 
     | 
    
         
            +
            homepage: http://rubyforge.org/projects/google4r/
         
     | 
| 
      
 121 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
       79 
122 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       80 
123 
     | 
    
         | 
| 
       81 
     | 
    
         
            -
             
     | 
| 
       82 
     | 
    
         
            -
             
     | 
| 
       83 
     | 
    
         
            -
             
     | 
| 
       84 
     | 
    
         
            -
             
     | 
| 
       85 
     | 
    
         
            -
             
     | 
| 
       86 
     | 
    
         
            -
             
     | 
| 
      
 124 
     | 
    
         
            +
            require_paths: 
         
     | 
| 
      
 125 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 126 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 127 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 128 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 129 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 130 
     | 
    
         
            +
                  version: "0"
         
     | 
| 
      
 131 
     | 
    
         
            +
              version: 
         
     | 
| 
      
 132 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 133 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 134 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 135 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 136 
     | 
    
         
            +
                  version: "0"
         
     | 
| 
      
 137 
     | 
    
         
            +
              version: 
         
     | 
| 
       87 
138 
     | 
    
         
             
            requirements: 
         
     | 
| 
       88 
139 
     | 
    
         
             
            - soap4r v1.5.8 or greater
         
     | 
| 
       89 
140 
     | 
    
         
             
            - httpclient v2.1.2 or greater
         
     | 
| 
       90 
     | 
    
         
            -
             
     | 
| 
       91 
     | 
    
         
            -
             
     | 
| 
       92 
     | 
    
         
            -
             
     | 
| 
       93 
     | 
    
         
            -
             
     | 
| 
       94 
     | 
    
         
            -
             
     | 
| 
       95 
     | 
    
         
            -
             
     | 
| 
       96 
     | 
    
         
            -
             
     | 
| 
       97 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
         
     | 
| 
       98 
     | 
    
         
            -
                    version: 1.5.8
         
     | 
| 
       99 
     | 
    
         
            -
                version: 
         
     | 
| 
       100 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       101 
     | 
    
         
            -
              name: httpclient
         
     | 
| 
       102 
     | 
    
         
            -
              version_requirement: 
         
     | 
| 
       103 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Version::Requirement 
         
     | 
| 
       104 
     | 
    
         
            -
                requirements: 
         
     | 
| 
       105 
     | 
    
         
            -
                - - ">="
         
     | 
| 
       106 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
         
     | 
| 
       107 
     | 
    
         
            -
                    version: 2.1.2
         
     | 
| 
       108 
     | 
    
         
            -
                version: 
         
     | 
| 
      
 141 
     | 
    
         
            +
            rubyforge_project: google4r
         
     | 
| 
      
 142 
     | 
    
         
            +
            rubygems_version: 1.2.0
         
     | 
| 
      
 143 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 144 
     | 
    
         
            +
            specification_version: 2
         
     | 
| 
      
 145 
     | 
    
         
            +
            summary: Client library for the AdWords API.
         
     | 
| 
      
 146 
     | 
    
         
            +
            test_files: []
         
     | 
| 
      
 147 
     | 
    
         
            +
             
     |