aeden-aws-tools 0.0.1 → 0.0.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.
Files changed (6) hide show
  1. data/LICENSE +21 -0
  2. data/README.rdoc +1 -0
  3. data/Rakefile +1 -1
  4. data/VERSION +1 -1
  5. data/aws-tools.gemspec +50 -0
  6. metadata +6 -1
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2009 Anthony Eden
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.rdoc ADDED
@@ -0,0 +1 @@
1
+ Tools that help with gathering data and doing other things with Amazon Web Services. These tools require ruby and the Right AWS library to function.
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ require 'rake/rdoctask'
4
4
  desc 'Generate documentation.'
5
5
  Rake::RDocTask.new(:rdoc) do |rdoc|
6
6
  rdoc.rdoc_dir = 'rdoc'
7
- rdoc.title = 'Refinery'
7
+ rdoc.title = 'aws-tools'
8
8
  rdoc.options << '--line-numbers' << '--inline-source'
9
9
  rdoc.rdoc_files.include('README.rdoc')
10
10
  rdoc.rdoc_files.include('lib/*.rb')
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
data/aws-tools.gemspec ADDED
@@ -0,0 +1,50 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{aws-tools}
5
+ s.version = "0.0.2"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Anthony Eden"]
9
+ s.date = %q{2009-07-30}
10
+ s.description = %q{Tools for working with Amazon Web Services.}
11
+ s.email = %q{anthonyeden@gmail.com}
12
+ s.executables = ["queue_length", "queue_peek"]
13
+ s.extra_rdoc_files = [
14
+ "LICENSE",
15
+ "README.markdown",
16
+ "README.rdoc"
17
+ ]
18
+ s.files = [
19
+ ".gitignore",
20
+ "LICENSE",
21
+ "README.markdown",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "aws-tools.gemspec",
26
+ "bin/queue_length",
27
+ "bin/queue_peek",
28
+ "config/amazon.example.yml",
29
+ "lib/aws_config.rb",
30
+ "lib/queue_length.rb",
31
+ "lib/queue_peek.rb",
32
+ "lib/ssl_no_verify.rb"
33
+ ]
34
+ s.has_rdoc = true
35
+ s.homepage = %q{http://github.com/aeden/aws-tools}
36
+ s.rdoc_options = ["--charset=UTF-8"]
37
+ s.require_paths = ["lib"]
38
+ s.rubygems_version = %q{1.3.1}
39
+ s.summary = %q{Tools for working with Amazon Web Services.}
40
+
41
+ if s.respond_to? :specification_version then
42
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
43
+ s.specification_version = 2
44
+
45
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
46
+ else
47
+ end
48
+ else
49
+ end
50
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aeden-aws-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anthony Eden
@@ -21,12 +21,17 @@ executables:
21
21
  extensions: []
22
22
 
23
23
  extra_rdoc_files:
24
+ - LICENSE
24
25
  - README.markdown
26
+ - README.rdoc
25
27
  files:
26
28
  - .gitignore
29
+ - LICENSE
27
30
  - README.markdown
31
+ - README.rdoc
28
32
  - Rakefile
29
33
  - VERSION
34
+ - aws-tools.gemspec
30
35
  - bin/queue_length
31
36
  - bin/queue_peek
32
37
  - config/amazon.example.yml