cloud_search 0.0.1
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.
- data/.gitignore +17 -0
- data/.rspec +1 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +70 -0
- data/Rakefile +9 -0
- data/cloud_search.gemspec +30 -0
- data/lib/cloud_search.rb +16 -0
- data/lib/cloud_search/config.rb +36 -0
- data/lib/cloud_search/search.rb +35 -0
- data/lib/cloud_search/version.rb +3 -0
- data/spec/cloud_search/config_spec.rb +23 -0
- data/spec/cloud_search/search_spec.rb +39 -0
- data/spec/fixtures/vcr_cassettes/search/request/full.yml +114 -0
- data/spec/spec_helper.rb +12 -0
- data/spec/support/vcr.rb +5 -0
- metadata +179 -0
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color --format documentation
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Willian Fernandes
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
# CloudSearch
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem "cloud_search"
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install cloud_search
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
The example bellow uses the Amazon's example database called `imdb-movies`:
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
# Use your AWS CloudSearch configuration
|
25
|
+
CloudSearch.configure do |config|
|
26
|
+
config.domain_id = "pl6u4t3elu7dhsbwaqbsy3y6be"
|
27
|
+
config.domain_name = "imdb-movies"
|
28
|
+
end
|
29
|
+
|
30
|
+
# Search for 'star wars' on 'imdb-movies'
|
31
|
+
resp, msg = CloudSearch::Search.request("star wars",
|
32
|
+
:actor,
|
33
|
+
:director,
|
34
|
+
:title,
|
35
|
+
:year,
|
36
|
+
:text_relevance)
|
37
|
+
|
38
|
+
# Or you can search using part of the name
|
39
|
+
resp, msg = CloudSearch::Search.request("matri*",
|
40
|
+
:actor,
|
41
|
+
:title,
|
42
|
+
:year,
|
43
|
+
:text_relevance)
|
44
|
+
|
45
|
+
# Number of results
|
46
|
+
resp["found"]
|
47
|
+
|
48
|
+
resp["hit"].each do |result|
|
49
|
+
movie = result["data"]
|
50
|
+
|
51
|
+
# List of actors on the movie
|
52
|
+
movie["actor"]
|
53
|
+
|
54
|
+
# Movie's name
|
55
|
+
movie["title"]
|
56
|
+
|
57
|
+
# A rank number used to sort the results
|
58
|
+
# The `text_relevance` key is added by AMS CloudSearch
|
59
|
+
movie["text_relevance"]
|
60
|
+
end
|
61
|
+
```
|
62
|
+
|
63
|
+
## Contributing
|
64
|
+
|
65
|
+
1. Fork it
|
66
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
67
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
68
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
69
|
+
5. Create new Pull Request
|
70
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'cloud_search/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "cloud_search"
|
8
|
+
gem.version = CloudSearch::VERSION
|
9
|
+
gem.platform = Gem::Platform::RUBY
|
10
|
+
gem.authors = ["Willian Fernandes"]
|
11
|
+
gem.email = ["willian@willianfernandes.com.br"]
|
12
|
+
gem.homepage = "http://rubygems.org/gems/cloud_search"
|
13
|
+
gem.summary = "A wraper to Amazon CloudSearch's API"
|
14
|
+
gem.description = gem.summary
|
15
|
+
|
16
|
+
gem.files = `git ls-files`.split($/)
|
17
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
18
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
19
|
+
gem.require_paths = ["lib"]
|
20
|
+
|
21
|
+
gem.add_development_dependency "pry"
|
22
|
+
gem.add_development_dependency "rake"
|
23
|
+
gem.add_development_dependency "rspec" , "~> 2.11"
|
24
|
+
gem.add_development_dependency "simplecov" , "~> 0.6"
|
25
|
+
gem.add_development_dependency "vcr" , "~> 2.2"
|
26
|
+
gem.add_development_dependency "webmock"
|
27
|
+
|
28
|
+
gem.add_dependency "em-http-request" , "~> 1.0"
|
29
|
+
end
|
30
|
+
|
data/lib/cloud_search.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require "em-http"
|
2
|
+
require "cloud_search/version"
|
3
|
+
|
4
|
+
module CloudSearch
|
5
|
+
autoload :Config, "cloud_search/config"
|
6
|
+
autoload :Search, "cloud_search/search"
|
7
|
+
|
8
|
+
def self.config
|
9
|
+
Config.instance
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.configure(&block)
|
13
|
+
block.call(self.config)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require "singleton"
|
2
|
+
|
3
|
+
module CloudSearch
|
4
|
+
class Config
|
5
|
+
include Singleton
|
6
|
+
|
7
|
+
attr_accessor :api_version
|
8
|
+
attr_accessor :configuration_url
|
9
|
+
attr_accessor :domain_id
|
10
|
+
attr_accessor :domain_name
|
11
|
+
attr_accessor :document_url
|
12
|
+
attr_accessor :region
|
13
|
+
attr_accessor :search_url
|
14
|
+
|
15
|
+
def api_version
|
16
|
+
@api_version ||= "2011-02-01"
|
17
|
+
end
|
18
|
+
|
19
|
+
def configuration_url
|
20
|
+
@configuration_url ||= "https://cloudsearch.#{self.region}.amazonaws.com"
|
21
|
+
end
|
22
|
+
|
23
|
+
def document_url
|
24
|
+
@document_url ||= "http://doc-#{self.domain_name}-#{self.domain_id}.#{self.region}.cloudsearch.amazonaws.com"
|
25
|
+
end
|
26
|
+
|
27
|
+
def region
|
28
|
+
@region ||= "us-east-1"
|
29
|
+
end
|
30
|
+
|
31
|
+
def search_url
|
32
|
+
@search_url ||= "http://search-#{self.domain_name}-#{self.domain_id}.#{self.region}.cloudsearch.amazonaws.com"
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require "json"
|
2
|
+
|
3
|
+
module CloudSearch
|
4
|
+
class Search
|
5
|
+
def self.request(query, *fields)
|
6
|
+
response, message = nil
|
7
|
+
|
8
|
+
EM.run do
|
9
|
+
url = CloudSearch.config.search_url
|
10
|
+
url+= "/#{CloudSearch.config.api_version}"
|
11
|
+
url+= "/search"
|
12
|
+
url+= "?q=#{CGI.escape(query)}"
|
13
|
+
url+= "&return-fields=#{CGI.escape(fields.join(","))}" if fields.any?
|
14
|
+
|
15
|
+
http = EM::HttpRequest.new(url).get
|
16
|
+
|
17
|
+
http.callback {
|
18
|
+
message = "#{http.response_header.status} - #{http.response.length} bytes\n#{url}\n"
|
19
|
+
response = JSON.parse(http.response)
|
20
|
+
|
21
|
+
EM.stop
|
22
|
+
}
|
23
|
+
|
24
|
+
http.errback {
|
25
|
+
message = "#{url}\n#{http.error}"
|
26
|
+
|
27
|
+
EM.stop
|
28
|
+
}
|
29
|
+
end
|
30
|
+
|
31
|
+
[response, message]
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe CloudSearch::Config do
|
4
|
+
subject { CloudSearch::Config.instance }
|
5
|
+
|
6
|
+
before do
|
7
|
+
CloudSearch.configure do |config|
|
8
|
+
config.domain_id = "pl6u4t3elu7dhsbwaqbsy3y6be"
|
9
|
+
config.domain_name = "imdb-movies"
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
describe "after set some configurations" do
|
14
|
+
it { expect(subject.api_version).to eql("2011-02-01") }
|
15
|
+
it { expect(subject.configuration_url).to eql("https://cloudsearch.us-east-1.amazonaws.com") }
|
16
|
+
it { expect(subject.domain_id).to eql("pl6u4t3elu7dhsbwaqbsy3y6be") }
|
17
|
+
it { expect(subject.domain_name).to eql("imdb-movies") }
|
18
|
+
it { expect(subject.document_url).to eql("http://doc-imdb-movies-pl6u4t3elu7dhsbwaqbsy3y6be.us-east-1.cloudsearch.amazonaws.com") }
|
19
|
+
it { expect(subject.region).to eql("us-east-1") }
|
20
|
+
it { expect(subject.search_url).to eql("http://search-imdb-movies-pl6u4t3elu7dhsbwaqbsy3y6be.us-east-1.cloudsearch.amazonaws.com") }
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
@@ -0,0 +1,39 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe CloudSearch::Search do
|
4
|
+
subject { CloudSearch::Search }
|
5
|
+
|
6
|
+
before do
|
7
|
+
CloudSearch.configure do |config|
|
8
|
+
config.domain_id = "pl6u4t3elu7dhsbwaqbsy3y6be"
|
9
|
+
config.domain_name = "imdb-movies"
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
describe ".request" do
|
14
|
+
let(:fields) { [:actor, :director, :title, :year, :text_relevance] }
|
15
|
+
|
16
|
+
context "given valid parameters" do
|
17
|
+
it "returns http 200 code" do
|
18
|
+
VCR.use_cassette("search/request/full") do
|
19
|
+
resp, msg = subject.request("star wars", *fields)
|
20
|
+
expect(msg).to match(/^200/)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
it "returns one or more results" do
|
25
|
+
VCR.use_cassette("search/request/full") do
|
26
|
+
resp, msg = subject.request("star wars", *fields)
|
27
|
+
expect(resp["hits"]["found"]).to be >= 1
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
context "given invalid parameters" do
|
33
|
+
it "returns" do
|
34
|
+
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
@@ -0,0 +1,114 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://search-imdb-movies-pl6u4t3elu7dhsbwaqbsy3y6be.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?q=star%20wars&return-fields=actor,director,title,year,text_relevance
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
!binary "Q29udGVudC1UeXBl":
|
16
|
+
- !binary |-
|
17
|
+
YXBwbGljYXRpb24vanNvbg==
|
18
|
+
!binary "RGF0ZQ==":
|
19
|
+
- !binary |-
|
20
|
+
RnJpLCAxNCBTZXAgMjAxMiAxNjoyODozNSBHTVQ=
|
21
|
+
!binary "U2VydmVy":
|
22
|
+
- !binary |-
|
23
|
+
U2VydmVy
|
24
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
25
|
+
- !binary |-
|
26
|
+
MzUzNg==
|
27
|
+
!binary "Q29ubmVjdGlvbg==":
|
28
|
+
- !binary |-
|
29
|
+
Q2xvc2U=
|
30
|
+
body:
|
31
|
+
encoding: ASCII-8BIT
|
32
|
+
string: !binary |-
|
33
|
+
eyJyYW5rIjoiLXRleHRfcmVsZXZhbmNlIiwibWF0Y2gtZXhwciI6IihsYWJl
|
34
|
+
bCAnc3RhciB3YXJzJykiLCJoaXRzIjp7ImZvdW5kIjo3LCJzdGFydCI6MCwi
|
35
|
+
aGl0IjpbeyJpZCI6InR0MTE4NTgzNCIsImRhdGEiOnsiYWN0b3IiOlsiQWJl
|
36
|
+
cmNyb21iaWUsIElhbiIsIkJha2VyLCBEZWUgQnJhZGxleSIsIkJ1cnRvbiwg
|
37
|
+
Q29yZXkiLCJFY2tzdGVpbiwgQXNobGV5IiwiRnV0dGVybWFuLCBOaWthIiwi
|
38
|
+
S2FuZSwgVG9tIiwiTGFudGVyLCBNYXR0IiwiVGFiZXIsIENhdGhlcmluZSIs
|
39
|
+
IlRheWxvciwgSmFtZXMgQXJub2xkIiwiV29vZCwgTWF0dGhldyJdLCJkaXJl
|
40
|
+
Y3RvciI6WyJGaWxvbmksIERhdmUiXSwidGV4dF9yZWxldmFuY2UiOlsiMzA4
|
41
|
+
Il0sInRpdGxlIjpbIlN0YXIgV2FyczogVGhlIENsb25lIFdhcnMiXSwieWVh
|
42
|
+
ciI6WyIyMDA4Il19fSx7ImlkIjoidHQwMDc2NzU5IiwiZGF0YSI6eyJhY3Rv
|
43
|
+
ciI6WyJCYWtlciwgS2VubnkiLCJDdXNoaW5nLCBQZXRlciIsIkRhbmllbHMs
|
44
|
+
IEFudGhvbnkiLCJEZSBBcmFnb24sIE1hcmlhIiwiRGlhbW9uZCwgUGV0ZXIi
|
45
|
+
LCJGaXNoZXIsIENhcnJpZSIsIkZvcmQsIEhhcnJpc29uIiwiR29mZmUsIFJ1
|
46
|
+
c3R5IiwiR3Vpbm5lc3MsIEFsZWMiLCJIYW1pbGwsIE1hcmsiLCJKb2huc3Rv
|
47
|
+
biwgSm9lIiwiSm9uZXMsIEphbWVzIEVhcmwiLCJMeW9ucywgRGVyZWsiLCJN
|
48
|
+
YXloZXcsIFBldGVyIiwiTWNDYWxsdW0sIFJpY2siLCJQcm93c2UsIERhdmlk
|
49
|
+
IiwiUmltbWVyLCBTaGFuZSIsIlRpZXJuZXksIE1hbGNvbG0iLCJUaXBwZXR0
|
50
|
+
LCBQaGlsIiwiV2FyZCwgTGFycnkiXSwiZGlyZWN0b3IiOlsiTHVjYXMsIEdl
|
51
|
+
b3JnZSJdLCJ0ZXh0X3JlbGV2YW5jZSI6WyIyNzEiXSwidGl0bGUiOlsiU3Rh
|
52
|
+
ciBXYXJzIl0sInllYXIiOlsiMTk3NyJdfX0seyJpZCI6InR0MDEyMTc2NSIs
|
53
|
+
ImRhdGEiOnsiYWN0b3IiOlsiQWxsZW4sIEFteSIsIkF1Z3VzdCwgUGVybmls
|
54
|
+
bGEiLCJDaHJpc3RlbnNlbiwgSGF5ZGVuIiwiQ3Nva2FzLCBNYXJ0b24iLCJG
|
55
|
+
YW50bCwgTmljb2xlIiwiSmFja3NvbiwgU2FtdWVsIEwuIiwiSm9obnNvbiwg
|
56
|
+
RmlvbmEiLCJMZWUsIENocmlzdG9waGVyIiwiTG9nYW4sIERhbmllbCIsIkx1
|
57
|
+
Y2FzLCBBbWFuZGEiLCJMdWNhcywgSmV0dCIsIkx1Y2FzLCBLYXRpZSIsIk1j
|
58
|
+
RGlhcm1pZCwgSWFuIiwiTWNHcmVnb3IsIEV3YW4iLCJNb3JyaXNvbiwgVGVt
|
59
|
+
dWVyYSIsIk96LCBGcmFuayIsIlBvcnRtYW4sIE5hdGFsaWUiLCJTbWl0cywg
|
60
|
+
SmltbXkiLCJUaG9tcHNvbiwgSmFjayIsIldvb2QsIE1hdHRoZXciXSwiZGly
|
61
|
+
ZWN0b3IiOlsiTHVjYXMsIEdlb3JnZSJdLCJ0ZXh0X3JlbGV2YW5jZSI6WyIy
|
62
|
+
NjkiXSwidGl0bGUiOlsiU3RhciBXYXJzOiBFcGlzb2RlIElJIC0gQXR0YWNr
|
63
|
+
IG9mIHRoZSBDbG9uZXMiXSwieWVhciI6WyIyMDAyIl19fSx7ImlkIjoidHQw
|
64
|
+
MDgwNjg0IiwiZGF0YSI6eyJhY3RvciI6WyJBbmRlcnNvbiwgQm9iIiwiQmFr
|
65
|
+
ZXIsIEtlbm55IiwiQm9uZWhpbGwsIFJpY2hhcmQiLCJDYXByaSwgTWFyayIs
|
66
|
+
IkRhbmllbHMsIEFudGhvbnkiLCJEaWFtb25kLCBQZXRlciIsIkZpc2hlciwg
|
67
|
+
Q2FycmllIiwiRm9yZCwgSGFycmlzb24iLCJHdWlubmVzcywgQWxlYyIsIkhh
|
68
|
+
bWlsbCwgTWFyayIsIkpvbmVzLCBKYW1lcyBFYXJsIiwiTWF5aGV3LCBQZXRl
|
69
|
+
ciIsIk1jUXVhcnJpZSwgUmFscGgiLCJNb3JzZSwgUmFscGgiLCJPeiwgRnJh
|
70
|
+
bmsiLCJQcm93c2UsIERhdmlkIiwiU2FudGlhZ28sIE1pY2hhZWwiLCJXaWxs
|
71
|
+
aWFtcywgQmlsbHkgRGVlIiwiV2lsbGlhbXMsIFRyZWF0IiwiV2luZ3JlZW4s
|
72
|
+
IEphc29uIl0sImRpcmVjdG9yIjpbIktlcnNobmVyLCBJcnZpbiJdLCJ0ZXh0
|
73
|
+
X3JlbGV2YW5jZSI6WyIyNjgiXSwidGl0bGUiOlsiU3RhciBXYXJzOiBFcGlz
|
74
|
+
b2RlIFYgLSBUaGUgRW1waXJlIFN0cmlrZXMgQmFjayJdLCJ5ZWFyIjpbIjE5
|
75
|
+
ODAiXX19LHsiaWQiOiJ0dDAwODYxOTAiLCJkYXRhIjp7ImFjdG9yIjpbIkFs
|
76
|
+
dG1hbiwgSm9obiIsIkJvbmVoaWxsLCBSaWNoYXJkIiwiQnJvb2tlLCBQYXVs
|
77
|
+
IiwiQnVydHQsIEJlbiIsIkRhbmllbHMsIEFudGhvbnkiLCJEaWFtb25kLCBQ
|
78
|
+
ZXRlciIsIkZpc2hlciwgQ2FycmllIiwiRm9yZCwgSGFycmlzb24iLCJIYW1p
|
79
|
+
bGwsIE1hcmsiLCJKb25lcywgSmFtZXMgRWFybCIsIk1hcnF1YW5kLCBSaWNo
|
80
|
+
YXJkIiwiTWF5aGV3LCBQZXRlciIsIk1jRGlhcm1pZCwgSWFuIiwiTWNSYWUs
|
81
|
+
IEhpbHRvbiIsIk96LCBGcmFuayIsIlJveSwgRGVlcCIsIlNoYXcsIFNlYmFz
|
82
|
+
dGlhbiIsIldhcmQsIExhcnJ5IiwiV2Vsc2gsIFBhdCIsIldpbGxpYW1zLCBC
|
83
|
+
aWxseSBEZWUiXSwiZGlyZWN0b3IiOlsiTWFycXVhbmQsIFJpY2hhcmQiXSwi
|
84
|
+
dGV4dF9yZWxldmFuY2UiOlsiMjY4Il0sInRpdGxlIjpbIlN0YXIgV2Fyczog
|
85
|
+
RXBpc29kZSBWSSAtIFJldHVybiBvZiB0aGUgSmVkaSJdLCJ5ZWFyIjpbIjE5
|
86
|
+
ODMiXX19LHsiaWQiOiJ0dDAxMjA5MTUiLCJkYXRhIjp7ImFjdG9yIjpbIkFy
|
87
|
+
bWl0YWdlLCBSaWNoYXJkIiwiQXVndXN0LCBQZXJuaWxsYSIsIkJlc3QsIEFo
|
88
|
+
bWVkIiwiQnVydHQsIEJlbiIsIkNoaWFuZywgRG91ZyIsIkNvcHBvbGEsIFJv
|
89
|
+
bWFuIiwiRGFuaWVscywgQW50aG9ueSIsIkZvcmQgRGF2aWVzLCBPbGl2ZXIi
|
90
|
+
LCJIYW1pbGwsIE5hdGhhbiIsIktub2xsLCBKb2huIiwiTGF1LCBLYW1heSIs
|
91
|
+
Ikxsb3lkLCBKYWtlIiwiTWNDYWxsdW0sIFJpY2siLCJNY0RpYXJtaWQsIElh
|
92
|
+
biIsIk1jR3JlZ29yLCBFd2FuIiwiTWVuZXplcywgSm/Do28gQ29zdGEiLCJO
|
93
|
+
ZWVzb24sIExpYW0iLCJQb3J0bWFuLCBOYXRhbGllIiwiUXVhcnNoaWUsIEh1
|
94
|
+
Z2giLCJXb29kLCBNYXR0aGV3Il0sImRpcmVjdG9yIjpbIkx1Y2FzLCBHZW9y
|
95
|
+
Z2UiXSwidGV4dF9yZWxldmFuY2UiOlsiMjY4Il0sInRpdGxlIjpbIlN0YXIg
|
96
|
+
V2FyczogRXBpc29kZSBJIC0gVGhlIFBoYW50b20gTWVuYWNlIl0sInllYXIi
|
97
|
+
OlsiMTk5OSJdfX0seyJpZCI6InR0MDEyMTc2NiIsImRhdGEiOnsiYWN0b3Ii
|
98
|
+
OlsiQmFpLCBMaW5nIiwiQnJ5YW50LCBHZW5lIiwiQ2FzdGxlLUh1Z2hlcywg
|
99
|
+
S2Vpc2hhIiwiQ2hyaXN0ZW5zZW4sIEhheWRlbiIsIkNvb2tlLCBCZW4iLCJE
|
100
|
+
YW5pZWxzLCBBbnRob255IiwiSmFja3NvbiwgU2FtdWVsIEwuIiwiSm9uZXMs
|
101
|
+
IEphbWVzIEVhcmwiLCJLbm9sbCwgSm9obiIsIkxlZSwgQ2hyaXN0b3BoZXIi
|
102
|
+
LCJMdWNhcywgR2VvcmdlIiwiTWNEaWFybWlkLCBJYW4iLCJNY0dyZWdvciwg
|
103
|
+
RXdhbiIsIk96LCBGcmFuayIsIlBvcnRtYW4sIE5hdGFsaWUiLCJTbWl0cywg
|
104
|
+
SmltbXkiLCJTcGVuY2UsIFBhdWwiLCJTdGVlbiwgU3V6aWUiLCJZYW1hZ3Vj
|
105
|
+
aGksIE1hc2EiLCJkZSBTb3V6YSBDb3JyZWEsIENhcm9saW5lIl0sImRpcmVj
|
106
|
+
dG9yIjpbIkx1Y2FzLCBHZW9yZ2UiXSwidGV4dF9yZWxldmFuY2UiOlsiMjY2
|
107
|
+
Il0sInRpdGxlIjpbIlN0YXIgV2FyczogRXBpc29kZSBJSUkgLSBSZXZlbmdl
|
108
|
+
IG9mIHRoZSBTaXRoIl0sInllYXIiOlsiMjAwNSJdfX1dfSwiaW5mbyI6eyJy
|
109
|
+
aWQiOiJkMWI4YmYyNGVjNjQxNTFlZDU0YTM1N2U5NGY2NGJkOGIxZGFkYzFk
|
110
|
+
NjdmNmYyZGNiYzA0MmFjODY0MDdjNjhiOTE1ODJmYmE4MjY0MGY0ZCIsInRp
|
111
|
+
bWUtbXMiOjMsImNwdS10aW1lLW1zIjo0fX0=
|
112
|
+
http_version:
|
113
|
+
recorded_at: Fri, 14 Sep 2012 16:28:35 GMT
|
114
|
+
recorded_with: VCR 2.2.4
|
data/spec/spec_helper.rb
ADDED
data/spec/support/vcr.rb
ADDED
metadata
ADDED
@@ -0,0 +1,179 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cloud_search
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Willian Fernandes
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-10-11 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: pry
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rspec
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '2.11'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2.11'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: simplecov
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0.6'
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0.6'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: vcr
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ~>
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '2.2'
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ~>
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '2.2'
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: webmock
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: em-http-request
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ~>
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '1.0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ~>
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '1.0'
|
126
|
+
description: A wraper to Amazon CloudSearch's API
|
127
|
+
email:
|
128
|
+
- willian@willianfernandes.com.br
|
129
|
+
executables: []
|
130
|
+
extensions: []
|
131
|
+
extra_rdoc_files: []
|
132
|
+
files:
|
133
|
+
- .gitignore
|
134
|
+
- .rspec
|
135
|
+
- Gemfile
|
136
|
+
- LICENSE.txt
|
137
|
+
- README.md
|
138
|
+
- Rakefile
|
139
|
+
- cloud_search.gemspec
|
140
|
+
- lib/cloud_search.rb
|
141
|
+
- lib/cloud_search/config.rb
|
142
|
+
- lib/cloud_search/search.rb
|
143
|
+
- lib/cloud_search/version.rb
|
144
|
+
- spec/cloud_search/config_spec.rb
|
145
|
+
- spec/cloud_search/search_spec.rb
|
146
|
+
- spec/fixtures/vcr_cassettes/search/request/full.yml
|
147
|
+
- spec/spec_helper.rb
|
148
|
+
- spec/support/vcr.rb
|
149
|
+
homepage: http://rubygems.org/gems/cloud_search
|
150
|
+
licenses: []
|
151
|
+
post_install_message:
|
152
|
+
rdoc_options: []
|
153
|
+
require_paths:
|
154
|
+
- lib
|
155
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
156
|
+
none: false
|
157
|
+
requirements:
|
158
|
+
- - ! '>='
|
159
|
+
- !ruby/object:Gem::Version
|
160
|
+
version: '0'
|
161
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
162
|
+
none: false
|
163
|
+
requirements:
|
164
|
+
- - ! '>='
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
requirements: []
|
168
|
+
rubyforge_project:
|
169
|
+
rubygems_version: 1.8.23
|
170
|
+
signing_key:
|
171
|
+
specification_version: 3
|
172
|
+
summary: A wraper to Amazon CloudSearch's API
|
173
|
+
test_files:
|
174
|
+
- spec/cloud_search/config_spec.rb
|
175
|
+
- spec/cloud_search/search_spec.rb
|
176
|
+
- spec/fixtures/vcr_cassettes/search/request/full.yml
|
177
|
+
- spec/spec_helper.rb
|
178
|
+
- spec/support/vcr.rb
|
179
|
+
has_rdoc:
|