similarweb_rapidapi 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: b528b61f45d4014bc20ec7370800952cc08c295847ef524550bb80adfdf40193
4
- data.tar.gz: 4f575eab0486ec20226b3a1dd218cd1065e63a09505e4b442eb9b7181e1a5998
3
+ metadata.gz: b2c0468f76e70ed29f2f7e5f94517038ea6cb2dca67248642fc9eb418d322ca4
4
+ data.tar.gz: f3fce8a07d4c0d8ed98b2f992ec38e470725afa601e8f0b5abbcb4ee3023b93a
5
5
  SHA512:
6
- metadata.gz: 10a358f73c2eeb5823314531f5000676d5d2e811b9082cd635497baa2ded84a252538e892aac880d873d78410b3242ca874f7e22976a2bbb84322660f61a2abc
7
- data.tar.gz: 51a40f58bb7c96b69c9b891ef89f3021bb37fac31bbdf3e1f466d7bee2f0fbc3ed0a353357dd127b586784ab31697239ee6cafd56a78605161abda2911387d9b
6
+ metadata.gz: 8e3f091824da7bb202c19271c5f558ac59ab89a6c6f838434bd717624c71cc2be4f988d15dfe38807ef74e921b92c0b05da9552119cb9077ca2f2900db433d06
7
+ data.tar.gz: bed00c6656cb2e04be11916113b5c4d294c7921352ea3d60b4987e42141d608b3ade8e805fc465a0985acf227d5b8d2ed36ac99f8efb3bffdb546978680712cb
data/README.md CHANGED
@@ -37,24 +37,12 @@ bundle
37
37
 
38
38
  ## Usage
39
39
 
40
- To start using this gem, you will first need to set up your API key:
41
-
42
- ```ruby
43
- require 'similarweb_rapidapi'
44
-
45
- SimilarwebRapidapi.configure do |config|
46
- config.api_key = 'YOUR_SIMILAR_WEB_API_KEY'
47
- end
48
- ```
49
-
50
- Then, you can use the API methods like so:
51
-
52
40
  ```ruby
53
- result = SimilarwebRapidapi.get_website_overview('example.com')
54
- puts result
41
+ @api_client = SimilarwebRapidapi::ApiClient.new RAPIDAPI_KEY
42
+ response = @api_client.get_basic_data_from_domain("google.com")
55
43
  ```
56
44
 
57
- More methods and usage examples will be available in our [Wiki](LINK_TO_YOUR_WIKI).
45
+ See `spec/similarweb_rapidapi_spec.rb` for more methods and usage examples.
58
46
 
59
47
  ## License
60
48
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SimilarwebRapidapi
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: similarweb_rapidapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - letsscrape