rb-libsvm.gemspec in rb-libsvm-1.1.5 vs rb-libsvm.gemspec in rb-libsvm-1.2.0

- old
+ new

@@ -6,21 +6,21 @@ s.name = "rb-libsvm" s.version = Libsvm::VERSION s.authors = ["C. Florian Ebeling", "Rimas Silkaitis"] s.email = ["florian.ebeling@gmail.com", "neovintage@gmail.com"] s.homepage = "https://github.com/febeling/rb-libsvm" - s.summary = %q{Ruby language bindings for LIBSVM} - s.description = %q{libsvm and ruby without using swig} + s.summary = %q{Ruby bindings for LIBSVM} + s.description = %q{Self-contained LIBSVM package for Ruby (that doesn't use SWIG). LIBSVM is a popular implementation of SVM, a machine learning classifier.} s.required_ruby_version = '>= 1.8.7' s.rubyforge_project = "rb-libsvm" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_development_dependency('rake-compiler') - s.add_development_dependency('rspec', '>= 2.7.0') + s.add_development_dependency('rspec', '>= 3.0.0') s.extensions << 'ext/libsvm/extconf.rb' end