Sha256: 14bf2bd1e5e644c99a00a23fb6ce0679f16f749f6acbef579904bc7aa1a2d75d
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
# -*- coding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "wp2txt/version" Gem::Specification.new do |s| s.name = "wp2txt" s.version = Wp2txt::VERSION s.authors = ["Yoichiro Hasebe"] s.email = ["yohasebe@gmail.com"] s.homepage = "http://github.com/yohasebe/wp2txt" s.summary = %q{Wikipedia dump to text converter} s.description = %q{WP2TXT extracts plain text data from Wikipedia dump file (encoded in XML/compressed with Bzip2) stripping all the MediaWiki markups and other metadata.} s.rubyforge_project = "wp2txt" 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 "rspec" s.add_runtime_dependency "sanitize" s.add_runtime_dependency "bzip2-ruby" s.add_runtime_dependency "trollop" s.add_runtime_dependency "nokogiri" s.add_runtime_dependency "json" s.add_runtime_dependency "bundler" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wp2txt-0.5.3 | wp2txt.gemspec |
wp2txt-0.5.2 | wp2txt.gemspec |