uplift 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +40 -0
- data/History.txt +6 -0
- data/Manifest +9 -0
- data/README.rdoc +57 -0
- data/Rakefile +14 -0
- data/bin/uplift +4 -0
- data/lib/uplift.rb +3 -0
- data/uplift.gemspec +33 -0
- metadata +104 -0
- metadata.gz.sig +3 -0
data.tar.gz.sig
ADDED
Binary file
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
addressable (2.2.4)
|
5
|
+
allison (2.0.3)
|
6
|
+
crack (0.1.8)
|
7
|
+
diff-lcs (1.1.2)
|
8
|
+
echoe (4.5.1)
|
9
|
+
allison
|
10
|
+
gemcutter
|
11
|
+
rubyforge
|
12
|
+
gemcutter (0.7.0)
|
13
|
+
json_pure (1.5.1)
|
14
|
+
right_aws (2.0.0)
|
15
|
+
right_http_connection (>= 1.2.1)
|
16
|
+
right_http_connection (1.2.4)
|
17
|
+
rspec (2.5.0)
|
18
|
+
rspec-core (~> 2.5.0)
|
19
|
+
rspec-expectations (~> 2.5.0)
|
20
|
+
rspec-mocks (~> 2.5.0)
|
21
|
+
rspec-core (2.5.1)
|
22
|
+
rspec-expectations (2.5.0)
|
23
|
+
diff-lcs (~> 1.1.2)
|
24
|
+
rspec-mocks (2.5.0)
|
25
|
+
rubyforge (2.0.4)
|
26
|
+
json_pure (>= 1.1.7)
|
27
|
+
vcr (1.6.0)
|
28
|
+
webmock (1.6.2)
|
29
|
+
addressable (>= 2.2.2)
|
30
|
+
crack (>= 0.1.7)
|
31
|
+
|
32
|
+
PLATFORMS
|
33
|
+
ruby
|
34
|
+
|
35
|
+
DEPENDENCIES
|
36
|
+
echoe (= 4.5.1)
|
37
|
+
right_aws (= 2.0.0)
|
38
|
+
rspec (= 2.5.0)
|
39
|
+
vcr (= 1.6.0)
|
40
|
+
webmock (= 1.6.2)
|
data/History.txt
ADDED
data/Manifest
ADDED
data/README.rdoc
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
= uplift
|
2
|
+
|
3
|
+
* http://www.allaboutbalance.com/
|
4
|
+
|
5
|
+
== DESCRIPTION:
|
6
|
+
|
7
|
+
FIX (describe your package)
|
8
|
+
|
9
|
+
== FEATURES/PROBLEMS:
|
10
|
+
|
11
|
+
* FIX (list of features or problems)
|
12
|
+
|
13
|
+
== SYNOPSIS:
|
14
|
+
|
15
|
+
FIX (code sample of usage)
|
16
|
+
|
17
|
+
== REQUIREMENTS:
|
18
|
+
|
19
|
+
* FIX (list of requirements)
|
20
|
+
|
21
|
+
== INSTALL:
|
22
|
+
|
23
|
+
* FIX (sudo gem install, anything else)
|
24
|
+
|
25
|
+
== DEVELOPERS:
|
26
|
+
|
27
|
+
After checking out the source, run:
|
28
|
+
|
29
|
+
$ rake newb
|
30
|
+
|
31
|
+
This task will install any missing dependencies, run the tests/specs,
|
32
|
+
and generate the RDoc.
|
33
|
+
|
34
|
+
== LICENSE:
|
35
|
+
|
36
|
+
(The MIT License)
|
37
|
+
|
38
|
+
Copyright (c) 2011 FIX
|
39
|
+
|
40
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
41
|
+
a copy of this software and associated documentation files (the
|
42
|
+
'Software'), to deal in the Software without restriction, including
|
43
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
44
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
45
|
+
permit persons to whom the Software is furnished to do so, subject to
|
46
|
+
the following conditions:
|
47
|
+
|
48
|
+
The above copyright notice and this permission notice shall be
|
49
|
+
included in all copies or substantial portions of the Software.
|
50
|
+
|
51
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
52
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
53
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
54
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
55
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
56
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
57
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
require 'echoe'
|
4
|
+
|
5
|
+
Echoe.new('uplift', '0.0.1') do |p|
|
6
|
+
p.description = "Amazon EC2 + Other Good Things"
|
7
|
+
p.url = "http://github.com/rslifka/uplift"
|
8
|
+
p.author = "Robert Slifka"
|
9
|
+
p.email = "robert.slifka@gmail.com"
|
10
|
+
p.ignore_pattern = ["spec/*", ".*"]
|
11
|
+
|
12
|
+
# Workaround for older versions of Rubygems
|
13
|
+
p.development_dependencies = []
|
14
|
+
end
|
data/bin/uplift
ADDED
data/lib/uplift.rb
ADDED
data/uplift.gemspec
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{uplift}
|
5
|
+
s.version = "0.0.1"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Robert Slifka"]
|
9
|
+
s.cert_chain = ["/Users/rslifka/Documents/Personal Data/projects/gem-public_cert.pem"]
|
10
|
+
s.date = %q{2011-02-26}
|
11
|
+
s.default_executable = %q{uplift}
|
12
|
+
s.description = %q{Amazon EC2 + Other Good Things}
|
13
|
+
s.email = %q{robert.slifka@gmail.com}
|
14
|
+
s.executables = ["uplift"]
|
15
|
+
s.extra_rdoc_files = ["README.rdoc", "bin/uplift", "lib/uplift.rb"]
|
16
|
+
s.files = ["Gemfile", "Gemfile.lock", "History.txt", "README.rdoc", "Rakefile", "bin/uplift", "lib/uplift.rb", "uplift.gemspec", "Manifest"]
|
17
|
+
s.homepage = %q{http://github.com/rslifka/uplift}
|
18
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Uplift", "--main", "README.rdoc"]
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
s.rubyforge_project = %q{uplift}
|
21
|
+
s.rubygems_version = %q{1.5.3}
|
22
|
+
s.signing_key = %q{/Users/rslifka/Documents/Personal Data/projects/gem-private_key.pem}
|
23
|
+
s.summary = %q{Amazon EC2 + Other Good Things}
|
24
|
+
|
25
|
+
if s.respond_to? :specification_version then
|
26
|
+
s.specification_version = 3
|
27
|
+
|
28
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
29
|
+
else
|
30
|
+
end
|
31
|
+
else
|
32
|
+
end
|
33
|
+
end
|
metadata
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: uplift
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Robert Slifka
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain:
|
17
|
+
- |
|
18
|
+
-----BEGIN CERTIFICATE-----
|
19
|
+
MIIDPDCCAiSgAwIBAgIBADANBgkqhkiG9w0BAQUFADBEMRYwFAYDVQQDDA1yb2Jl
|
20
|
+
cnQuc2xpZmthMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/IsZAEZ
|
21
|
+
FgNjb20wHhcNMTEwMjI2MjEzMjAyWhcNMTIwMjI2MjEzMjAyWjBEMRYwFAYDVQQD
|
22
|
+
DA1yb2JlcnQuc2xpZmthMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJ
|
23
|
+
k/IsZAEZFgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDChlkP
|
24
|
+
a5xBY/pYHL3Hb6BtXrvL/vlAdePKHCw6rqFzkeEX+5hfIQLxGAXgDTK4/k2OWFC1
|
25
|
+
2mVcjRKjiB4q2sZEBtPSbwWsWrpqMyhj2kLPtBW4oqulDYJyFibpXpHow+4DJc7W
|
26
|
+
oo44eJm0Jj1bjDoroFwY89BAvjOEwUM+kjxXm5Zu+/WiKxFGkfh+lKZLVFWnH7oc
|
27
|
+
2I/Pnsl+QQe3VfAPzhptH720Z9tMwttuXzxXtCUtDad8mNNPoytmF3fyf3pfyx1w
|
28
|
+
tMGqpdOoJ2KSfma9XXSp1tVEJ4ogc7Y34TVJoYic8Di32V77zUY8S27qJFi/QXn1
|
29
|
+
Ae+W6SCYVGuXXFVTAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0G
|
30
|
+
A1UdDgQWBBQ2MFpJc5EC+Qh/k0gR50gOwwk3QzANBgkqhkiG9w0BAQUFAAOCAQEA
|
31
|
+
YJnvgVVgr5fuBGpSsEdg/bxYoAaoITH2T2N0TAoTUTqlds5EvoZWs26vpSBGapyX
|
32
|
+
SxOJdXMbvNja3qCXYIKRhpmRooUlimqKSLh79Ro0VfOdPn3j45WGH55OmviogrYU
|
33
|
+
krPav06KHtWdXdspr3dQ8qvTnnr1MXVslkJW3O4mDfvD6+5K8cuduyoKoW/u4205
|
34
|
+
mLOis/Q1StJnWNVsDwDfet/rXvWdqm0OCE7u4xW7bgPAJEoGPO/Rp7qdyJlFoOW+
|
35
|
+
dBVIf/Oc1HrmKdgLNLQRrpNBzzzodCp6Kj0ZjSeJuVy0bFIcEF9oydfhGp/L/zjn
|
36
|
+
2Lj2bh0ZXz11AMx79QEvmg==
|
37
|
+
-----END CERTIFICATE-----
|
38
|
+
|
39
|
+
date: 2011-02-26 00:00:00 -08:00
|
40
|
+
default_executable:
|
41
|
+
dependencies: []
|
42
|
+
|
43
|
+
description: Amazon EC2 + Other Good Things
|
44
|
+
email: robert.slifka@gmail.com
|
45
|
+
executables:
|
46
|
+
- uplift
|
47
|
+
extensions: []
|
48
|
+
|
49
|
+
extra_rdoc_files:
|
50
|
+
- README.rdoc
|
51
|
+
- bin/uplift
|
52
|
+
- lib/uplift.rb
|
53
|
+
files:
|
54
|
+
- Gemfile
|
55
|
+
- Gemfile.lock
|
56
|
+
- History.txt
|
57
|
+
- README.rdoc
|
58
|
+
- Rakefile
|
59
|
+
- bin/uplift
|
60
|
+
- lib/uplift.rb
|
61
|
+
- uplift.gemspec
|
62
|
+
- Manifest
|
63
|
+
has_rdoc: true
|
64
|
+
homepage: http://github.com/rslifka/uplift
|
65
|
+
licenses: []
|
66
|
+
|
67
|
+
post_install_message:
|
68
|
+
rdoc_options:
|
69
|
+
- --line-numbers
|
70
|
+
- --inline-source
|
71
|
+
- --title
|
72
|
+
- Uplift
|
73
|
+
- --main
|
74
|
+
- README.rdoc
|
75
|
+
require_paths:
|
76
|
+
- lib
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
+
none: false
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
hash: 3
|
83
|
+
segments:
|
84
|
+
- 0
|
85
|
+
version: "0"
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
+
none: false
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
hash: 11
|
92
|
+
segments:
|
93
|
+
- 1
|
94
|
+
- 2
|
95
|
+
version: "1.2"
|
96
|
+
requirements: []
|
97
|
+
|
98
|
+
rubyforge_project: uplift
|
99
|
+
rubygems_version: 1.5.3
|
100
|
+
signing_key:
|
101
|
+
specification_version: 3
|
102
|
+
summary: Amazon EC2 + Other Good Things
|
103
|
+
test_files: []
|
104
|
+
|
metadata.gz.sig
ADDED