siba 0.5.6 → 0.5.7
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.md +3 -3
- data/Rakefile +6 -6
- data/lib/siba/backup.rb +2 -2
- data/lib/siba/console.rb +13 -13
- data/lib/siba/generator.rb +4 -5
- data/lib/siba/helpers/file_helper.rb +6 -6
- data/lib/siba/helpers/password_strength.rb +5 -5
- data/lib/siba/helpers/security_helper.rb +9 -9
- data/lib/siba/helpers/test/extend_test.rb +7 -7
- data/lib/siba/helpers/test/helper.rb +3 -3
- data/lib/siba/logger_plug.rb +1 -1
- data/lib/siba/plugins/archive/tar/archive.rb +8 -8
- data/lib/siba/plugins/archive/tar/init.rb +3 -3
- data/lib/siba/plugins/destination/dir/dest_dir.rb +7 -7
- data/lib/siba/plugins/destination/dir/init.rb +2 -2
- data/lib/siba/plugins/encryption/gpg/encryption.rb +10 -10
- data/lib/siba/plugins/encryption/gpg/init.rb +1 -1
- data/lib/siba/plugins/installed_plugins.rb +10 -6
- data/lib/siba/plugins/plugin_loader.rb +6 -5
- data/lib/siba/plugins/source/files/files.rb +7 -7
- data/lib/siba/plugins/source/files/init.rb +2 -2
- data/lib/siba/restore.rb +5 -5
- data/lib/siba/scaffold.rb +17 -17
- data/lib/siba/siba_check.rb +3 -3
- data/lib/siba/siba_file.rb +6 -6
- data/lib/siba/siba_logger.rb +11 -11
- data/lib/siba/tasks/siba_task.rb +1 -1
- data/lib/siba/tasks/siba_tasks.rb +7 -7
- data/lib/siba/test_files.rb +4 -4
- data/lib/siba/tmp_dir.rb +4 -4
- data/lib/siba/version.rb +1 -1
- data/scaffolds/archive.rb +3 -3
- data/scaffolds/destination.rb +4 -4
- data/scaffolds/encryption.rb +3 -3
- data/scaffolds/project/siba-c6y-demo.gemspec +2 -2
- data/scaffolds/project/test/helper/require_integration.rb +1 -1
- data/scaffolds/project/test/integration/i9n_init.rb +4 -4
- data/scaffolds/project/test/unit/test_init.rb +8 -8
- data/scaffolds/shared/examples.rb +4 -4
- data/scaffolds/source.rb +4 -4
- data/siba.gemspec +1 -1
- data/test/integration/helpers/i9n_file_helper.rb +1 -1
- data/test/integration/i9n_backup.rb +1 -1
- data/test/integration/i9n_scaffold.rb +1 -1
- data/test/integration/i9n_test_unicode_files.rb +1 -1
- data/test/integration/i9n_tmp_dir.rb +2 -2
- data/test/integration/plugins/destination/dir/i9n_dest_dir.rb +1 -1
- data/test/integration/plugins/encryption/gpg/i9n_encryption.rb +4 -4
- data/test/integration/plugins/source/files/i9n_files.rb +6 -6
- data/test/integration/tasks/i9n_siba_tasks.rb +2 -2
- data/test/unit/helpers/test_encoding_helper.rb +1 -1
- data/test/unit/helpers/test_gem_helper.rb +1 -1
- data/test/unit/helpers/test_security_helper.rb +1 -1
- data/test/unit/helpers/test_string_helper.rb +1 -1
- data/test/unit/plugins/archive/tar/test_archive.rb +2 -2
- data/test/unit/plugins/archive/tar/test_init.rb +2 -2
- data/test/unit/plugins/destination/dir/test_dest_dir.rb +1 -1
- data/test/unit/plugins/destination/dir/test_init.rb +1 -1
- data/test/unit/plugins/encryption/gpg/test_encryption.rb +2 -14
- data/test/unit/plugins/encryption/gpg/test_init.rb +3 -3
- data/test/unit/plugins/source/files/test_files.rb +2 -2
- data/test/unit/plugins/source/files/test_init.rb +3 -3
- data/test/unit/plugins/source/files/test_path_match.rb +6 -6
- data/test/unit/plugins/test_installed_plugins.rb +4 -0
- data/test/unit/plugins/test_plugin_loader.rb +6 -3
- data/test/unit/tasks/test_siba_task.rb +2 -2
- data/test/unit/tasks/test_siba_tasks.rb +3 -3
- data/test/unit/test_backup.rb +2 -2
- data/test/unit/test_console.rb +5 -5
- data/test/unit/test_generator.rb +1 -1
- data/test/unit/test_globals.rb +1 -1
- data/test/unit/test_log_message.rb +1 -1
- data/test/unit/test_logger_plug.rb +1 -1
- data/test/unit/test_options_backup.rb +1 -1
- data/test/unit/test_options_loader.rb +27 -39
- data/test/unit/test_password_strength.rb +14 -14
- data/test/unit/test_restore.rb +2 -2
- data/test/unit/test_siba_logger.rb +18 -18
- data/test/unit/test_tmp_dir.rb +1 -1
- metadata +5 -5
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
|
3
|
-
require 'helper/require_unit'
|
3
|
+
require 'helper/require_unit'
|
4
4
|
|
5
5
|
describe Siba::SibaTasks do
|
6
6
|
before do
|
@@ -42,7 +42,7 @@ describe Siba::SibaTasks do
|
|
42
42
|
st.backup_name(Time.new 2012, 1, 22).must_equal "siba-week-4-sun"
|
43
43
|
st.backup_name(Time.new 2012, 1, 29).must_equal "siba-week-5-sun"
|
44
44
|
st.backup_name(Time.new 2012, 2, 5).must_equal "siba-week-1-sun"
|
45
|
-
|
45
|
+
|
46
46
|
# Daily backup
|
47
47
|
st.backup_name(Time.new 2012, 1, 2).must_equal "siba-day-2-mon"
|
48
48
|
st.backup_name(Time.new 2012, 1, 3).must_equal "siba-day-3-tue"
|
@@ -55,7 +55,7 @@ describe Siba::SibaTasks do
|
|
55
55
|
Siba.backup_name = "cuba"
|
56
56
|
st.backup_name(Time.new 2012, 1, 9).must_equal "cuba-day-2-mon"
|
57
57
|
end
|
58
|
-
|
58
|
+
|
59
59
|
it "backup name should raise error is Siba.backup_name is not set" do
|
60
60
|
st = Siba::SibaTasks
|
61
61
|
Siba.backup_name = nil
|
data/test/unit/test_backup.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
|
3
|
-
require 'helper/require_unit'
|
3
|
+
require 'helper/require_unit'
|
4
4
|
|
5
5
|
describe Siba::Backup do
|
6
6
|
before do
|
7
7
|
@yml_path = File.expand_path('../yml', __FILE__)
|
8
8
|
end
|
9
|
-
|
9
|
+
|
10
10
|
it "should call restore" do
|
11
11
|
Siba::LoggerPlug.close
|
12
12
|
Siba::SibaLogger.quiet = true
|
data/test/unit/test_console.rb
CHANGED
@@ -30,7 +30,7 @@ describe Siba::Console do
|
|
30
30
|
@console.parse [@unused, "--quiet"]
|
31
31
|
Siba::SibaLogger.quiet.must_equal true
|
32
32
|
end
|
33
|
-
|
33
|
+
|
34
34
|
it "should accept verbose mode with v" do
|
35
35
|
Siba::SibaLogger.verbose = false
|
36
36
|
@console.parse [@unused, "-v"]
|
@@ -60,7 +60,7 @@ describe Siba::Console do
|
|
60
60
|
@console.parse [@unused, "--current-source"]
|
61
61
|
@console.options["cur"].must_equal true
|
62
62
|
end
|
63
|
-
|
63
|
+
|
64
64
|
it "should fail when using both log and no-log" do
|
65
65
|
Siba::SibaLogger.no_log = false
|
66
66
|
->{@console.parse [@unused, "--no-log", "--log=test"]}.must_raise Siba::ConsoleArgumentError
|
@@ -96,7 +96,7 @@ describe Siba::Console do
|
|
96
96
|
it "should fail when backup options file is missing" do
|
97
97
|
->{@console.parse ["backup"]}.must_raise Siba::ConsoleArgumentError
|
98
98
|
end
|
99
|
-
|
99
|
+
|
100
100
|
it "should fail when needless arguments are specified" do
|
101
101
|
->{@console.parse ["backup", "one", "two"]}.must_raise Siba::ConsoleArgumentError
|
102
102
|
end
|
@@ -122,7 +122,7 @@ describe Siba::Console do
|
|
122
122
|
it "scaffold should fail when name is missing" do
|
123
123
|
->{@console.parse ["s", "destination"]}.must_raise Siba::ConsoleArgumentError
|
124
124
|
end
|
125
|
-
|
125
|
+
|
126
126
|
it "should fail when needless arguments are specified" do
|
127
127
|
->{@console.parse ["s", "source", "name", "needless"]}.must_raise Siba::ConsoleArgumentError
|
128
128
|
end
|
@@ -164,7 +164,7 @@ describe Siba::Console do
|
|
164
164
|
it "should fail when backup options file is missing" do
|
165
165
|
->{@console.parse ["restore"]}.must_raise Siba::ConsoleArgumentError
|
166
166
|
end
|
167
|
-
|
167
|
+
|
168
168
|
it "should fail when needless arguments are specified" do
|
169
169
|
->{@console.parse ["restore", "one", "two"]}.must_raise Siba::ConsoleArgumentError
|
170
170
|
end
|
data/test/unit/test_generator.rb
CHANGED
data/test/unit/test_globals.rb
CHANGED
@@ -23,7 +23,7 @@ describe Siba::LoggerPlug do
|
|
23
23
|
end
|
24
24
|
|
25
25
|
it "must have logger of type SibaLogger" do
|
26
|
-
Siba::LoggerPlug.logger.must_be_instance_of Siba::SibaLogger
|
26
|
+
Siba::LoggerPlug.logger.must_be_instance_of Siba::SibaLogger
|
27
27
|
end
|
28
28
|
|
29
29
|
it "must include logger instance method" do
|
@@ -11,7 +11,7 @@ describe Siba::OptionsBackup do
|
|
11
11
|
it "should call save_options_backup" do
|
12
12
|
@cls.save_options_backup File.join(@yml_path, "valid.yml"), "/dir"
|
13
13
|
end
|
14
|
-
|
14
|
+
|
15
15
|
it "should call load_source_from_backup" do
|
16
16
|
options = load_options Siba::OptionsBackup::OPTIONS_BACKUP_FILE_NAME
|
17
17
|
new_task = @cls.load_source_from_backup @yml_path
|
@@ -1,72 +1,60 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
|
3
|
-
require 'helper/require_unit'
|
3
|
+
require 'helper/require_unit'
|
4
4
|
|
5
|
-
|
6
|
-
|
5
|
+
describe Siba::OptionsLoader do
|
6
|
+
before do
|
7
7
|
@yml_path = File.expand_path('../yml/options_loader', __FILE__)
|
8
8
|
end
|
9
9
|
|
10
|
-
|
10
|
+
it 'should load yml' do
|
11
11
|
load_options "valid"
|
12
|
-
|
12
|
+
@options.must_be_instance_of Hash
|
13
13
|
end
|
14
14
|
|
15
|
-
|
15
|
+
it 'should load hash from yml' do
|
16
16
|
hash = Siba::OptionsLoader.load_hash_from_yml File.join(@yml_path, "valid.yml")
|
17
|
-
|
17
|
+
hash.must_be_instance_of Hash
|
18
18
|
end
|
19
|
-
|
20
|
-
|
19
|
+
|
20
|
+
it 'should load erb' do
|
21
21
|
data = Siba::OptionsLoader.load_erb File.join(@yml_path, "valid.yml")
|
22
|
-
|
23
|
-
|
22
|
+
data.must_be_instance_of String
|
23
|
+
data.wont_be_empty
|
24
24
|
end
|
25
25
|
|
26
|
-
|
26
|
+
it 'should render erb template' do
|
27
27
|
load_options "valid"
|
28
|
-
|
28
|
+
@options["erb"].must_equal 4
|
29
29
|
end
|
30
30
|
|
31
|
-
|
31
|
+
it 'should fail if options file does not have yml extension' do
|
32
32
|
path = File.join @yml_path, "file_without_yml_extension"
|
33
|
-
|
34
|
-
Siba::OptionsLoader.load_yml(path)
|
35
|
-
end
|
33
|
+
-> { Siba::OptionsLoader.load_yml(path) }.must_raise Siba::Error
|
36
34
|
end
|
37
35
|
|
38
|
-
|
39
|
-
|
40
|
-
load_options "missing"
|
41
|
-
end
|
36
|
+
it 'should fail to load missing file' do
|
37
|
+
-> { load_options "missing" }.must_raise Siba::Error
|
42
38
|
end
|
43
39
|
|
44
|
-
|
45
|
-
|
46
|
-
load_options "invalid"
|
47
|
-
end
|
40
|
+
it 'should fail to load invalid yml' do
|
41
|
+
-> { load_options "invalid" }.must_raise Siba::Error
|
48
42
|
end
|
49
43
|
|
50
|
-
|
51
|
-
|
52
|
-
load_options "empty"
|
53
|
-
end
|
44
|
+
it 'should fail to load empty yml' do
|
45
|
+
-> { load_options "empty" }.must_raise Siba::Error
|
54
46
|
end
|
55
47
|
|
56
|
-
|
57
|
-
|
58
|
-
load_options "string"
|
59
|
-
end
|
48
|
+
it 'should fail to to yml with a string' do
|
49
|
+
-> { load_options "string" }.must_raise Siba::Error
|
60
50
|
end
|
61
51
|
|
62
|
-
|
63
|
-
|
64
|
-
load_options "array"
|
65
|
-
end
|
52
|
+
it 'should fail to load yml with array' do
|
53
|
+
-> { load_options "array" }.must_raise Siba::Error
|
66
54
|
end
|
67
55
|
|
68
|
-
|
56
|
+
it 'should load yml with bom' do
|
69
57
|
options = load_options("utf8_with_bom")
|
70
|
-
|
58
|
+
options["key"].must_equal "value"
|
71
59
|
end
|
72
60
|
end
|
@@ -11,18 +11,18 @@ describe Siba::PasswordStrength do
|
|
11
11
|
it "should run seconds_to_crack" do
|
12
12
|
Siba::PasswordStrength.seconds_to_crack("Pass123$").round(2).must_equal 67.05
|
13
13
|
end
|
14
|
-
|
14
|
+
|
15
15
|
it "runs seconds_to_crack with a very long password" do
|
16
|
-
Siba::PasswordStrength.seconds_to_crack("very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
17
|
-
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
18
|
-
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
19
|
-
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
20
|
-
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
21
|
-
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
22
|
-
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
23
|
-
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
24
|
-
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
25
|
-
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
16
|
+
Siba::PasswordStrength.seconds_to_crack("very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
17
|
+
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
18
|
+
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
19
|
+
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
20
|
+
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
21
|
+
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
22
|
+
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
23
|
+
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
24
|
+
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
25
|
+
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
26
26
|
very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd").must_equal Float::INFINITY
|
27
27
|
end
|
28
28
|
|
@@ -36,10 +36,10 @@ very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd very lonG p@asswoRd
|
|
36
36
|
|
37
37
|
it "should run seconds_to_timespan" do
|
38
38
|
two_cents = 200 * 365 * 86400
|
39
|
-
thousand = 1000
|
39
|
+
thousand = 1000
|
40
40
|
million = 1000 * 1000
|
41
|
-
billion = 1000 * 1000 * 1000
|
42
|
-
|
41
|
+
billion = 1000 * 1000 * 1000
|
42
|
+
|
43
43
|
valid_strings = [
|
44
44
|
[0.2, "less than a second"],
|
45
45
|
[0.5, "less than a second"],
|
data/test/unit/test_restore.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
|
3
|
-
require 'helper/require_unit'
|
3
|
+
require 'helper/require_unit'
|
4
4
|
|
5
5
|
describe Siba::Restore do
|
6
6
|
before do
|
7
7
|
@yml_path = File.expand_path('../yml', __FILE__)
|
8
8
|
end
|
9
|
-
|
9
|
+
|
10
10
|
it "should call restore without loading source plugin" do
|
11
11
|
Siba::LoggerPlug.close
|
12
12
|
Siba::SibaLogger.quiet = true
|
@@ -11,26 +11,26 @@ describe Siba::SibaLogger do
|
|
11
11
|
describe "when access class" do
|
12
12
|
it "must access quiet" do
|
13
13
|
@cls.quiet = true
|
14
|
-
@cls.quiet.must_equal true
|
14
|
+
@cls.quiet.must_equal true
|
15
15
|
end
|
16
|
-
|
16
|
+
|
17
17
|
it "must access verbose" do
|
18
18
|
@cls.verbose = true
|
19
|
-
@cls.verbose.must_equal true
|
19
|
+
@cls.verbose.must_equal true
|
20
20
|
end
|
21
|
-
|
21
|
+
|
22
22
|
it "must access no_log" do
|
23
23
|
@cls.no_log = true
|
24
|
-
@cls.no_log.must_equal true
|
24
|
+
@cls.no_log.must_equal true
|
25
25
|
end
|
26
26
|
|
27
27
|
it "must contain LogLevels" do
|
28
|
-
@cls::LogLevels.must_include "debug"
|
29
|
-
@cls::LogLevels.must_include "info"
|
30
|
-
@cls::LogLevels.must_include "warn"
|
31
|
-
@cls::LogLevels.must_include "error"
|
32
|
-
@cls::LogLevels.must_include "fatal"
|
33
|
-
@cls::LogLevels.must_include "unknown"
|
28
|
+
@cls::LogLevels.must_include "debug"
|
29
|
+
@cls::LogLevels.must_include "info"
|
30
|
+
@cls::LogLevels.must_include "warn"
|
31
|
+
@cls::LogLevels.must_include "error"
|
32
|
+
@cls::LogLevels.must_include "fatal"
|
33
|
+
@cls::LogLevels.must_include "unknown"
|
34
34
|
end
|
35
35
|
|
36
36
|
it "must check given log level" do
|
@@ -43,7 +43,7 @@ describe Siba::SibaLogger do
|
|
43
43
|
end
|
44
44
|
|
45
45
|
it "check_log_level must raise for unsupported level" do
|
46
|
-
-> { @cls::check_log_level("weird") }.must_raise RuntimeError
|
46
|
+
-> { @cls::check_log_level("weird") }.must_raise RuntimeError
|
47
47
|
end
|
48
48
|
|
49
49
|
it "must return log level integer" do
|
@@ -95,11 +95,11 @@ describe Siba::SibaLogger do
|
|
95
95
|
@cls.messages[1].must_be_instance_of Siba::LogMessage
|
96
96
|
@cls.messages[1].msg.must_equal "msg1"
|
97
97
|
@cls.messages[1].level.must_equal @cls.level_to_i("debug")
|
98
|
-
@cls.messages[1].time.must_be_instance_of Time
|
98
|
+
@cls.messages[1].time.must_be_instance_of Time
|
99
99
|
@cls.messages[3].msg.must_equal "msg3"
|
100
100
|
@cls.messages[3].level.must_equal @cls.level_to_i("warn")
|
101
101
|
end
|
102
|
-
|
102
|
+
|
103
103
|
it "should raise when called missing method" do
|
104
104
|
->{ @logger.this_is_a_missing_method("msg") }.must_raise NoMethodError
|
105
105
|
end
|
@@ -107,7 +107,7 @@ describe Siba::SibaLogger do
|
|
107
107
|
it "should log on different levels" do
|
108
108
|
@cls::LogLevels.each do |level|
|
109
109
|
@cls.count(level, true).must_equal (level == "info" ? 1 : 0)
|
110
|
-
end
|
110
|
+
end
|
111
111
|
|
112
112
|
@cls::LogLevels.each do |level|
|
113
113
|
@logger.send(level,"#{level} message")
|
@@ -115,7 +115,7 @@ describe Siba::SibaLogger do
|
|
115
115
|
|
116
116
|
@cls::LogLevels.each do |level|
|
117
117
|
@cls.count(level, true).must_equal (level == "info" ? 2 : 1)
|
118
|
-
end
|
118
|
+
end
|
119
119
|
end
|
120
120
|
|
121
121
|
it "count must return correct number of message for severity lever" do
|
@@ -152,7 +152,7 @@ describe Siba::SibaLogger do
|
|
152
152
|
@logger.error "err1"
|
153
153
|
@logger.error "err2"
|
154
154
|
@logger.error "err3"
|
155
|
-
|
155
|
+
|
156
156
|
@cls.count_messages("debug1").must_equal 1
|
157
157
|
@cls.count_messages("debug1", "debug").must_equal 1
|
158
158
|
@cls.count_messages("debug", "debug").must_equal 1
|
@@ -166,7 +166,7 @@ describe Siba::SibaLogger do
|
|
166
166
|
@cls.count_messages("info", "debug", false).must_equal 2
|
167
167
|
@cls.count_messages("info", "info").must_equal 2
|
168
168
|
@cls.count_messages("info", "warn").must_equal 0
|
169
|
-
|
169
|
+
|
170
170
|
@cls.count_messages("err").must_equal 3
|
171
171
|
@cls.count_messages("err", "error").must_equal 3
|
172
172
|
@cls.count_messages("err1", "error").must_equal 1
|
data/test/unit/test_tmp_dir.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: siba
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-06-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: minitest
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: '
|
21
|
+
version: '3.0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ~>
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '
|
29
|
+
version: '3.0'
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: rake
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -249,7 +249,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
249
249
|
version: '1.8'
|
250
250
|
requirements: []
|
251
251
|
rubyforge_project:
|
252
|
-
rubygems_version: 1.8.
|
252
|
+
rubygems_version: 1.8.24
|
253
253
|
signing_key:
|
254
254
|
specification_version: 3
|
255
255
|
summary: Simple backup and restore utility.
|