public
Rubygem
Description: Ruby test code analysis tool employing a "Synthesized Testing" strategy, aimed to reduce the volume of slower, coupled, complex wired tests.
Homepage: http://synthesis.rubyforge.org
Clone URL: git://github.com/gmalamid/synthesis.git
Added gemspec
gmalamid (author)
Fri Jun 27 05:09:10 -0700 2008
commit  9c53a8d93557eaaf16521446d193ca7757ddb1c7
tree    ee33dcf99da655572fc3d5a1ba5fd99c2276944d
parent  e98db79337c345e1bf0ca8000f6f0df4e8174fdb
...
5
6
7
 
 
8
9
10
...
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
 
77
78
79
...
5
6
7
8
9
10
11
12
...
58
59
60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
62
63
64
0
@@ -5,6 +5,8 @@ require 'rake/rdoctask'
0
 require 'rake/contrib/sshpublisher'
0
 require File.dirname(__FILE__) + "/lib/synthesis/task"
0
 
0
+load 'synthesis.gemspec'
0
+
0
 task :default => :test
0
 
0
 desc "Run all tests"
0
@@ -56,24 +58,7 @@ task :publish_rdoc do
0
   Rake::SshDirPublisher.new("gmalamid@rubyforge.org", "/var/www/gforge-projects/synthesis", "doc").upload
0
 end
0
 
0
-gem_spec = Gem::Specification.new do |s|
0
- s.name = 'synthesis'
0
- s.version = '0.1.5'
0
- s.platform = Gem::Platform::RUBY
0
- s.rubyforge_project = "synthesis"
0
- s.summary, s.description = 'A tool for Synthesized Testing'
0
- s.authors = 'Stuart Caborn, George Malamidis'
0
- s.email = 'george@nutrun.com'
0
- s.homepage = 'http://synthesis.rubyforge.org'
0
- s.has_rdoc = true
0
- s.rdoc_options += ['--quiet', '--title', 'Synthesis', '--main', 'README', '--inline-source']
0
- s.extra_rdoc_files = ['README', 'COPYING']
0
- excluded = FileList['etc/*']
0
- # s.test_files = FileList['test/**/*_test.rb']
0
- s.files = FileList['**/*.rb', 'COPYING', 'README', 'Rakefile'] - excluded
0
-end
0
-
0
-Rake::GemPackageTask.new(gem_spec) do |t|
0
+Rake::GemPackageTask.new(GEMSPEC) do |t|
0
   t.need_zip = false
0
   t.need_tar = false
0
 end

Comments

    No one has commented yet.