echoe 2.4 → 2.4.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 +2 -0
- data/Manifest +4 -4
- data/Rakefile +1 -1
- data/lib/echoe.rb +4 -2
- metadata +7 -7
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
|
|
2
|
+
v2.4.1. Manifest doesn't require itself (willcodeforwork).
|
|
3
|
+
|
|
2
4
|
v2.4. Sign gems automatically if ENV['GEM_PRIVATE_KEY'] is present; add certificate_chain and private_key accessors.
|
|
3
5
|
|
|
4
6
|
v2.3. Work around metadependencies issue by including gemspecs instead of Rakefiles by default; include_gemspec and include_rakefile accessors.
|
data/Manifest
CHANGED
data/Rakefile
CHANGED
|
@@ -5,7 +5,7 @@ Echoe.new('echoe') do |p|
|
|
|
5
5
|
p.project = 'fauna'
|
|
6
6
|
p.author = 'Evan Weaver'
|
|
7
7
|
p.summary = 'A tool for packaging Ruby gems.'
|
|
8
|
-
p.url = 'http://blog.evanweaver.com/
|
|
8
|
+
p.url = 'http://blog.evanweaver.com/files/doc/fauna/echoe/'
|
|
9
9
|
p.docs_host = 'blog.evanweaver.com:~/www/bax/public/files/doc/'
|
|
10
10
|
p.dependencies = ['rake', 'rubyforge >=0.4.3', 'highline']
|
|
11
11
|
p.require_signed = true
|
data/lib/echoe.rb
CHANGED
|
@@ -226,8 +226,10 @@ class Echoe
|
|
|
226
226
|
s.files += ["Rakefile"] if include_rakefile
|
|
227
227
|
s.files.uniq! # not really necessary
|
|
228
228
|
rescue Errno::ENOENT
|
|
229
|
-
|
|
230
|
-
|
|
229
|
+
unless ARGV.include? "manifest"
|
|
230
|
+
puts "Missing manifest. You can build one with 'rake manifest'."
|
|
231
|
+
exit
|
|
232
|
+
end
|
|
231
233
|
end
|
|
232
234
|
s.executables = s.files.grep(/bin/) { |f| File.basename(f) }
|
|
233
235
|
|
metadata
CHANGED
|
@@ -3,13 +3,13 @@ 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.4.1
|
|
7
|
+
date: 2007-09-21 00:00:00 -04:00
|
|
8
8
|
summary: A tool for packaging Ruby gems.
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
11
11
|
email: ""
|
|
12
|
-
homepage: http://blog.evanweaver.com/
|
|
12
|
+
homepage: http://blog.evanweaver.com/files/doc/fauna/echoe/
|
|
13
13
|
rubyforge_project: fauna
|
|
14
14
|
description: A tool for packaging Ruby gems.
|
|
15
15
|
autorequire:
|
|
@@ -51,15 +51,15 @@ post_install_message:
|
|
|
51
51
|
authors:
|
|
52
52
|
- Evan Weaver
|
|
53
53
|
files:
|
|
54
|
-
- test/test_echoe.rb
|
|
55
|
-
- lib/echoe.rb
|
|
56
54
|
- TODO
|
|
57
|
-
-
|
|
55
|
+
- test/test_echoe.rb
|
|
58
56
|
- README
|
|
59
|
-
-
|
|
57
|
+
- Rakefile
|
|
60
58
|
- MIT-LICENSE
|
|
61
59
|
- LICENSE
|
|
60
|
+
- lib/echoe.rb
|
|
62
61
|
- CHANGELOG
|
|
62
|
+
- Manifest
|
|
63
63
|
test_files:
|
|
64
64
|
- test/test_echoe.rb
|
|
65
65
|
rdoc_options: []
|
metadata.gz.sig
CHANGED
|
Binary file
|