qoobaa-aws-sqs 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/.document +1 -0
  2. data/VERSION +1 -1
  3. data/aws-sqs.gemspec +2 -1
  4. data/lib/aws-sqs.rb +39 -0
  5. metadata +2 -1
data/.document CHANGED
@@ -1,4 +1,5 @@
1
1
  README.rdoc
2
+ lib/*
2
3
  lib/**/*.rb
3
4
  bin/*
4
5
  test/*
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{aws-sqs}
5
- s.version = "0.1.1"
5
+ s.version = "0.1.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Jakub Kuźma"]
@@ -20,6 +20,7 @@ Gem::Specification.new do |s|
20
20
  "Rakefile",
21
21
  "VERSION",
22
22
  "aws-sqs.gemspec",
23
+ "lib/aws-sqs.rb",
23
24
  "lib/awsbase/awsbase.rb",
24
25
  "lib/awsbase/benchmark_fix.rb",
25
26
  "lib/awsbase/http_connection.rb",
@@ -0,0 +1,39 @@
1
+ # Copyright (c) 2007-2008 RightScale Inc
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person
4
+ # obtaining a copy of this software and associated documentation files
5
+ # (the "Software"), to deal in the Software without restriction,
6
+ # including without limitation the rights to use, copy, modify, merge,
7
+ # publish, distribute, sublicense, and/or sell copies of the Software,
8
+ # and to permit persons to whom the Software is furnished to do so,
9
+ # subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be
12
+ # included in all copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
18
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
19
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
23
+ require "base64"
24
+ require "benchmark"
25
+ require "cgi"
26
+ require "digest/sha1"
27
+ require "logger"
28
+ require "net/https"
29
+ require "openssl"
30
+ require "rexml/document"
31
+ require "time"
32
+ require "uri"
33
+
34
+ require "lib/awsbase/benchmark_fix"
35
+ require "lib/awsbase/http_connection"
36
+ require "lib/awsbase/support"
37
+ require "lib/awsbase/awsbase"
38
+ require "lib/sqs/sqs_interface"
39
+ require "lib/sqs/sqs"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qoobaa-aws-sqs
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
  - "Jakub Ku\xC5\xBAma"
@@ -30,6 +30,7 @@ files:
30
30
  - Rakefile
31
31
  - VERSION
32
32
  - aws-sqs.gemspec
33
+ - lib/aws-sqs.rb
33
34
  - lib/awsbase/awsbase.rb
34
35
  - lib/awsbase/benchmark_fix.rb
35
36
  - lib/awsbase/http_connection.rb