sqlup 0.0.4 → 0.0.5

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.
Files changed (5) hide show
  1. data/History.txt +6 -0
  2. data/Manifest.txt +25 -25
  3. data/Rakefile +2 -1
  4. data/lib/mysql_backup.rb +2 -2
  5. metadata +36 -27
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ == 0.0.5 / 2007-07-03
2
+
3
+ * 1 major enhancement
4
+ * Added activerecord to dependencies as a quick fix;
5
+ code should be changed to not use activerecord.
6
+
1
7
  == 0.0.4 / 2007-06-24
2
8
 
3
9
  * 1 major enhancement
data/Manifest.txt CHANGED
@@ -4,35 +4,35 @@ README.txt
4
4
  Rakefile
5
5
  bin/sqlup
6
6
  bin/sqlup_control
7
- test/unit/mysql_backup/librarian/librarian_test.rb
8
- test/unit/mysql_backup/librarian/backup_test.rb
9
- test/unit/mysql_backup/librarian/backup_collection_test.rb
10
- test/unit/mysql_backup/utilities/test_helper.rb
11
- test/unit/mysql_backup/storage/test_helper.rb
12
- test/unit/mysql_backup/storage/s3_test.rb
13
- test/unit/mysql_backup/entity/files/myisam_test.rb
14
- test/unit/mysql_backup/entity/files/files_test.rb
15
- test/unit/mysql_backup/entity/files/innodb_test.rb
16
- test/unit/mysql_backup/entity/logs_test.rb
17
- test/unit/mysql_backup/entity/mysqldump_test.rb
18
- test/unit/mysql_backup/entity/identifier_test.rb
19
- test/unit/mysql_backup/test_helper.rb
20
- test/unit/mysql_backup/server_test.rb
21
- test/unit/test_helper.rb
22
- lib/mysql_backup/librarian/backup.rb
23
- lib/mysql_backup/librarian/backup_collection.rb
24
- lib/mysql_backup/entity/files/myisam.rb
7
+ config/environment.rb
8
+ lib/mysql_backup.rb
9
+ lib/mysql_backup/entity.rb
10
+ lib/mysql_backup/entity/files.rb
25
11
  lib/mysql_backup/entity/files/innodb.rb
12
+ lib/mysql_backup/entity/files/myisam.rb
26
13
  lib/mysql_backup/entity/identifier.rb
27
14
  lib/mysql_backup/entity/logs.rb
28
15
  lib/mysql_backup/entity/mysqldump.rb
29
- lib/mysql_backup/entity/files.rb
30
- lib/mysql_backup/storage/s3.rb
31
- lib/mysql_backup/utilities/factory_create_method.rb
32
- lib/mysql_backup/server.rb
33
16
  lib/mysql_backup/librarian.rb
17
+ lib/mysql_backup/librarian/backup.rb
18
+ lib/mysql_backup/librarian/backup_collection.rb
19
+ lib/mysql_backup/server.rb
34
20
  lib/mysql_backup/storage.rb
35
- lib/mysql_backup/entity.rb
36
- lib/mysql_backup.rb
21
+ lib/mysql_backup/storage/s3.rb
22
+ lib/mysql_backup/utilities/factory_create_method.rb
37
23
  lib/sqlup.rb
38
- config/environment.rb
24
+ test/unit/mysql_backup/entity/files/files_test.rb
25
+ test/unit/mysql_backup/entity/files/innodb_test.rb
26
+ test/unit/mysql_backup/entity/files/myisam_test.rb
27
+ test/unit/mysql_backup/entity/identifier_test.rb
28
+ test/unit/mysql_backup/entity/logs_test.rb
29
+ test/unit/mysql_backup/entity/mysqldump_test.rb
30
+ test/unit/mysql_backup/librarian/backup_collection_test.rb
31
+ test/unit/mysql_backup/librarian/backup_test.rb
32
+ test/unit/mysql_backup/librarian/librarian_test.rb
33
+ test/unit/mysql_backup/server_test.rb
34
+ test/unit/mysql_backup/storage/s3_test.rb
35
+ test/unit/mysql_backup/storage/test_helper.rb
36
+ test/unit/mysql_backup/test_helper.rb
37
+ test/unit/mysql_backup/utilities/test_helper.rb
38
+ test/unit/test_helper.rb
data/Rakefile CHANGED
@@ -12,7 +12,8 @@ Hoe.new('sqlup', MysqlBackup::VERSION) do |p|
12
12
  p.extra_deps << ['optiflag', '>= 0.6.5']
13
13
  p.extra_deps << ['daemons', '>= 1.0.6']
14
14
  p.extra_deps << ['aws-s3', '>= 0.3.0']
15
- p.remote_rdoc_dir = '.'
15
+ p.extra_deps << 'activerecord'
16
+ p.remote_rdoc_dir = ''
16
17
  end
17
18
 
18
19
  Rake::TestTask.new do |t|
data/lib/mysql_backup.rb CHANGED
@@ -4,5 +4,5 @@ require 'mysql_backup/librarian'
4
4
  require 'mysql_backup/storage/s3'
