Skip to content

Instantly share code, notes, and snippets.

@mikisvaz
Created October 5, 2009 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikisvaz/202507 to your computer and use it in GitHub Desktop.
Save mikisvaz/202507 to your computer and use it in GitHub Desktop.
Gem::Specification.new do |s|
s.name = %q{simplews}
s.version = "1.3.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Miguel Vazquez"]
s.date = %q{2009-09-22}
s.description = %q{This defines a class that can simplifies creating Web Services. It inherits from soap2r's SOAP::RPC::StandaloneServer and provides a few enhancements, the most important the fact that it is able to produce the WSDL automatically.}
s.email = ["mikisvaz@yahoo.com"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.rdoc", "website/index.txt"]
s.files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.rdoc", "Rakefile", "config/hoe.rb", "config/requirements.rb", "lib/simplews.rb", "lib/simplews/jobs.rb", "script/console", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "simplews.gemspec", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake", "test/simplews/test_jobs.rb", "test/test_helper.rb", "test/test_simplews.rb", "website/index.html", "website/index.txt", "website/javascripts/rounded_corners_lite.inc.js", "website/stylesheets/screen.css", "website/template.html.erb"]
s.has_rdoc = true
s.post_install_message = %q{PostInstall.txt}
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{simplews}
s.rubygems_version = %q{1.3.1}
s.summary = %q{This defines a class that can simplifies creating Web Services}
s.test_files = ["test/test_simplews.rb", "test/test_helper.rb", "test/simplews/test_jobs.rb"]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<newgem>, [">= 1.2.3"])
s.add_development_dependency(%q<hoe>, [">= 1.8.0"])
else
s.add_dependency(%q<newgem>, [">= 1.2.3"])
s.add_dependency(%q<hoe>, [">= 1.8.0"])
end
else
s.add_dependency(%q<newgem>, [">= 1.2.3"])
s.add_dependency(%q<hoe>, [">= 1.8.0"])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment