echoe 4.5 → 4.5.1

Sign up to get free protection for your applications and to get access to all the features.
data.tar.gz.sig CHANGED
Binary file
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v4.5.1. Create all subfolders.
2
+
1
3
  v4.5. Default to Allison template.
2
4
 
3
5
  v4.4.1. Correct default url.
data/Manifest CHANGED
@@ -4,7 +4,6 @@ MIT-LICENSE
4
4
  Manifest
5
5
  README
6
6
  Rakefile
7
- TODO
8
7
  echoe.gemspec
9
8
  lib/echoe.rb
10
9
  lib/echoe/extensions.rb
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{echoe}
5
- s.version = "4.5"
5
+ s.version = "4.5.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Evan Weaver"]
@@ -10,8 +10,8 @@ Gem::Specification.new do |s|
10
10
  s.date = %q{2011-02-23}
11
11
  s.description = %q{A Rubygems packaging tool that provides Rake tasks for documentation, extension compiling, testing, and deployment.}
12
12
  s.email = %q{}
13
- s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README", "TODO", "lib/echoe.rb", "lib/echoe/extensions.rb", "lib/echoe/platform.rb", "lib/echoe/rubygems.rb"]
14
- s.files = ["CHANGELOG", "LICENSE", "MIT-LICENSE", "Manifest", "README", "Rakefile", "TODO", "echoe.gemspec", "lib/echoe.rb", "lib/echoe/extensions.rb", "lib/echoe/platform.rb", "lib/echoe/rubygems.rb", "vendor/rake/MIT-LICENSE", "vendor/rake/lib/rake/contrib/compositepublisher.rb", "vendor/rake/lib/rake/contrib/ftptools.rb", "vendor/rake/lib/rake/contrib/publisher.rb", "vendor/rake/lib/rake/contrib/rubyforgepublisher.rb", "vendor/rake/lib/rake/contrib/sshpublisher.rb", "vendor/rake/lib/rake/contrib/sys.rb"]
13
+ s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README", "lib/echoe.rb", "lib/echoe/extensions.rb", "lib/echoe/platform.rb", "lib/echoe/rubygems.rb"]
14
+ s.files = ["CHANGELOG", "LICENSE", "MIT-LICENSE", "Manifest", "README", "Rakefile", "echoe.gemspec", "lib/echoe.rb", "lib/echoe/extensions.rb", "lib/echoe/platform.rb", "lib/echoe/rubygems.rb", "vendor/rake/MIT-LICENSE", "vendor/rake/lib/rake/contrib/compositepublisher.rb", "vendor/rake/lib/rake/contrib/ftptools.rb", "vendor/rake/lib/rake/contrib/publisher.rb", "vendor/rake/lib/rake/contrib/rubyforgepublisher.rb", "vendor/rake/lib/rake/contrib/sshpublisher.rb", "vendor/rake/lib/rake/contrib/sys.rb"]
15
15
  s.homepage = %q{http://fauna.github.com/fauna/echoe/}
16
16
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Echoe", "--main", "README"]
17
17
  s.require_paths = ["lib"]
@@ -579,8 +579,10 @@ private
579
579
  repository_name = docs_host.split("/").last
580
580
  Dir.chdir(repository_name) do
581
581
  project_dir_name = project
582
+ Dir.mkdir(project_dir_name) rescue nil
583
+
582
584
  project_dir_name += "/#{name}" if project != name
583
- Dir.mkdir(name) rescue nil
585
+ Dir.mkdir(project_dir_name) rescue nil
584
586
 
585
587
  cmd = "rm -rf '#{project_dir_name}' && mv #{local_dir} '#{project_dir_name}'"
586
588
  puts("Moving docs into checkout: #{cmd}")
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: echoe
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 41
5
5
  prerelease: false
6
6
  segments:
7
7
  - 4
8
8
  - 5
9
- version: "4.5"
9
+ - 1
10
+ version: 4.5.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - Evan Weaver
@@ -90,7 +91,6 @@ extra_rdoc_files:
90
91
  - CHANGELOG
91
92
  - LICENSE
92
93
  - README
93
- - TODO
94
94
  - lib/echoe.rb
95
95
  - lib/echoe/extensions.rb
96
96
  - lib/echoe/platform.rb
@@ -102,7 +102,6 @@ files:
102
102
  - Manifest
103
103
  - README
104
104
  - Rakefile
105
- - TODO
106
105
  - echoe.gemspec
107
106
  - lib/echoe.rb
108
107
  - lib/echoe/extensions.rb
metadata.gz.sig CHANGED
Binary file
data/TODO DELETED
@@ -1,4 +0,0 @@
1
-
2
- * Support compiling without extension registration for win32 and java targets.
3
- * Figure out why need_gem = false caused releasing to fail
4
- * Add a non-repository source (ENV or file) for per-project per-developer certificate chains. (?)