echoe 2.6 → 2.6.1
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 +0 -0
- data/CHANGELOG +3 -1
- data/lib/echoe.rb +4 -2
- metadata +2 -2
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
|
|
2
|
+
v2.6.1. Fix executable pattern bug.
|
|
3
|
+
|
|
2
4
|
v2.6. Unify pattern handling; changelog accessor, version accessor, expand paths of keys and certificates; support verbose (Rails-style) changelogs.
|
|
3
5
|
|
|
4
6
|
v2.5. Add some extension building tasks; adjust clean behavior; rdoc inclusions definitely depend on Manifest now; ruby_version accessor; ignore_pattern for skipping files during the manifest build; bugfixes.
|
|
@@ -23,4 +25,4 @@ v1.2. build_manifest Rake task.
|
|
|
23
25
|
|
|
24
26
|
v1.1. Sane error messages on releasing new or duplicate gems; allow Manifest to not end in .txt.
|
|
25
27
|
|
|
26
|
-
v1.0.
|
|
28
|
+
v1.0. Fork from Hoe.
|
data/lib/echoe.rb
CHANGED
|
@@ -201,6 +201,8 @@ class Echoe
|
|
|
201
201
|
unless ARGV.include? "manifest"
|
|
202
202
|
puts "Missing manifest. You can build one with 'rake manifest'."
|
|
203
203
|
exit
|
|
204
|
+
else
|
|
205
|
+
self.files = []
|
|
204
206
|
end
|
|
205
207
|
end
|
|
206
208
|
|
|
@@ -293,7 +295,7 @@ class Echoe
|
|
|
293
295
|
end
|
|
294
296
|
|
|
295
297
|
s.executables = executable_pattern.map do |file|
|
|
296
|
-
file[(s.bindir.length)..-1]
|
|
298
|
+
file[(s.bindir.length + 1)..-1]
|
|
297
299
|
end
|
|
298
300
|
|
|
299
301
|
dirs = Dir['{lib,ext}']
|
|
@@ -425,7 +427,7 @@ class Echoe
|
|
|
425
427
|
system(PLATFORM =~ /win32/ ? 'nmake' : 'make')
|
|
426
428
|
end
|
|
427
429
|
Dir["#{directory}/*.#{Config::CONFIG['DLEXT']}"].each do |file|
|
|
428
|
-
cp file, "lib"
|
|
430
|
+
cp file, "lib/#{directory.split('/')[1..-1].join('/')}/"
|
|
429
431
|
end
|
|
430
432
|
end
|
|
431
433
|
end
|
metadata
CHANGED
|
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: echoe
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version:
|
|
7
|
-
date: 2007-09-
|
|
6
|
+
version: 2.6.1
|
|
7
|
+
date: 2007-09-25 00:00:00 -04:00
|
|
8
8
|
summary: A tool for packaging Ruby gems.
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
metadata.gz.sig
CHANGED
|
Binary file
|