yore 0.2.3 → 0.2.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/VERSION +1 -1
- data/lib/yore/yore_core.rb +2 -3
- data/yore.gemspec +3 -4
- metadata +6 -6
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.4
|
data/lib/yore/yore_core.rb
CHANGED
|
@@ -256,12 +256,11 @@ module YoreCore
|
|
|
256
256
|
)
|
|
257
257
|
tarfile = MiscUtils.file_change_ext(aDestFile, 'tar')
|
|
258
258
|
|
|
259
|
-
shell("tar cv #{aParentDir ? '--directory='+aParentDir.to_s : ''} --file=#{tarfile} --files-from=#{listfile}")
|
|
259
|
+
shell("tar cv #{aParentDir ? '--directory='+aParentDir.to_s : ''} --file=#{tarfile} --files-from=#{listfile}")
|
|
260
260
|
shell("rm #{listfile}") unless config[:leave_temp_files]
|
|
261
261
|
logger.info "Compressing ..."
|
|
262
262
|
tarfile_size = File.size(tarfile)
|
|
263
|
-
|
|
264
|
-
shell("rm #{tarfile}") unless config[:leave_temp_files]
|
|
263
|
+
shell("bzip2 #{tarfile}; mv #{tarfile}.bz2 #{aDestFile}")
|
|
265
264
|
|
|
266
265
|
logger.info "Compressed #{'%.1f' % (tarfile_size*1.0/2**10)} KB to #{'%.1f' % (File.size(aDestFile)*1.0/2**10)} KB"
|
|
267
266
|
end
|
data/yore.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{yore}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["buzzware"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2011-11-03}
|
|
13
13
|
s.default_executable = %q{yore}
|
|
14
14
|
s.description = %q{yore (as in "days of yore") is a user data management utility for web applications.}
|
|
15
15
|
s.email = %q{contact@buzzware.com.au}
|
|
@@ -47,7 +47,7 @@ Gem::Specification.new do |s|
|
|
|
47
47
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
48
48
|
s.require_paths = ["lib"]
|
|
49
49
|
s.rubyforge_project = %q{buzzware}
|
|
50
|
-
s.rubygems_version = %q{1.3
|
|
50
|
+
s.rubygems_version = %q{1.5.3}
|
|
51
51
|
s.summary = %q{yore (as in "days of yore") is a user data management utility for web applications.}
|
|
52
52
|
s.test_files = [
|
|
53
53
|
"test/AWS_gem_test.rb",
|
|
@@ -59,7 +59,6 @@ Gem::Specification.new do |s|
|
|
|
59
59
|
]
|
|
60
60
|
|
|
61
61
|
if s.respond_to? :specification_version then
|
|
62
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
63
62
|
s.specification_version = 3
|
|
64
63
|
|
|
65
64
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 31
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.2.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- buzzware
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2011-11-03 00:00:00 +08:00
|
|
19
19
|
default_executable: yore
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -159,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
159
159
|
requirements: []
|
|
160
160
|
|
|
161
161
|
rubyforge_project: buzzware
|
|
162
|
-
rubygems_version: 1.3
|
|
162
|
+
rubygems_version: 1.5.3
|
|
163
163
|
signing_key:
|
|
164
164
|
specification_version: 3
|
|
165
165
|
summary: yore (as in "days of yore") is a user data management utility for web applications.
|