sqs 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.
data/.gitignore CHANGED
@@ -4,3 +4,4 @@ coverage
4
4
  rdoc
5
5
  pkg
6
6
  *.gem
7
+ *.gemspec
@@ -0,0 +1,25 @@
1
+ = SQS
2
+
3
+ SQS library provides access to Amazon's Simple Queue Service via REST
4
+ API.
5
+
6
+ * repository: http://github.com/qoobaa/sqs
7
+ * issue tracker: http://github.com/qoobaa/sqs/issues
8
+ * rdoc: http://qoobaa.github.com/sqs
9
+ * gemcutter: http://gemcutter.org/gems/sqs
10
+
11
+ == Installation
12
+
13
+ If you don't have the Gemcutter sources yet:
14
+ gem sources -a http://gemcutter.org
15
+
16
+ To install the gem type:
17
+ sudo gem install sqs
18
+
19
+ == Usage
20
+
21
+ Coming soon, see Rdoc documentation.
22
+
23
+ == Copyright
24
+
25
+ Copyright (c) 2009 Jakub Kuźma. See LICENSE for details.
data/Rakefile CHANGED
@@ -13,7 +13,6 @@ begin
13
13
  gem.authors = ["Jakub Kuźma"]
14
14
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
15
  end
16
-
17
16
  rescue LoadError
18
17
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
19
18
  end
@@ -54,4 +53,3 @@ Rake::RDocTask.new do |rdoc|
54
53
  rdoc.rdoc_files.include('README*')
55
54
  rdoc.rdoc_files.include('lib/**/*.rb')
56
55
  end
57
-
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
@@ -59,10 +59,6 @@ module Sqs
59
59
  end
60
60
  end
61
61
 
62
- # def inspect
63
- # "#<S3::Roxy::Proxy:0x#{object_id.to_s(16)}>"
64
- # end
65
-
66
62
  # Delegate all method calls we don't know about to target object
67
63
  def method_missing(sym, *args, &block)
68
64
  proxy_target.__send__(sym, *args, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: 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"
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-08-17 00:00:00 +02:00
12
+ date: 2009-10-09 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -21,10 +21,12 @@ extensions: []
21
21
 
22
22
  extra_rdoc_files:
23
23
  - LICENSE
24
+ - README.rdoc
24
25
  files:
25
26
  - .document
26
27
  - .gitignore
27
28
  - LICENSE
29
+ - README.rdoc
28
30
  - Rakefile
29
31
  - VERSION
30
32
  - lib/sqs.rb
@@ -37,7 +39,6 @@ files:
37
39
  - lib/sqs/roxy/proxy.rb
38
40
  - lib/sqs/service.rb
39
41
  - lib/sqs/signature.rb
40
- - sqs.gemspec
41
42
  - test/signature_test.rb
42
43
  - test/test_helper.rb
43
44
  has_rdoc: true
@@ -1,56 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{sqs}
8
- s.version = "0.1.1"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Jakub Kuźma"]
12
- s.date = %q{2009-08-17}
13
- s.email = %q{qoobaa@gmail.com}
14
- s.extra_rdoc_files = [
15
- "LICENSE"
16
- ]
17
- s.files = [
18
- ".document",
19
- ".gitignore",
20
- "LICENSE",
21
- "Rakefile",
22
- "VERSION",
23
- "lib/sqs.rb",
24
- "lib/sqs/connection.rb",
25
- "lib/sqs/exceptions.rb",
26
- "lib/sqs/message.rb",
27
- "lib/sqs/parser.rb",
28
- "lib/sqs/queue.rb",
29
- "lib/sqs/roxy/moxie.rb",
30
- "lib/sqs/roxy/proxy.rb",
31
- "lib/sqs/service.rb",
32
- "lib/sqs/signature.rb",
33
- "sqs.gemspec",
34
- "test/signature_test.rb",
35
- "test/test_helper.rb"
36
- ]
37
- s.homepage = %q{http://github.com/qoobaa/sqs}
38
- s.rdoc_options = ["--charset=UTF-8"]
39
- s.require_paths = ["lib"]
40
- s.rubygems_version = %q{1.3.5}
41
- s.summary = %q{Simple Queue Service accessing library}
42
- s.test_files = [
43
- "test/signature_test.rb",
44
- "test/test_helper.rb"
45
- ]
46
-
47
- if s.respond_to? :specification_version then
48
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
49
- s.specification_version = 3
50
-
51
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
52
- else
53
- end
54
- else
55
- end
56
- end