wash_out.gemspec in wash_out-0.1 vs wash_out.gemspec in wash_out-0.2.0
- old
+ new
@@ -1,16 +1,20 @@
-SPEC = Gem::Specification.new do |s|
+require File.expand_path("../lib/wash_out/version", __FILE__)
+
+Gem::Specification.new do |s|
s.name = "wash_out"
- s.version = "0.1"
- s.platform = Gem::Platform::RUBY
+ s.version = WashOut::VERSION
+ s.platform = Gem::Platform::RUBY
s.summary = "Dead simple Rails 3 SOAP server library"
s.email = "boris@roundlake.ru"
s.homepage = "http://github.com/roundlake/wash_out"
s.description = "Dead simple Rails 3 SOAP server library"
- s.authors = ['Boris Staal']
+ s.authors = ['Boris Staal', 'Peter Zotov']
- s.add_dependency "crack"
-
- s.has_rdoc = false # disable rdoc generation until we've got more
s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
-end
\ No newline at end of file
+
+ s.add_development_dependency("rspec-rails")
+ s.add_development_dependency("appraisal")
+ s.add_development_dependency("tzinfo")
+ s.add_development_dependency("savon")
+end