dreamy 0.5.1 → 0.5.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 +3 -0
- data/README.md +6 -2
- data/Rakefile +4 -3
- data/VERSION.yml +2 -2
- data/dreamy.gemspec +98 -0
- metadata +5 -3
data/.gitignore
ADDED
data/README.md
CHANGED
@@ -7,7 +7,12 @@ What is it?
|
|
7
7
|
Install
|
8
8
|
=======
|
9
9
|
|
10
|
-
Grab the gem from
|
10
|
+
Grab the **canonical** gem from Gemcutter:
|
11
|
+
|
12
|
+
gem sources -a http://gemcutter.org
|
13
|
+
gem install dreamy
|
14
|
+
|
15
|
+
Or grab the **development** gem from GitHub:
|
11
16
|
|
12
17
|
gem sources -a http://gems.github.com
|
13
18
|
gem install sant0sk1-dreamy
|
@@ -19,7 +24,6 @@ DreamHost requires a username (email or webID) and API key (available from your
|
|
19
24
|
|
20
25
|
To get started with the library, just require the gem:
|
21
26
|
|
22
|
-
require 'rubygems'
|
23
27
|
require 'dreamy'
|
24
28
|
|
25
29
|
Create a new object using your username and API key.
|
data/Rakefile
CHANGED
@@ -18,11 +18,12 @@ begin
|
|
18
18
|
gemspec.email = "jerod.santo@gmail.com"
|
19
19
|
gemspec.homepage = "http://github.com/sant0sk1/dreamy"
|
20
20
|
gemspec.authors = ["Jerod Santo"]
|
21
|
-
gemspec.add_dependency('
|
21
|
+
gemspec.add_dependency('terminal-table', '>= 1.0.5')
|
22
22
|
gemspec.add_dependency('hpricot', '>= 0.7')
|
23
23
|
gemspec.add_dependency('uuid', '>= 2.0.1')
|
24
24
|
gemspec.files.exclude 'test/credentials.yml'
|
25
25
|
end
|
26
|
+
Jeweler::GemcutterTasks.new
|
26
27
|
rescue LoadError
|
27
|
-
puts "Jeweler not available. Install it with: sudo gem install
|
28
|
-
end
|
28
|
+
puts "Jeweler not available. Install it with: sudo gem install jeweler"
|
29
|
+
end
|
data/VERSION.yml
CHANGED
data/dreamy.gemspec
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{dreamy}
|
8
|
+
s.version = "0.5.2"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Jerod Santo"]
|
12
|
+
s.date = %q{2009-12-29}
|
13
|
+
s.default_executable = %q{dh}
|
14
|
+
s.email = %q{jerod.santo@gmail.com}
|
15
|
+
s.executables = ["dh"]
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"README.md"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".gitignore",
|
21
|
+
"README.md",
|
22
|
+
"Rakefile",
|
23
|
+
"VERSION.yml",
|
24
|
+
"bin/dh",
|
25
|
+
"dreamy.gemspec",
|
26
|
+
"lib/dreamy.rb",
|
27
|
+
"lib/dreamy/announce_list.rb",
|
28
|
+
"lib/dreamy/base.rb",
|
29
|
+
"lib/dreamy/command.rb",
|
30
|
+
"lib/dreamy/commands/announce.rb",
|
31
|
+
"lib/dreamy/commands/base.rb",
|
32
|
+
"lib/dreamy/commands/dns.rb",
|
33
|
+
"lib/dreamy/commands/domains.rb",
|
34
|
+
"lib/dreamy/commands/help.rb",
|
35
|
+
"lib/dreamy/commands/mysql.rb",
|
36
|
+
"lib/dreamy/commands/ps.rb",
|
37
|
+
"lib/dreamy/commands/users.rb",
|
38
|
+
"lib/dreamy/core_extensions.rb",
|
39
|
+
"lib/dreamy/dns.rb",
|
40
|
+
"lib/dreamy/domain.rb",
|
41
|
+
"lib/dreamy/easy_class_maker.rb",
|
42
|
+
"lib/dreamy/mysql/db.rb",
|
43
|
+
"lib/dreamy/mysql/host.rb",
|
44
|
+
"lib/dreamy/mysql/user.rb",
|
45
|
+
"lib/dreamy/private_server.rb",
|
46
|
+
"lib/dreamy/subscriber.rb",
|
47
|
+
"lib/dreamy/user.rb",
|
48
|
+
"test/announce_test.rb",
|
49
|
+
"test/base_test.rb",
|
50
|
+
"test/dns_test.rb",
|
51
|
+
"test/domain_test.rb",
|
52
|
+
"test/mysql_db_test.rb",
|
53
|
+
"test/mysql_host_test.rb",
|
54
|
+
"test/mysql_user_test.rb",
|
55
|
+
"test/private_server_test.rb",
|
56
|
+
"test/subscriber_test.rb",
|
57
|
+
"test/test_helper.rb",
|
58
|
+
"test/user_test.rb"
|
59
|
+
]
|
60
|
+
s.homepage = %q{http://github.com/sant0sk1/dreamy}
|
61
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
62
|
+
s.require_paths = ["lib"]
|
63
|
+
s.rubygems_version = %q{1.3.5}
|
64
|
+
s.summary = %q{A Ruby library and command line tool for accessing DreamHost's API}
|
65
|
+
s.test_files = [
|
66
|
+
"test/announce_test.rb",
|
67
|
+
"test/base_test.rb",
|
68
|
+
"test/dns_test.rb",
|
69
|
+
"test/domain_test.rb",
|
70
|
+
"test/mysql_db_test.rb",
|
71
|
+
"test/mysql_host_test.rb",
|
72
|
+
"test/mysql_user_test.rb",
|
73
|
+
"test/private_server_test.rb",
|
74
|
+
"test/subscriber_test.rb",
|
75
|
+
"test/test_helper.rb",
|
76
|
+
"test/user_test.rb"
|
77
|
+
]
|
78
|
+
|
79
|
+
if s.respond_to? :specification_version then
|
80
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
81
|
+
s.specification_version = 3
|
82
|
+
|
83
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
84
|
+
s.add_runtime_dependency(%q<terminal-table>, [">= 1.0.5"])
|
85
|
+
s.add_runtime_dependency(%q<hpricot>, [">= 0.7"])
|
86
|
+
s.add_runtime_dependency(%q<uuid>, [">= 2.0.1"])
|
87
|
+
else
|
88
|
+
s.add_dependency(%q<terminal-table>, [">= 1.0.5"])
|
89
|
+
s.add_dependency(%q<hpricot>, [">= 0.7"])
|
90
|
+
s.add_dependency(%q<uuid>, [">= 2.0.1"])
|
91
|
+
end
|
92
|
+
else
|
93
|
+
s.add_dependency(%q<terminal-table>, [">= 1.0.5"])
|
94
|
+
s.add_dependency(%q<hpricot>, [">= 0.7"])
|
95
|
+
s.add_dependency(%q<uuid>, [">= 2.0.1"])
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dreamy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jerod Santo
|
@@ -9,11 +9,11 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-12-29 00:00:00 -06:00
|
13
13
|
default_executable: dh
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
16
|
+
name: terminal-table
|
17
17
|
type: :runtime
|
18
18
|
version_requirement:
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -51,10 +51,12 @@ extensions: []
|
|
51
51
|
extra_rdoc_files:
|
52
52
|
- README.md
|
53
53
|
files:
|
54
|
+
- .gitignore
|
54
55
|
- README.md
|
55
56
|
- Rakefile
|
56
57
|
- VERSION.yml
|
57
58
|
- bin/dh
|
59
|
+
- dreamy.gemspec
|
58
60
|
- lib/dreamy.rb
|
59
61
|
- lib/dreamy/announce_list.rb
|
60
62
|
- lib/dreamy/base.rb
|