booster-slicehost-tools 0.0.9 → 0.0.10
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/README.markdown +2 -2
- data/Rakefile +4 -4
- data/slicehost-tools.gemspec +5 -5
- metadata +4 -4
data/README.markdown
CHANGED
|
@@ -10,8 +10,8 @@ I am not responsible if this eats your data or destroys your life. YOU HAVE BEEN
|
|
|
10
10
|
|
|
11
11
|
gem sources -a http://gems.github.com
|
|
12
12
|
|
|
13
|
-
sudo gem install
|
|
14
|
-
sudo gem install
|
|
13
|
+
sudo gem install thor
|
|
14
|
+
sudo gem install booster-slicehost-tools
|
|
15
15
|
|
|
16
16
|
## Usage
|
|
17
17
|
|
data/Rakefile
CHANGED
|
@@ -4,7 +4,7 @@ require 'rake/gempackagetask'
|
|
|
4
4
|
|
|
5
5
|
gem_spec = Gem::Specification.new do |s|
|
|
6
6
|
s.name = %q{slicehost-tools}
|
|
7
|
-
s.version = "0.0.
|
|
7
|
+
s.version = "0.0.10"
|
|
8
8
|
|
|
9
9
|
s.specification_version = 2 if s.respond_to? :specification_version=
|
|
10
10
|
|
|
@@ -12,7 +12,7 @@ gem_spec = Gem::Specification.new do |s|
|
|
|
12
12
|
s.authors = ["Cameron Cox", "Bobby Uhlenbrock", "Corey Martella"]
|
|
13
13
|
s.date = %q{2008-09-10}
|
|
14
14
|
s.summary = %q{tools utilizing the slicehost api}
|
|
15
|
-
s.email = %q{
|
|
15
|
+
s.email = %q{cameroncox@gmail.com}
|
|
16
16
|
s.executables = ["slicehost-dns", "slicehost-slice"]
|
|
17
17
|
s.extra_rdoc_files = ["README.markdown", "LICENSE"]
|
|
18
18
|
s.files = Dir['**/**'].reject{ |f| f =~ /pkg/i }
|
|
@@ -20,8 +20,8 @@ gem_spec = Gem::Specification.new do |s|
|
|
|
20
20
|
s.homepage = %q{http://github.com/booster/slicehost-tools/}
|
|
21
21
|
s.require_paths = ["lib"]
|
|
22
22
|
s.rubygems_version = %q{1.1.1}
|
|
23
|
-
s.add_dependency("
|
|
24
|
-
s.add_dependency("activeresource", ">= 2.1.1")
|
|
23
|
+
s.add_dependency("thor", ">= 0.9.8")
|
|
24
|
+
s.add_dependency("activeresource", ">= 2.1.1")
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
Rake::GemPackageTask.new(gem_spec) do |p|
|
data/slicehost-tools.gemspec
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{slicehost-tools}
|
|
5
|
-
s.version = "0.0.
|
|
5
|
+
s.version = "0.0.10"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Cameron Cox", "Bobby Uhlenbrock", "Corey Martella"]
|
|
9
9
|
s.date = %q{2008-09-10}
|
|
10
|
-
s.email = %q{
|
|
10
|
+
s.email = %q{cameroncox@gmail.com}
|
|
11
11
|
s.executables = ["slicehost-dns", "slicehost-slice"]
|
|
12
12
|
s.extra_rdoc_files = ["README.markdown", "LICENSE"]
|
|
13
13
|
s.files = ["bin", "bin/slicehost-dns", "bin/slicehost-slice", "lib", "lib/slicehost-tools", "lib/slicehost-tools/resources", "lib/slicehost-tools/resources/dns.rb", "lib/slicehost-tools/resources/slice.rb", "lib/slicehost-tools/resources.rb", "lib/slicehost-tools/tools", "lib/slicehost-tools/tools/dns.rb", "lib/slicehost-tools/tools/slice.rb", "lib/slicehost-tools/tools.rb", "lib/slicehost-tools.rb", "LICENSE", "Rakefile", "README.markdown", "slicehost-tools.gemspec"]
|
|
@@ -21,14 +21,14 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
s.specification_version = 2
|
|
22
22
|
|
|
23
23
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
24
|
-
s.add_runtime_dependency(%q<
|
|
24
|
+
s.add_runtime_dependency(%q<thor>, [">= 0.9.8"])
|
|
25
25
|
s.add_runtime_dependency(%q<activeresource>, [">= 2.1.1"])
|
|
26
26
|
else
|
|
27
|
-
s.add_dependency(%q<
|
|
27
|
+
s.add_dependency(%q<thor>, [">= 0.9.8"])
|
|
28
28
|
s.add_dependency(%q<activeresource>, [">= 2.1.1"])
|
|
29
29
|
end
|
|
30
30
|
else
|
|
31
|
-
s.add_dependency(%q<
|
|
31
|
+
s.add_dependency(%q<thor>, [">= 0.9.8"])
|
|
32
32
|
s.add_dependency(%q<activeresource>, [">= 2.1.1"])
|
|
33
33
|
end
|
|
34
34
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: booster-slicehost-tools
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cameron Cox
|
|
@@ -15,14 +15,14 @@ date: 2008-09-10 00:00:00 -07:00
|
|
|
15
15
|
default_executable:
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
|
-
name:
|
|
18
|
+
name: thor
|
|
19
19
|
type: :runtime
|
|
20
20
|
version_requirement:
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - ">="
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.9.
|
|
25
|
+
version: 0.9.8
|
|
26
26
|
version:
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: activeresource
|
|
@@ -35,7 +35,7 @@ dependencies:
|
|
|
35
35
|
version: 2.1.1
|
|
36
36
|
version:
|
|
37
37
|
description:
|
|
38
|
-
email:
|
|
38
|
+
email: cameroncox@gmail.com
|
|
39
39
|
executables:
|
|
40
40
|
- slicehost-dns
|
|
41
41
|
- slicehost-slice
|