naver-searchad-api 0.0.3 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a19cf6a5d7a8d59dc572e01dda296ecb677ed70c
4
- data.tar.gz: f9fbb2ec5744f699c410c0858d37d1bf2c6f4d74
3
+ metadata.gz: f8a2c4603328a963fa278a5f8d94482d003c112f
4
+ data.tar.gz: a25819a0b5d0ece492c6b5be61b52f86995401d7
5
5
  SHA512:
6
- metadata.gz: 6922883c45cb025b7bd057e6b9bb997e585b7fa87cb111311d7e0499554e82ad026a569aa180f8cb5d155b64c42c212b50ea6ed57adff54acfae371bac2ad98d
7
- data.tar.gz: 7a580a1f0cc86684094f0870f7857cc708c9be6259042c92e361d2c75b9d3caf5611ecaff11bcb0dcfa2d9c0b3191c739f601daaaf7d5908c37f7432ec093c0f
6
+ metadata.gz: 177d37cd338d82d3a8aa915aef548660502ffe047c099d0df7a41c537ebea85936bc8d50d4765232668f5c29cd28a807d1bcde544e1a2a47e45a05acda7ed952
7
+ data.tar.gz: 05307676ee81d332f74e33739ef2de713e182a0abd1c8400101724d1080ebf8d95fa4ac82f87a2e565f5cf211fb63fd7c2858b49df3a7522dfd765b61f15343f
@@ -10,13 +10,13 @@ module Naver
10
10
  super('https://api.naver.com/', 'ncc/')
11
11
  end
12
12
 
13
- def list(ad_ids, options: nil, &block)
13
+ def list_ads(ad_ids, options: nil, &block)
14
14
  command = make_command(:get, 'ads', options)
15
15
  command.query['ids'] = ad_ids.join(',')
16
16
  execute_command(command, &block)
17
17
  end
18
18
 
19
- def list_by_adgroup_id(adgroup_id, options: nil, &block)
19
+ def list_ads_by_adgroup_id(adgroup_id, options: nil, &block)
20
20
  command = make_command(:get, 'ads', options)
21
21
  command.query['nccAdgroupId'] = adgroup_id
22
22
  execute_command(command, &block)
@@ -1,7 +1,7 @@
1
1
  module Naver
2
2
  module Searchad
3
3
  module Api
4
- VERSION = '0.0.3'
4
+ VERSION = '0.0.4'
5
5
 
6
6
  OS_VERSION = begin
7
7
  if RUBY_PLATFORM =~ /mswin|win32|mingw|bccwin|cygwin/
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: naver-searchad-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Min Kim
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-08-01 00:00:00.000000000 Z
11
+ date: 2017-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpclient