rails-pinterest 0.1.8 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f19a1984705a1cc3b658b73a1a040205c7cbee861eab72d695485f3868958e74
4
- data.tar.gz: d5a621b081c006cc14c9b8c06bda35eb02e460f9237bcfcdf32d031c0de67e38
3
+ metadata.gz: 6421681164c0404a35136922cc2c755936f6ed8c3356fb1bc3d34cfce7307e10
4
+ data.tar.gz: f4030183d7657ea64ad908efeb7c044862ccc9dd6391ae4e53d52efa3f429500
5
5
  SHA512:
6
- metadata.gz: f0edcff37880e66307c8642b66a403f05f3786925156717b324e619119fe35a630fb25c609b1b4e997bbed32008ed7cba739baf5562eb86a984669a8d48825e5
7
- data.tar.gz: 9f9ff349eda63a7293d14531d49c78256d5df55bcb687267eda29f37034068f69063389e5737d8361ccc863162b0308bab50fc90d0cafe7c497141f6e631ce52
6
+ metadata.gz: 72aa68a0668507d90424b4275c2f16cb82a73e7444325009ea4de237e2673258b518872b08a974909581dc47eb8850b4ab0a324d1a44a565b77e7fd8b91e121b
7
+ data.tar.gz: f737c5214cec1cdc427ddfba47b05a19c51d11221141c374e5d01b4fe07eb1c24fe4172c49982887f3d7ff250395b20170984c7638040337da21cf7ac423ab76
data/CHANGELOG.md CHANGED
@@ -29,4 +29,10 @@
29
29
  - Update URL of keyword metrics
30
30
 
31
31
  ## [0.1.8] - 2024-02-24
32
- - Bump version for changes in ReadMe.
32
+ - Bump version for changes in ReadMe.
33
+
34
+ ## [0.1.9] - 2024-02-24
35
+ - Correct the parameters for keyword metrics, get_country_keyword_metrics
36
+
37
+ ## [0.2.0] - 2024-02-25
38
+ - Correct the query parameters for keyword trends
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails-pinterest (0.1.8)
4
+ rails-pinterest (0.2.0)
5
5
  faraday (>= 1)
6
6
  faraday-multipart (>= 1)
7
7
 
data/README.md CHANGED
@@ -245,7 +245,7 @@ To install this gem onto your local machine, run `bundle exec rake install`.
245
245
 
246
246
  ## Release
247
247
 
248
- Update the version number in `version.rb`, update `CHANGELOG.md`, run `bundle install` to update Gemfile.lock, run `gem build rails-pinterest.gemspec`, and then run `sudo bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org) by `gem push rails-pinterest-{number}.gem`.
248
+ Update the version number in `version.rb`, update `CHANGELOG.md`, run `bundle install` to update Gemfile.lock, delete previous `rails-pinterest-{number}.gem`, run `gem build rails-pinterest.gemspec`, `commit` the changes,and then run `sudo bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org) by `gem push rails-pinterest-{number}.gem`.
249
249
 
250
250
  ## Contributing
251
251
 
@@ -16,15 +16,21 @@ module Pinterest
16
16
  @client.patch(path: "/ad_accounts/#{ad_account_id}/keywords", parameters: parameters)
17
17
  end
18
18
 
19
- def get_country_keyword_metrics(ad_account_id:, parameters: {})
20
- @client.get(path: "/ad_accounts/#{ad_account_id}/keywords/metrics", parameters: parameters)
19
+ def get_country_keyword_metrics(ad_account_id:, country_code:, keywords:, parameters: {})
20
+ @client.get(path: "/ad_accounts/#{ad_account_id}/keywords/metrics?country_code=#{country_code}&keywords=#{keywords}", parameters: parameters)
21
21
  end
22
22
 
23
23
  # Region list: "US" "CA" "DE" "FR" "ES" "IT" "DE+AT+CH" "GB+IE" "IT+ES+PT+GR+MT" "PL+RO+HU+SK+CZ" "SE+DK+FI+NO" "NL+BE+LU" "AR" "BR" "CO" "MX" "MX+AR+CO+CL" "AU+NZ"
24
24
  # trend_type: "growing" "monthly" "yearly" "seasonal"
25
+ # interest: "animals" "architecture" "art" "beauty" "childrens_fashion" "design" "diy_and_crafts" "education" "electronics" "entertainment" "event_planning" "finance"
26
+ # "food_and_drinks" "gardening" "health" "home_decor" "mens_fashion" "parenting" "quotes" "sport" "travel" "vehicles" "wedding" "womens_fashion"
27
+ # genders: "female" "male" "unknown"
28
+ # ages: "18-24" "25-34" "35-44" "45-49" "50-54" "55-64" "65+"
29
+ # normalize_against_group (boolean): false (default)
30
+ # limit [1-50]
25
31
  # https://developer.pinterest.com/docs/api/v5/#operation/trending_keywords/list
26
- def list_trending_keywords(region:, trend_type:, parameters: {})
27
- @client.get(path: "/trends/keywords/#{region}/top/#{trend_type}", parameters: parameters)
32
+ def list_trending_keywords(region:, trend_type:, interest:, gender:, ages:, normalize_against_group:, limit:, parameters: {})
33
+ @client.get(path: "/trends/keywords/#{region}/top/#{trend_type}?interest=#{interest}&gender=#{gender}&ages=#{ages}&normalize_against_group=#{normalize_against_group}&limit=#{limit}", parameters: parameters)
28
34
  end
29
35
  end
30
36
  end
@@ -1,3 +1,3 @@
1
1
  module Pinterest
2
- VERSION = "0.1.8"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-pinterest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Donald Lee
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday