yooda-client 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +46 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/yooda.rb +23 -0
- data/lib/yooda/api_error.rb +19 -0
- data/lib/yooda/client.rb +66 -0
- data/lib/yooda/domains.rb +32 -0
- data/lib/yooda/keywords.rb +32 -0
- data/lib/yooda/subscriptions.rb +19 -0
- data/lib/yooda/version.rb +22 -0
- data/yooda-client.gemspec +42 -0
- metadata +161 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: cfae9f593db9d56d3c012cc2a66fd66deb31d04b
|
4
|
+
data.tar.gz: 7b46bef1fdf213de65b3697b1c70f009b1c132e2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d606cd9aefa35477af1fe7bb28d858bf5079a5354f6ef9ed2b0199ebe121a6f32bf7f996b929e839eb22a409b0c0beaa95c83ca8e613801b4cc4f9c33f0186e0
|
7
|
+
data.tar.gz: 94bb33037dad2e80c06fbbbc0c29b5ea5ec072774c07f85d49472963d1e5f2a03fc12cec945b342364e1f6fd09000d7bb2da0cb987169d706630c07a019d98d7
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at oros.ogmius@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
yooda-client (0.1.2)
|
5
|
+
faraday (~> 0.13)
|
6
|
+
faraday_middleware
|
7
|
+
hashie (~> 3.5)
|
8
|
+
multi_json (~> 1.12)
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
diff-lcs (1.3)
|
14
|
+
faraday (0.13.1)
|
15
|
+
multipart-post (>= 1.2, < 3)
|
16
|
+
faraday_middleware (0.12.2)
|
17
|
+
faraday (>= 0.7.4, < 1.0)
|
18
|
+
hashie (3.5.6)
|
19
|
+
multi_json (1.12.2)
|
20
|
+
multipart-post (2.0.0)
|
21
|
+
rake (10.5.0)
|
22
|
+
rspec (3.7.0)
|
23
|
+
rspec-core (~> 3.7.0)
|
24
|
+
rspec-expectations (~> 3.7.0)
|
25
|
+
rspec-mocks (~> 3.7.0)
|
26
|
+
rspec-core (3.7.0)
|
27
|
+
rspec-support (~> 3.7.0)
|
28
|
+
rspec-expectations (3.7.0)
|
29
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
+
rspec-support (~> 3.7.0)
|
31
|
+
rspec-mocks (3.7.0)
|
32
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
+
rspec-support (~> 3.7.0)
|
34
|
+
rspec-support (3.7.0)
|
35
|
+
|
36
|
+
PLATFORMS
|
37
|
+
ruby
|
38
|
+
|
39
|
+
DEPENDENCIES
|
40
|
+
bundler (~> 1.16)
|
41
|
+
rake (~> 10.0)
|
42
|
+
rspec (~> 3.0)
|
43
|
+
yooda-client!
|
44
|
+
|
45
|
+
BUNDLED WITH
|
46
|
+
1.16.0
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Bastien Montois
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# Yooda::Client
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/yooda/client`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'yooda-client'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install yooda-client
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `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).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/yooda-client. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the Yooda::Client project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/yooda-client/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "yooda/client"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/lib/yooda.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'faraday'
|
2
|
+
require 'faraday_middleware'
|
3
|
+
|
4
|
+
require 'yooda/domains'
|
5
|
+
require 'yooda/keywords'
|
6
|
+
require 'yooda/subscriptions'
|
7
|
+
|
8
|
+
Dir[File.dirname(__FILE__) + '/yooda/*.rb'].each {|file| require file }
|
9
|
+
|
10
|
+
module Yooda
|
11
|
+
|
12
|
+
class << self
|
13
|
+
|
14
|
+
attr_accessor :apikey, :connection_middleware
|
15
|
+
|
16
|
+
def configure
|
17
|
+
yield self
|
18
|
+
true
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Yooda
|
2
|
+
class APIError < StandardError
|
3
|
+
|
4
|
+
attr_reader :status
|
5
|
+
attr_reader :reason
|
6
|
+
attr_reader :response
|
7
|
+
|
8
|
+
def initialize(status, reason, response)
|
9
|
+
@status = status
|
10
|
+
@reason = reason
|
11
|
+
@response = response
|
12
|
+
end
|
13
|
+
|
14
|
+
def message
|
15
|
+
"#{@reason}: #{@response} (#{@status})"
|
16
|
+
end
|
17
|
+
alias :to_s :message
|
18
|
+
end
|
19
|
+
end
|
data/lib/yooda/client.rb
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
require 'faraday'
|
2
|
+
require 'faraday_middleware'
|
3
|
+
|
4
|
+
require_relative 'api_error'
|
5
|
+
require_relative 'domains'
|
6
|
+
require_relative 'keywords'
|
7
|
+
require_relative 'subscriptions'
|
8
|
+
|
9
|
+
module Yooda
|
10
|
+
|
11
|
+
class Client
|
12
|
+
|
13
|
+
DEFAULT_CONNECTION_MIDDLEWARE = [
|
14
|
+
Faraday::Request::Multipart,
|
15
|
+
Faraday::Request::UrlEncoded,
|
16
|
+
FaradayMiddleware::Mashify,
|
17
|
+
FaradayMiddleware::ParseJson
|
18
|
+
]
|
19
|
+
|
20
|
+
include Yooda::Domains
|
21
|
+
include Yooda::Keywords
|
22
|
+
include Yooda::Subscriptions
|
23
|
+
|
24
|
+
attr_reader :apikey
|
25
|
+
|
26
|
+
def initialize(options={})
|
27
|
+
@apikey = options[:apikey] || Yooda.apikey
|
28
|
+
@connection_middleware = options[:connection_middleware] || Yooda.connection_middleware || []
|
29
|
+
@connection_middleware += DEFAULT_CONNECTION_MIDDLEWARE
|
30
|
+
end
|
31
|
+
|
32
|
+
def connection
|
33
|
+
params = {}
|
34
|
+
params[:apikey] = @apikey if @apikey
|
35
|
+
@connection ||= Faraday::Connection.new(:url => api_url, :params => params, :headers => default_headers) do |builder|
|
36
|
+
# @connection_middleware.each do |middleware|
|
37
|
+
# builder.use *middleware
|
38
|
+
# end
|
39
|
+
builder.adapter Faraday.default_adapter
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def api_url
|
44
|
+
"https://api.yooda.com"
|
45
|
+
end
|
46
|
+
|
47
|
+
def return_error_or_body(response)
|
48
|
+
if response.status == 200
|
49
|
+
response.body.content
|
50
|
+
else
|
51
|
+
raise Yooda::APIError.new(response.status, response.reason_phrase, response.body)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
private
|
56
|
+
|
57
|
+
def default_headers
|
58
|
+
headers = {
|
59
|
+
:accept => 'application/json',
|
60
|
+
:user_agent => 'Yooda client API'
|
61
|
+
}
|
62
|
+
end
|
63
|
+
|
64
|
+
end
|
65
|
+
|
66
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module Yooda
|
2
|
+
module Domains
|
3
|
+
|
4
|
+
# GET /insight/domains/{domain_id}/keywords
|
5
|
+
# Liste des expressions de recherches positionnées d'un site
|
6
|
+
def keywords_market_by_domain(domain_id, options={})
|
7
|
+
response = connection.get do |req|
|
8
|
+
req.url "insight/domains/#{domain_id}/keywords", options
|
9
|
+
end
|
10
|
+
return_error_or_body(response)
|
11
|
+
end
|
12
|
+
|
13
|
+
# GET /insight/domains/{domain_id}/kpi
|
14
|
+
# Récupérer les indicateurs clés de performance d'un site pour un domain donnée.
|
15
|
+
def domain_market_kpi(domain_id, options={})
|
16
|
+
response = connection.get do |req|
|
17
|
+
req.url "insight/domains/#{domain_id}/kpi", options
|
18
|
+
end
|
19
|
+
return_error_or_body(response)
|
20
|
+
end
|
21
|
+
|
22
|
+
# GET /insight/domains/{url}
|
23
|
+
# Retourne les informations d'un domaine pour une url donnée
|
24
|
+
def domain_informations(domain, options={})
|
25
|
+
response = connection.get do |req|
|
26
|
+
req.url "insight/domains/#{domain}", options
|
27
|
+
end
|
28
|
+
return_error_or_body(response)
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module Yooda
|
2
|
+
module Keywords
|
3
|
+
|
4
|
+
# GET /insight/keywords/market/by/keywords/{kw_id}
|
5
|
+
# Liste des expressions de recherche à partir d'un mot-clé
|
6
|
+
def keywords_market_by_keyword(kw_id, options={})
|
7
|
+
response = connection.get do |req|
|
8
|
+
req.url "insight/keywords/market/by/keywords/#{kw_id}", options
|
9
|
+
end
|
10
|
+
return_error_or_body(response)
|
11
|
+
end
|
12
|
+
|
13
|
+
# GET /insight/keywords/{keyword}
|
14
|
+
# Retourne les informations sur un mot-clé
|
15
|
+
def keyword_informations(keyword, options={})
|
16
|
+
response = connection.get do |req|
|
17
|
+
req.url "insight/keywords/#{keyword}", options
|
18
|
+
end
|
19
|
+
return_error_or_body(response)
|
20
|
+
end
|
21
|
+
|
22
|
+
# GET /insight/keywords/{kw_id}/market/kpi
|
23
|
+
# Récupérer les indicateurs clés de performance d'un mot-clé.
|
24
|
+
def keyword_market_kpi(kw_id, options={})
|
25
|
+
response = connection.get do |req|
|
26
|
+
req.url "insight/keywords/#{kw_id}/market/kpi", options
|
27
|
+
end
|
28
|
+
return_error_or_body(response)
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Yooda
|
2
|
+
module Subscriptions
|
3
|
+
|
4
|
+
def credits(options={})
|
5
|
+
response = connection.get do |req|
|
6
|
+
req.url "subscriptions/credits", options
|
7
|
+
end
|
8
|
+
return_error_or_body(response)
|
9
|
+
end
|
10
|
+
|
11
|
+
def histories(options={})
|
12
|
+
response = connection.get do |req|
|
13
|
+
req.url "subscriptions/histories", options
|
14
|
+
end
|
15
|
+
return_error_or_body(response)
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module Yooda
|
2
|
+
|
3
|
+
class Version
|
4
|
+
MAJOR = 0 unless defined? Yooda::Version::MAJOR
|
5
|
+
MINOR = 1 unless defined? Yooda::Version::MINOR
|
6
|
+
PATCH = 3 unless defined? Yooda::Version::PATCH
|
7
|
+
PRE = nil unless defined? Yooda::Version::PRE
|
8
|
+
|
9
|
+
class << self
|
10
|
+
|
11
|
+
# @return [String]
|
12
|
+
def to_s
|
13
|
+
[MAJOR, MINOR, PATCH, PRE].compact.join('.')
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
VERSION = Version.to_s.freeze
|
21
|
+
|
22
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "yooda/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "yooda-client"
|
8
|
+
spec.version = Yooda::Version
|
9
|
+
spec.authors = ["Bastien Montois"]
|
10
|
+
spec.email = ["bastien@la-revanche-des-sites.fr"]
|
11
|
+
|
12
|
+
spec.summary = %q{Simple ruby gem to wrap Yooda.com API}
|
13
|
+
spec.description = %q{Simple ruby gem to wrap Yooda.com API -- a SEO market monitoring toolkit.}
|
14
|
+
spec.homepage = "https://github.com/larevanchedessites/yooda-api-ruby-client"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
# if spec.respond_to?(:metadata)
|
20
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
21
|
+
# else
|
22
|
+
# raise "RubyGems 2.0 or newer is required to protect against " \
|
23
|
+
# "public gem pushes."
|
24
|
+
# end
|
25
|
+
|
26
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
27
|
+
f.match(%r{^(test|spec|features)/})
|
28
|
+
end
|
29
|
+
spec.bindir = "exe"
|
30
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
31
|
+
spec.require_paths = ["lib"]
|
32
|
+
|
33
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
34
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
35
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
36
|
+
|
37
|
+
spec.add_dependency "faraday", "~> 0.13"
|
38
|
+
spec.add_dependency "faraday_middleware"
|
39
|
+
spec.add_dependency "hashie", "~> 3.5"
|
40
|
+
spec.add_dependency "multi_json", "~> 1.12"
|
41
|
+
|
42
|
+
end
|
metadata
ADDED
@@ -0,0 +1,161 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: yooda-client
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Bastien Montois
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-11-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: faraday
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.13'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.13'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: faraday_middleware
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: hashie
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '3.5'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '3.5'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: multi_json
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '1.12'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '1.12'
|
111
|
+
description: Simple ruby gem to wrap Yooda.com API -- a SEO market monitoring toolkit.
|
112
|
+
email:
|
113
|
+
- bastien@la-revanche-des-sites.fr
|
114
|
+
executables: []
|
115
|
+
extensions: []
|
116
|
+
extra_rdoc_files: []
|
117
|
+
files:
|
118
|
+
- ".gitignore"
|
119
|
+
- ".rspec"
|
120
|
+
- ".travis.yml"
|
121
|
+
- CODE_OF_CONDUCT.md
|
122
|
+
- Gemfile
|
123
|
+
- Gemfile.lock
|
124
|
+
- LICENSE.txt
|
125
|
+
- README.md
|
126
|
+
- Rakefile
|
127
|
+
- bin/console
|
128
|
+
- bin/setup
|
129
|
+
- lib/yooda.rb
|
130
|
+
- lib/yooda/api_error.rb
|
131
|
+
- lib/yooda/client.rb
|
132
|
+
- lib/yooda/domains.rb
|
133
|
+
- lib/yooda/keywords.rb
|
134
|
+
- lib/yooda/subscriptions.rb
|
135
|
+
- lib/yooda/version.rb
|
136
|
+
- yooda-client.gemspec
|
137
|
+
homepage: https://github.com/larevanchedessites/yooda-api-ruby-client
|
138
|
+
licenses:
|
139
|
+
- MIT
|
140
|
+
metadata: {}
|
141
|
+
post_install_message:
|
142
|
+
rdoc_options: []
|
143
|
+
require_paths:
|
144
|
+
- lib
|
145
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
147
|
+
- - ">="
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '0'
|
150
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
151
|
+
requirements:
|
152
|
+
- - ">="
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: '0'
|
155
|
+
requirements: []
|
156
|
+
rubyforge_project:
|
157
|
+
rubygems_version: 2.5.1
|
158
|
+
signing_key:
|
159
|
+
specification_version: 4
|
160
|
+
summary: Simple ruby gem to wrap Yooda.com API
|
161
|
+
test_files: []
|