yore 0.0.3 → 0.0.4
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/History.txt +6 -0
- data/Manifest.txt +4 -0
- data/README.rdoc +33 -6
- data/bin/yore +22 -7
- data/lib/ihl_ruby/config.rb +95 -0
- data/lib/ihl_ruby/database_utils.rb +89 -0
- data/lib/ihl_ruby/extend_base_classes.rb +6 -0
- data/lib/ihl_ruby/misc_utils.rb +2 -1
- data/lib/ihl_ruby/xml_utils.rb +19 -5
- data/lib/yore.orig.rb +1 -1
- data/lib/yore/yore_core.rb +265 -141
- data/test/S3_test.rb +141 -0
- data/test/loadsave_yore_test.rb +182 -0
- data/test/test_job_b.xml +6 -13
- data/test/yore_test.rb +10 -139
- metadata +7 -4
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gary McGhee
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-08-01 00:00:00 +08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -72,7 +72,7 @@ dependencies:
|
|
72
72
|
- !ruby/object:Gem::Version
|
73
73
|
version: 1.8.0
|
74
74
|
version:
|
75
|
-
description: yore (as in "days of yore") is
|
75
|
+
description: yore (as in "days of yore") is a data management utility for web applications. It provides hands-off scheduled backup functions, combines file and database data into a single file, knows certain applications, particularly Rails related ones, and can use Amazon S3 for storage.
|
76
76
|
email:
|
77
77
|
- contact@buzz@ware@com@au
|
78
78
|
executables:
|
@@ -95,6 +95,7 @@ files:
|
|
95
95
|
- lib/ihl_ruby/string_utils.rb
|
96
96
|
- lib/ihl_ruby/xml_utils.rb
|
97
97
|
- lib/ihl_ruby/shell_extras.rb
|
98
|
+
- lib/ihl_ruby/database_utils.rb
|
98
99
|
- lib/yore.orig.rb
|
99
100
|
- lib/yore/yore_core.rb
|
100
101
|
- Manifest.txt
|
@@ -107,6 +108,8 @@ files:
|
|
107
108
|
- test/test_job_a.xml
|
108
109
|
- test/test_job_b.xml
|
109
110
|
- test/yore_test.rb
|
111
|
+
- test/loadsave_yore_test.rb
|
112
|
+
- test/S3_test.rb
|
110
113
|
has_rdoc: true
|
111
114
|
homepage: "RubyForge Project : http://rubyforge.org/projects/buzzware"
|
112
115
|
post_install_message:
|
@@ -133,6 +136,6 @@ rubyforge_project: buzzware
|
|
133
136
|
rubygems_version: 1.3.1
|
134
137
|
signing_key:
|
135
138
|
specification_version: 2
|
136
|
-
summary: yore (as in "days of yore") is
|
139
|
+
summary: yore (as in "days of yore") is a data management utility for web applications
|
137
140
|
test_files: []
|
138
141
|
|