5
5
 
6
6
  module MysqlBackup
7
- VERSION = '0.0.4'
8
- end
7
+ VERSION = '0.0.5'
8
+ end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: sqlup
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.4
7
- date: 2007-06-24 00:00:00 -07:00
6
+ version: 0.0.5
7
+ date: 2007-07-03 00:00:00 -07:00
8
8
  summary: A backup tool for saving MySQL data to Amazon's S3 service
9
9
  require_paths:
10
10
  - lib
@@ -35,38 +35,38 @@ files:
35
35
  - Rakefile
36
36
  - bin/sqlup
37
37
  - bin/sqlup_control
38
- - test/unit/mysql_backup/librarian/librarian_test.rb
39
- - test/unit/mysql_backup/librarian/backup_test.rb
40
- - test/unit/mysql_backup/librarian/backup_collection_test.rb
41
- - test/unit/mysql_backup/utilities/test_helper.rb
42
- - test/unit/mysql_backup/storage/test_helper.rb
43
- - test/unit/mysql_backup/storage/s3_test.rb
44
- - test/unit/mysql_backup/entity/files/myisam_test.rb
45
- - test/unit/mysql_backup/entity/files/files_test.rb
46
- - test/unit/mysql_backup/entity/files/innodb_test.rb
47
- - test/unit/mysql_backup/entity/logs_test.rb
48
- - test/unit/mysql_backup/entity/mysqldump_test.rb
49
- - test/unit/mysql_backup/entity/identifier_test.rb
50
- - test/unit/mysql_backup/test_helper.rb
51
- - test/unit/mysql_backup/server_test.rb
52
- - test/unit/test_helper.rb
53
- - lib/mysql_backup/librarian/backup.rb
54
- - lib/mysql_backup/librarian/backup_collection.rb
55
- - lib/mysql_backup/entity/files/myisam.rb
38
+ - config/environment.rb
39
+ - lib/mysql_backup.rb
40
+ - lib/mysql_backup/entity.rb
41
+ - lib/mysql_backup/entity/files.rb
56
42
  - lib/mysql_backup/entity/files/innodb.rb
43
+ - lib/mysql_backup/entity/files/myisam.rb
57
44
  - lib/mysql_backup/entity/identifier.rb
58
45
  - lib/mysql_backup/entity/logs.rb
59
46
  - lib/mysql_backup/entity/mysqldump.rb
60
- - lib/mysql_backup/entity/files.rb
61
- - lib/mysql_backup/storage/s3.rb
62
- - lib/mysql_backup/utilities/factory_create_method.rb
63
- - lib/mysql_backup/server.rb
64
47
  - lib/mysql_backup/librarian.rb
48
+ - lib/mysql_backup/librarian/backup.rb
49
+ - lib/mysql_backup/librarian/backup_collection.rb
50
+ - lib/mysql_backup/server.rb
65
51
  - lib/mysql_backup/storage.rb
66
- - lib/mysql_backup/entity.rb
67
- - lib/mysql_backup.rb
52
+ - lib/mysql_backup/storage/s3.rb
53
+ - lib/mysql_backup/utilities/factory_create_method.rb
68
54
  - lib/sqlup.rb
69
- - config/environment.rb
55
+ - test/unit/mysql_backup/entity/files/files_test.rb
56
+ - test/unit/mysql_backup/entity/files/innodb_test.rb
57
+ - test/unit/mysql_backup/entity/files/myisam_test.rb
58
+ - test/unit/mysql_backup/entity/identifier_test.rb
59
+ - test/unit/mysql_backup/entity/logs_test.rb
60
+ - test/unit/mysql_backup/entity/mysqldump_test.rb
61
+ - test/unit/mysql_backup/librarian/backup_collection_test.rb
62
+ - test/unit/mysql_backup/librarian/backup_test.rb
63
+ - test/unit/mysql_backup/librarian/librarian_test.rb
64
+ - test/unit/mysql_backup/server_test.rb
65
+ - test/unit/mysql_backup/storage/s3_test.rb
66
+ - test/unit/mysql_backup/storage/test_helper.rb
67
+ - test/unit/mysql_backup/test_helper.rb
68
+ - test/unit/mysql_backup/utilities/test_helper.rb
69
+ - test/unit/test_helper.rb
70
70
  test_files:
71
71
  - test/unit/test_helper.rb
72
72
  - test/unit/mysql_backup/test_helper.rb
@@ -123,6 +123,15 @@ dependencies:
123
123
  - !ruby/object:Gem::Version
124
124
  version: 0.3.0
125
125
  version:
126
+ - !ruby/object:Gem::Dependency
127
+ name: activerecord
128
+ version_requirement:
129
+ version_requirements: !ruby/object:Gem::Version::Requirement
130
+ requirements:
131
+ - - ">"
132
+ - !ruby/object:Gem::Version
133
+ version: 0.0.0
134
+ version:
126
135
  - !ruby/object:Gem::Dependency
127
136
  name: hoe
128
137
  version_requirement: