From 8ec807841cd7e97fadda877561989bb5580b66b7 Mon Sep 17 00:00:00 2001 From: Dan Milne Date: Mon, 9 Sep 2019 11:19:41 +1000 Subject: [PATCH] Update docs with new name --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5defcc0..8a071ce 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ -# AwsPaa +# Paapi -`aws_paa` is a slim wrapper around [Amazon's Product Advertising API 5.0](https://webservices.amazon.com/paapi5/documentation/). +`paapi` is a slim wrapper around [Amazon's Product Advertising API 5.0](https://webservices.amazon.com/paapi5/documentation/). ## Installation Add this line to your application's Gemfile: ```ruby -gem 'aws_paa' +gem 'paapi' ``` And then execute: @@ -16,14 +16,14 @@ And then execute: Or install it yourself as: - $ gem install aws_paa + $ gem install paapi ## Usage ```ruby -require 'aws_paa' +require 'paapi' -client = AwsPaa::Client.new(access_key: ENV['access_key'], secret_key: ENV['secret_key'], marketplace: :au, partner_tag: ENV['partner_tag']) +client = Paapi::Client.new(access_key: ENV['access_key'], secret_key: ENV['secret_key'], marketplace: :au, partner_tag: ENV['partner_tag']) gi = client.get_items(item_ids: '1857231384') @@ -40,7 +40,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To ## Contributing -Bug reports and pull requests are welcome on GitHub at https://github.com/dkam/aws_paa. +Bug reports and pull requests are welcome on GitHub at https://github.com/dkam/paapi. ## License