automateit 0.80116 → 0.80624
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.tar.gz.sig +3 -1
- data/CHANGES.txt +12 -0
- data/Hoe.rake +3 -1
- data/Manifest.txt +58 -5
- data/README.txt +5 -9
- data/Rakefile +26 -105
- data/TODO.txt +50 -48
- data/bin/ai +0 -0
- data/bin/aifield +0 -0
- data/bin/aissh +0 -0
- data/bin/aitag +0 -0
- data/bin/automateit +0 -0
- data/lib/automateit.rb +0 -0
- data/lib/automateit/account_manager/etc.rb +0 -0
- data/lib/automateit/account_manager/nscd.rb +1 -0
- data/lib/automateit/address_manager/bsd.rb +0 -0
- data/lib/automateit/address_manager/freebsd.rb +0 -0
- data/lib/automateit/address_manager/openbsd.rb +0 -0
- data/lib/automateit/address_manager/portable.rb +0 -0
- data/lib/automateit/address_manager/sunos.rb +0 -0
- data/lib/automateit/constants.rb +4 -3
- data/lib/automateit/interpreter.rb +2 -4
- data/lib/automateit/platform_manager/windows.rb +0 -0
- data/lib/automateit/plugin/driver.rb +0 -0
- data/lib/automateit/root.rb +1 -1
- data/lib/automateit/shell_manager.rb +0 -0
- data/lib/automateit/shell_manager/portable.rb +8 -2
- data/lib/automateit/shell_manager/which_base.rb +0 -0
- data/lib/automateit/shell_manager/which_unix.rb +0 -0
- data/lib/automateit/shell_manager/which_windows.rb +0 -0
- data/lib/ext/object.rb +2 -2
- data/lib/inactive_support/core_ext/time/conversions.rb +4 -2
- data/misc/index_gem_repository.rb +0 -0
- data/misc/setup_egg.rb +0 -0
- data/misc/setup_gem_dependencies.sh +0 -0
- data/misc/setup_rubygems.sh +0 -0
- data/spec/extras/automateit_service_sysv_test +0 -0
- data/spec/extras/scratch.rb +0 -0
- data/spec/extras/simple_recipe.rb +0 -0
- data/spec/integration/account_manager_spec.rb +0 -0
- data/spec/integration/address_manager_portable_spec.rb +0 -0
- data/spec/integration/cli_spec.rb +0 -0
- data/spec/integration/platform_manager_spec.rb +0 -0
- data/spec/integration/shell_manager_spec.rb +24 -0
- data/spec/unit/edit_manager_spec.rb +0 -0
- data/spec/unit/field_manager_spec.rb +0 -0
- data/spec/unit/interpreter_spec.rb +0 -0
- data/spec/unit/object_spec.rb +2 -2
- data/spec/unit/plugins_spec.rb +0 -0
- data/spec/unit/tag_manager_spec.rb +0 -0
- metadata +131 -130
- metadata.gz.sig +0 -0
- data/lib/automateit/package_manager.rb.orig +0 -256
- data/misc/setup_ruby-dbi.rb +0 -24
- data/spec/integration/package_manager_spec.rb.orig +0 -123
data/bin/ai
CHANGED
File without changes
|
data/bin/aifield
CHANGED
File without changes
|
data/bin/aissh
CHANGED
File without changes
|
data/bin/aitag
CHANGED
File without changes
|
data/bin/automateit
CHANGED
File without changes
|
data/lib/automateit.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/automateit/constants.rb
CHANGED
@@ -4,7 +4,7 @@ module AutomateIt # :nodoc:
|
|
4
4
|
# Various constants.
|
5
5
|
module AutomateIt::Constants
|
6
6
|
INSTALL_DIR = File.expand_path(File.join(File.dirname(__FILE__), "..", ".."))
|
7
|
-
|
7
|
+
|
8
8
|
HELPERS_DIR = File.join(INSTALL_DIR, "helpers")
|
9
9
|
|
10
10
|
# Output prefix for command execution, e.g., "** ls -la"
|
@@ -18,14 +18,15 @@ module AutomateIt # :nodoc:
|
|
18
18
|
|
19
19
|
# Boilerplate to add to tops of generated files, warning people not to edit
|
20
20
|
# them directly.
|
21
|
-
WARNING_BOILERPLATE =
|
21
|
+
WARNING_BOILERPLATE = <<-HERE
|
22
|
+
# +---------------------------------------------------------------------+
|
22
23
|
# | WARNING: Do NOT edit this file directly or your changes will be |
|
23
24
|
# | lost. If you need to change this file, you must incorporate your |
|
24
25
|
# | changes into the AutomateIt project that created it. If you don't |
|
25
26
|
# | know what this means, please talk to your system administrator. |
|
26
27
|
# +---------------------------------------------------------------------+
|
27
28
|
#
|
28
|
-
|
29
|
+
HERE
|
29
30
|
end
|
30
31
|
|
31
32
|
# Inject constants back into top, providing AutomateIt::VERSION and such.
|
@@ -55,9 +55,7 @@ module AutomateIt
|
|
55
55
|
# * which -- AutomateIt::ShellManager#which
|
56
56
|
# * which! -- AutomateIt::ShellManager#which!
|
57
57
|
#
|
58
|
-
# [[[ <a name="embedding"> ]]]
|
59
58
|
# === Embedding the Interpreter
|
60
|
-
# [[[ </a> ]]]
|
61
59
|
#
|
62
60
|
# The AutomateIt Interpreter can be embedded inside a Ruby program:
|
63
61
|
#
|
@@ -193,7 +191,7 @@ module AutomateIt
|
|
193
191
|
log.debug(PNOTE+"Loading project library: #{lib}")
|
194
192
|
invoke(lib)
|
195
193
|
end
|
196
|
-
|
194
|
+
|
197
195
|
tag_file = File.join(@project, "config", "tags.yml")
|
198
196
|
if File.exists?(tag_file)
|
199
197
|
log.debug(PNOTE+"Loading project tags: #{tag_file}")
|
@@ -563,7 +561,7 @@ module AutomateIt
|
|
563
561
|
# For situations where you don't want to override any existing methods, consider using #add_method_missing_to.
|
564
562
|
def include_in(object, *methods)
|
565
563
|
methods = [methods].flatten
|
566
|
-
methods = unique_methods.reject{|t| t =~ /^_/} if methods.empty?
|
564
|
+
methods = unique_methods.reject{|t| t.to_s =~ /^_/} if methods.empty?
|
567
565
|
|
568
566
|
object.instance_variable_set(:@__automateit, self)
|
569
567
|
|
File without changes
|
File without changes
|
data/lib/automateit/root.rb
CHANGED
File without changes
|
@@ -314,7 +314,7 @@ class AutomateIt::ShellManager::Portable < AutomateIt::ShellManager::BaseDriver
|
|
314
314
|
|
315
315
|
# See ShellManager#mv
|
316
316
|
def mv(sources, target)
|
317
|
-
present = [sources].flatten.select{|entry|
|
317
|
+
present = [sources].flatten.select{|entry| self._present?(entry)}
|
318
318
|
return false if present.empty?
|
319
319
|
present = present.first if present.size == 1
|
320
320
|
FileUtils.mv(present, target, _fileutils_opts) && present
|
@@ -332,7 +332,7 @@ class AutomateIt::ShellManager::Portable < AutomateIt::ShellManager::BaseDriver
|
|
332
332
|
:rm
|
333
333
|
end
|
334
334
|
|
335
|
-
present = [targets].flatten.select{|entry|
|
335
|
+
present = [targets].flatten.select{|entry| self._present?(entry)}
|
336
336
|
return false if present.empty?
|
337
337
|
|
338
338
|
msg = "rm"
|
@@ -514,4 +514,10 @@ class AutomateIt::ShellManager::Portable < AutomateIt::ShellManager::BaseDriver
|
|
514
514
|
return false if results.empty?
|
515
515
|
return targets.is_a?(String) ? results.first : results
|
516
516
|
end
|
517
|
+
|
518
|
+
# Is the file or symlink at this +path+ present?
|
519
|
+
def _present?(path)
|
520
|
+
File.symlink?(path) ? true : File.exists?(path)
|
521
|
+
end
|
522
|
+
protected :_present?
|
517
523
|
end
|
File without changes
|
File without changes
|
File without changes
|
data/lib/ext/object.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
class Object
|
2
2
|
# Lists methods unique to an instance.
|
3
3
|
def unique_methods
|
4
|
-
(public_methods - Object.methods).sort
|
4
|
+
(public_methods - Object.methods).sort.map(&:to_sym)
|
5
5
|
end
|
6
6
|
|
7
7
|
# Lists methods unique to a class.
|
8
8
|
def self.unique_methods
|
9
|
-
(public_methods - Object.methods).sort
|
9
|
+
(public_methods - Object.methods).sort.map(&:to_sym)
|
10
10
|
end
|
11
11
|
|
12
12
|
# Returns a list of arguments and an options hash. Source taken from RSpec.
|
@@ -14,8 +14,10 @@ module InactiveSupport #:nodoc:
|
|
14
14
|
|
15
15
|
def self.included(base)
|
16
16
|
base.class_eval do
|
17
|
-
|
18
|
-
|
17
|
+
unless instance_methods.include? "to_default_s"
|
18
|
+
alias_method :to_default_s, :to_s
|
19
|
+
alias_method :to_s, :to_formatted_s
|
20
|
+
end
|
19
21
|
end
|
20
22
|
end
|
21
23
|
|
File without changes
|
data/misc/setup_egg.rb
CHANGED
File without changes
|
File without changes
|
data/misc/setup_rubygems.sh
CHANGED
File without changes
|
File without changes
|
data/spec/extras/scratch.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -350,6 +350,18 @@ describe AutomateIt::ShellManager, " in general" do
|
|
350
350
|
end
|
351
351
|
end
|
352
352
|
|
353
|
+
it "should move invalid symlinks (mv)" do
|
354
|
+
@m.mktempdircd do
|
355
|
+
file1 = "foo"
|
356
|
+
file2 = "bar"
|
357
|
+
@m.ln_s(file1, file2)
|
358
|
+
|
359
|
+
@m.mv(file2, file1) == file2
|
360
|
+
File.exists?(file1).should be_false
|
361
|
+
File.symlink?(file1).should be_true
|
362
|
+
end
|
363
|
+
end
|
364
|
+
|
353
365
|
it "should delete files (rm)" do
|
354
366
|
@m.mktempdircd do
|
355
367
|
file1 = "foo"
|
@@ -365,6 +377,18 @@ describe AutomateIt::ShellManager, " in general" do
|
|
365
377
|
end
|
366
378
|
end
|
367
379
|
|
380
|
+
it "should delete invalid symlinks (rm)" do
|
381
|
+
@m.mktempdircd do
|
382
|
+
file1 = "foo"
|
383
|
+
file2 = "bar"
|
384
|
+
@m.ln_s(file1, file2)
|
385
|
+
|
386
|
+
@m.rm(file2) == file1
|
387
|
+
File.exists?(file2).should be_false
|
388
|
+
File.symlink?(file2).should be_false
|
389
|
+
end
|
390
|
+
end
|
391
|
+
|
368
392
|
it "should delete recursively (rm_r)" do
|
369
393
|
@m.mktempdircd do
|
370
394
|
dir = "foo/bar"
|
File without changes
|
File without changes
|
File without changes
|
data/spec/unit/object_spec.rb
CHANGED
@@ -2,11 +2,11 @@ require File.join(File.dirname(File.expand_path(__FILE__)), "/../spec_helper.rb"
|
|
2
2
|
|
3
3
|
describe Object, "with extensions" do
|
4
4
|
it "should have unique methods on an object" do
|
5
|
-
INTERPRETER.unique_methods.should include(
|
5
|
+
INTERPRETER.unique_methods.should include(:preview)
|
6
6
|
end
|
7
7
|
|
8
8
|
it "should have unique methods on a class" do
|
9
|
-
AutomateIt::Interpreter.unique_methods.should include(
|
9
|
+
AutomateIt::Interpreter.unique_methods.should include(:invoke)
|
10
10
|
end
|
11
11
|
|
12
12
|
it "should parse arguments and options" do
|
data/spec/unit/plugins_spec.rb
CHANGED
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: automateit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: "0.
|
4
|
+
version: "0.80624"
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Igal Koshevoy
|
@@ -30,11 +30,12 @@ cert_chain:
|
|
30
30
|
COR01yWDcVLdM89nNLk=
|
31
31
|
-----END CERTIFICATE-----
|
32
32
|
|
33
|
-
date: 2008-
|
33
|
+
date: 2008-06-26 00:00:00 -07:00
|
34
34
|
default_executable:
|
35
35
|
dependencies:
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: open4
|
38
|
+
type: :runtime
|
38
39
|
version_requirement:
|
39
40
|
version_requirements: !ruby/object:Gem::Requirement
|
40
41
|
requirements:
|
@@ -44,21 +45,22 @@ dependencies:
|
|
44
45
|
version:
|
45
46
|
- !ruby/object:Gem::Dependency
|
46
47
|
name: hoe
|
48
|
+
type: :runtime
|
47
49
|
version_requirement:
|
48
50
|
version_requirements: !ruby/object:Gem::Requirement
|
49
51
|
requirements:
|
50
52
|
- - ">="
|
51
53
|
- !ruby/object:Gem::Version
|
52
|
-
version: 1.
|
54
|
+
version: 1.6.0
|
53
55
|
version:
|
54
56
|
description: AutomateIt is an open source tool for automating the setup and maintenance of servers, applications and their dependencies.
|
55
57
|
email: igal@pragmaticraft.com
|
56
58
|
executables:
|
57
59
|
- aifield
|
58
|
-
- automateit
|
59
|
-
- aissh
|
60
60
|
- ai
|
61
61
|
- aitag
|
62
|
+
- automateit
|
63
|
+
- aissh
|
62
64
|
extensions: []
|
63
65
|
|
64
66
|
extra_rdoc_files:
|
@@ -79,175 +81,175 @@ files:
|
|
79
81
|
- TODO.txt
|
80
82
|
- TUTORIAL.txt
|
81
83
|
- bin/aifield
|
82
|
-
- bin/automateit
|
83
|
-
- bin/aissh
|
84
84
|
- bin/ai
|
85
85
|
- bin/aitag
|
86
|
-
-
|
86
|
+
- bin/automateit
|
87
|
+
- bin/aissh
|
88
|
+
- examples/basic/recipes/uninstall.rb
|
89
|
+
- examples/basic/recipes/README.txt
|
90
|
+
- examples/basic/recipes/install.rb
|
91
|
+
- examples/basic/dist/myapp_server.erb
|
92
|
+
- examples/basic/dist/README.txt
|
87
93
|
- examples/basic/config/automateit_env.rb
|
88
|
-
- examples/basic/config/fields.yml
|
89
94
|
- examples/basic/config/tags.yml
|
90
|
-
- examples/basic/
|
91
|
-
- examples/basic/dist/myapp_server.erb
|
95
|
+
- examples/basic/config/fields.yml
|
92
96
|
- examples/basic/install.log
|
93
97
|
- examples/basic/lib/README.txt
|
94
|
-
- examples/basic/
|
95
|
-
- examples/basic/recipes/install.rb
|
96
|
-
- examples/basic/recipes/uninstall.rb
|
98
|
+
- examples/basic/Rakefile
|
97
99
|
- docs/friendly_errors.txt
|
98
100
|
- docs/previews.txt
|
99
101
|
- helpers/which.cmd
|
100
102
|
- helpers/cpan_wrapper.pl
|
101
103
|
- lib/hashcache.rb
|
102
|
-
- lib/
|
104
|
+
- lib/ext/shell_escape.rb
|
105
|
+
- lib/ext/object.rb
|
106
|
+
- lib/ext/metaclass.rb
|
107
|
+
- lib/helpful_erb.rb
|
108
|
+
- lib/automateit/template_manager.rb
|
109
|
+
- lib/automateit/edit_manager.rb
|
110
|
+
- lib/automateit/error.rb
|
103
111
|
- lib/automateit/tag_manager.rb
|
104
|
-
- lib/automateit/service_manager.rb
|
105
|
-
- lib/automateit/
|
106
|
-
- lib/automateit/
|
107
|
-
- lib/automateit/
|
112
|
+
- lib/automateit/service_manager/chkconfig.rb
|
113
|
+
- lib/automateit/service_manager/rc_update.rb
|
114
|
+
- lib/automateit/service_manager/sysv.rb
|
115
|
+
- lib/automateit/service_manager/update_rcd.rb
|
116
|
+
- lib/automateit/account_manager.rb
|
108
117
|
- lib/automateit/field_manager.rb
|
109
|
-
- lib/automateit/
|
110
|
-
- lib/automateit/interpreter.rb
|
118
|
+
- lib/automateit/plugin.rb
|
111
119
|
- lib/automateit/package_manager.rb
|
112
|
-
- lib/automateit/
|
120
|
+
- lib/automateit/address_manager/portable.rb
|
121
|
+
- lib/automateit/address_manager/bsd.rb
|
122
|
+
- lib/automateit/address_manager/base.rb
|
123
|
+
- lib/automateit/address_manager/sunos.rb
|
124
|
+
- lib/automateit/address_manager/linux.rb
|
125
|
+
- lib/automateit/address_manager/openbsd.rb
|
126
|
+
- lib/automateit/address_manager/freebsd.rb
|
127
|
+
- lib/automateit/interpreter.rb
|
128
|
+
- lib/automateit/address_manager.rb
|
129
|
+
- lib/automateit/cli.rb
|
130
|
+
- lib/automateit/account_manager/posix.rb
|
131
|
+
- lib/automateit/account_manager/base.rb
|
132
|
+
- lib/automateit/account_manager/etc.rb
|
133
|
+
- lib/automateit/account_manager/passwd_expect.rb
|
134
|
+
- lib/automateit/account_manager/passwd_pty.rb
|
135
|
+
- lib/automateit/account_manager/nscd.rb
|
113
136
|
- lib/automateit/plugin/base.rb
|
114
|
-
- lib/automateit/plugin/driver.rb
|
115
137
|
- lib/automateit/plugin/manager.rb
|
116
|
-
- lib/automateit/plugin.rb
|
117
|
-
- lib/automateit/
|
118
|
-
- lib/automateit/
|
119
|
-
- lib/automateit/
|
138
|
+
- lib/automateit/plugin/driver.rb
|
139
|
+
- lib/automateit/project.rb
|
140
|
+
- lib/automateit/root.rb
|
141
|
+
- lib/automateit/constants.rb
|
120
142
|
- lib/automateit/package_manager/apt.rb
|
121
|
-
- lib/automateit/package_manager/cpan.rb
|
122
|
-
- lib/automateit/package_manager/gem.rb
|
123
143
|
- lib/automateit/package_manager/egg.rb
|
144
|
+
- lib/automateit/package_manager/pear.rb
|
124
145
|
- lib/automateit/package_manager/yum.rb
|
125
146
|
- lib/automateit/package_manager/dpkg.rb
|
147
|
+
- lib/automateit/package_manager/cpan.rb
|
126
148
|
- lib/automateit/package_manager/pecl.rb
|
127
149
|
- lib/automateit/package_manager/portage.rb
|
128
|
-
- lib/automateit/
|
129
|
-
- lib/automateit/
|
130
|
-
- lib/automateit/
|
131
|
-
- lib/automateit/
|
132
|
-
- lib/automateit/
|
133
|
-
- lib/automateit/
|
134
|
-
- lib/automateit/
|
135
|
-
- lib/automateit/
|
136
|
-
- lib/automateit/
|
137
|
-
- lib/automateit/account_manager/etc.rb
|
138
|
-
- lib/automateit/account_manager/posix.rb
|
139
|
-
- lib/automateit/account_manager/passwd_expect.rb
|
140
|
-
- lib/automateit/account_manager/passwd_pty.rb
|
141
|
-
- lib/automateit/platform_manager/darwin.rb
|
150
|
+
- lib/automateit/package_manager/gem.rb
|
151
|
+
- lib/automateit/tag_manager/struct.rb
|
152
|
+
- lib/automateit/tag_manager/yaml.rb
|
153
|
+
- lib/automateit/tag_manager/tag_parser.rb
|
154
|
+
- lib/automateit/platform_manager.rb
|
155
|
+
- lib/automateit/template_manager/base.rb
|
156
|
+
- lib/automateit/template_manager/erb.rb
|
157
|
+
- lib/automateit/platform_manager/windows.rb
|
158
|
+
- lib/automateit/platform_manager/uname.rb
|
142
159
|
- lib/automateit/platform_manager/struct.rb
|
143
160
|
- lib/automateit/platform_manager/debian.rb
|
144
|
-
- lib/automateit/platform_manager/uname.rb
|
145
161
|
- lib/automateit/platform_manager/lsb.rb
|
146
|
-
- lib/automateit/platform_manager/
|
162
|
+
- lib/automateit/platform_manager/sunos.rb
|
163
|
+
- lib/automateit/platform_manager/darwin.rb
|
147
164
|
- lib/automateit/platform_manager/gentoo.rb
|
148
165
|
- lib/automateit/platform_manager/openbsd.rb
|
149
|
-
- lib/automateit/platform_manager/
|
150
|
-
- lib/automateit/platform_manager/windows.rb
|
151
|
-
- lib/automateit/root.rb
|
152
|
-
- lib/automateit/address_manager/base.rb
|
153
|
-
- lib/automateit/address_manager/portable.rb
|
154
|
-
- lib/automateit/address_manager/bsd.rb
|
155
|
-
- lib/automateit/address_manager/linux.rb
|
156
|
-
- lib/automateit/address_manager/sunos.rb
|
157
|
-
- lib/automateit/address_manager/freebsd.rb
|
158
|
-
- lib/automateit/address_manager/openbsd.rb
|
159
|
-
- lib/automateit/project.rb
|
166
|
+
- lib/automateit/platform_manager/freebsd.rb
|
160
167
|
- lib/automateit/shell_manager/portable.rb
|
161
168
|
- lib/automateit/shell_manager/base_link.rb
|
162
169
|
- lib/automateit/shell_manager/link.rb
|
170
|
+
- lib/automateit/shell_manager/which_windows.rb
|
163
171
|
- lib/automateit/shell_manager/symlink.rb
|
164
172
|
- lib/automateit/shell_manager/which_base.rb
|
165
173
|
- lib/automateit/shell_manager/which_unix.rb
|
166
|
-
- lib/automateit/
|
167
|
-
- lib/automateit/
|
168
|
-
- lib/automateit/
|
169
|
-
- lib/automateit/tag_manager/tag_parser.rb
|
174
|
+
- lib/automateit/common.rb
|
175
|
+
- lib/automateit/shell_manager.rb
|
176
|
+
- lib/automateit/service_manager.rb
|
170
177
|
- lib/automateit/download_manager.rb
|
171
|
-
- lib/automateit/package_manager.rb.orig
|
172
|
-
- lib/automateit/template_manager/base.rb
|
173
|
-
- lib/automateit/template_manager/erb.rb
|
174
|
-
- lib/tempster.rb
|
175
|
-
- lib/ext/metaclass.rb
|
176
|
-
- lib/ext/object.rb
|
177
|
-
- lib/ext/shell_escape.rb
|
178
|
-
- lib/helpful_erb.rb
|
179
|
-
- lib/nitpick.rb
|
180
|
-
- lib/queued_logger.rb
|
181
|
-
- lib/nested_error.rb
|
182
|
-
- lib/inactive_support.rb
|
183
|
-
- lib/inactive_support/clean_logger.rb
|
184
178
|
- lib/inactive_support/core_ext/array/extract_options.rb
|
185
|
-
- lib/inactive_support/core_ext/blank.rb
|
186
|
-
- lib/inactive_support/core_ext/class/attribute_accessors.rb
|
187
|
-
- lib/inactive_support/core_ext/class/inheritable_attributes.rb
|
188
179
|
- lib/inactive_support/core_ext/hash/keys.rb
|
189
|
-
- lib/inactive_support/core_ext/module/aliasing.rb
|
190
|
-
- lib/inactive_support/core_ext/string/inflections.rb
|
191
|
-
- lib/inactive_support/core_ext/symbol.rb
|
192
180
|
- lib/inactive_support/core_ext/enumerable.rb
|
181
|
+
- lib/inactive_support/core_ext/symbol.rb
|
193
182
|
- lib/inactive_support/core_ext/numeric/time.rb
|
194
183
|
- lib/inactive_support/core_ext/time/conversions.rb
|
195
|
-
- lib/inactive_support/inflections.rb
|
184
|
+
- lib/inactive_support/core_ext/string/inflections.rb
|
185
|
+
- lib/inactive_support/core_ext/class/inheritable_attributes.rb
|
186
|
+
- lib/inactive_support/core_ext/class/attribute_accessors.rb
|
187
|
+
- lib/inactive_support/core_ext/blank.rb
|
188
|
+
- lib/inactive_support/core_ext/module/aliasing.rb
|
189
|
+
- lib/inactive_support/clean_logger.rb
|
196
190
|
- lib/inactive_support/inflector.rb
|
191
|
+
- lib/inactive_support/inflections.rb
|
197
192
|
- lib/inactive_support/basic_object.rb
|
198
193
|
- lib/inactive_support/duration.rb
|
194
|
+
- lib/tempster.rb
|
195
|
+
- lib/nitpick.rb
|
196
|
+
- lib/queued_logger.rb
|
197
|
+
- lib/inactive_support.rb
|
198
|
+
- lib/nested_error.rb
|
199
|
+
- lib/automateit.rb
|
200
|
+
- misc/setup_rubygems.sh
|
201
|
+
- misc/setup_gem_dependencies.sh
|
199
202
|
- misc/index_gem_repository.rb
|
200
203
|
- misc/setup_egg.rb
|
201
|
-
-
|
202
|
-
- misc/setup_rubygems.sh
|
203
|
-
- misc/setup_ruby-dbi.rb
|
204
|
-
- spec/spec_helper.rb
|
204
|
+
- spec/breaker.rb
|
205
205
|
- spec/unit/plugins_spec.rb
|
206
206
|
- spec/unit/template_manager_erb_spec.rb
|
207
|
+
- spec/unit/hashcache_spec.rb
|
208
|
+
- spec/unit/shell_escape_spec.rb
|
209
|
+
- spec/unit/edit_manager_spec.rb
|
207
210
|
- spec/unit/field_manager_spec.rb
|
211
|
+
- spec/unit/nested_error_spec.rb
|
208
212
|
- spec/unit/tag_manager_spec.rb
|
209
|
-
- spec/unit/
|
213
|
+
- spec/unit/address_manager_spec.rb
|
210
214
|
- spec/unit/interpreter_spec.rb
|
211
215
|
- spec/unit/platform_manager_spec.rb
|
212
|
-
- spec/unit/address_manager_spec.rb
|
213
|
-
- spec/unit/edit_manager_spec.rb
|
214
|
-
- spec/unit/nested_error_spec.rb
|
215
|
-
- spec/unit/object_spec.rb
|
216
216
|
- spec/unit/package_manager_spec.rb
|
217
|
-
- spec/unit/
|
217
|
+
- spec/unit/object_spec.rb
|
218
|
+
- spec/extras/scratch.rb
|
219
|
+
- spec/extras/automateit_service_sysv_test
|
220
|
+
- spec/extras/simple_recipe.rb
|
221
|
+
- spec/integration/cli_spec.rb
|
222
|
+
- spec/integration/template_manager_erb_spec.rb
|
223
|
+
- spec/integration/examples_spec.rb
|
224
|
+
- spec/integration/edit_manager_spec.rb
|
225
|
+
- spec/integration/download_spec.rb
|
218
226
|
- spec/integration/service_manager_sysv_spec.rb
|
227
|
+
- spec/integration/address_manager_spec.rb
|
228
|
+
- spec/integration/examples_spec_editor.rb
|
229
|
+
- spec/integration/shell_manager_spec.rb
|
219
230
|
- spec/integration/account_manager_nscd_spec.rb
|
231
|
+
- spec/integration/platform_manager_spec.rb
|
220
232
|
- spec/integration/package_manager_spec.rb
|
221
233
|
- spec/integration/address_manager_portable_spec.rb
|
222
|
-
- spec/integration/platform_manager_spec.rb
|
223
|
-
- spec/integration/cli_spec.rb
|
224
|
-
- spec/integration/shell_manager_spec.rb
|
225
|
-
- spec/integration/account_manager_spec.rb
|
226
|
-
- spec/integration/address_manager_spec.rb
|
227
|
-
- spec/integration/download_spec.rb
|
228
|
-
- spec/integration/edit_manager_spec.rb
|
229
|
-
- spec/integration/examples_spec.rb
|
230
|
-
- spec/integration/examples_spec_editor.rb
|
231
|
-
- spec/integration/template_manager_erb_spec.rb
|
232
234
|
- spec/integration/tempster_spec.rb
|
233
|
-
- spec/integration/
|
234
|
-
- spec/
|
235
|
-
- spec/extras/scratch.rb
|
236
|
-
- spec/extras/automateit_service_sysv_test
|
237
|
-
- spec/extras/simple_recipe.rb
|
235
|
+
- spec/integration/account_manager_spec.rb
|
236
|
+
- spec/spec_helper.rb
|
238
237
|
has_rdoc: true
|
239
238
|
homepage: http://automateit.org/
|
240
239
|
post_install_message:
|
241
240
|
rdoc_options:
|
241
|
+
- --op
|
242
|
+
- doc
|
242
243
|
- --main
|
243
244
|
- README.txt
|
244
245
|
- --promiscuous
|
245
246
|
- --accessor
|
246
247
|
- class_inheritable_accessor=R
|
248
|
+
- --inline-source
|
249
|
+
- --line-numbers
|
247
250
|
- --title
|
248
251
|
- "AutomateIt: Open source server automation"
|
249
252
|
- - lib
|
250
|
-
- docs
|
251
253
|
require_paths:
|
252
254
|
- lib
|
253
255
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -265,45 +267,44 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
265
267
|
requirements: []
|
266
268
|
|
267
269
|
rubyforge_project: automateit
|
268
|
-
rubygems_version: 1.0
|
270
|
+
rubygems_version: 1.2.0
|
269
271
|
signing_key:
|
270
272
|
specification_version: 2
|
271
273
|
summary: AutomateIt is an open source tool for automating the setup and maintenance of servers, applications and their dependencies.
|
272
274
|
test_files:
|
273
|
-
- spec/
|
275
|
+
- spec/breaker.rb
|
274
276
|
- spec/unit
|
275
277
|
- spec/unit/plugins_spec.rb
|
276
278
|
- spec/unit/template_manager_erb_spec.rb
|
279
|
+
- spec/unit/hashcache_spec.rb
|
280
|
+
- spec/unit/shell_escape_spec.rb
|
281
|
+
- spec/unit/edit_manager_spec.rb
|
277
282
|
- spec/unit/field_manager_spec.rb
|
283
|
+
- spec/unit/nested_error_spec.rb
|
278
284
|
- spec/unit/tag_manager_spec.rb
|
279
|
-
- spec/unit/
|
285
|
+
- spec/unit/address_manager_spec.rb
|
280
286
|
- spec/unit/interpreter_spec.rb
|
281
287
|
- spec/unit/platform_manager_spec.rb
|
282
|
-
- spec/unit/address_manager_spec.rb
|
283
|
-
- spec/unit/edit_manager_spec.rb
|
284
|
-
- spec/unit/nested_error_spec.rb
|
285
|
-
- spec/unit/object_spec.rb
|
286
288
|
- spec/unit/package_manager_spec.rb
|
287
|
-
- spec/unit/
|
289
|
+
- spec/unit/object_spec.rb
|
290
|
+
- spec/extras
|
291
|
+
- spec/extras/scratch.rb
|
292
|
+
- spec/extras/automateit_service_sysv_test
|
293
|
+
- spec/extras/simple_recipe.rb
|
288
294
|
- spec/integration
|
295
|
+
- spec/integration/cli_spec.rb
|
296
|
+
- spec/integration/template_manager_erb_spec.rb
|
297
|
+
- spec/integration/examples_spec.rb
|
298
|
+
- spec/integration/edit_manager_spec.rb
|
299
|
+
- spec/integration/download_spec.rb
|
289
300
|
- spec/integration/service_manager_sysv_spec.rb
|
301
|
+
- spec/integration/address_manager_spec.rb
|
302
|
+
- spec/integration/examples_spec_editor.rb
|
303
|
+
- spec/integration/shell_manager_spec.rb
|
290
304
|
- spec/integration/account_manager_nscd_spec.rb
|
305
|
+
- spec/integration/platform_manager_spec.rb
|
291
306
|
- spec/integration/package_manager_spec.rb
|
292
307
|
- spec/integration/address_manager_portable_spec.rb
|
293
|
-
- spec/integration/platform_manager_spec.rb
|
294
|
-
- spec/integration/cli_spec.rb
|
295
|
-
- spec/integration/shell_manager_spec.rb
|
296
|
-
- spec/integration/account_manager_spec.rb
|
297
|
-
- spec/integration/address_manager_spec.rb
|
298
|
-
- spec/integration/download_spec.rb
|
299
|
-
- spec/integration/edit_manager_spec.rb
|
300
|
-
- spec/integration/examples_spec.rb
|
301
|
-
- spec/integration/examples_spec_editor.rb
|
302
|
-
- spec/integration/template_manager_erb_spec.rb
|
303
308
|
- spec/integration/tempster_spec.rb
|
304
|
-
- spec/integration/
|
305
|
-
- spec/
|
306
|
-
- spec/extras
|
307
|
-
- spec/extras/scratch.rb
|
308
|
-
- spec/extras/automateit_service_sysv_test
|
309
|
-
- spec/extras/simple_recipe.rb
|
309
|
+
- spec/integration/account_manager_spec.rb
|
310
|
+
- spec/spec_helper.rb
|