diff options
Diffstat (limited to 'roo.gemspec')
| -rw-r--r-- | roo.gemspec | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/roo.gemspec b/roo.gemspec new file mode 100644 index 0000000..a34accb --- /dev/null +++ b/roo.gemspec @@ -0,0 +1,26 @@ +# encoding: utf-8 +lib = File.expand_path('../lib', __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'roo/version' + +Gem::Specification.new do |spec| + spec.name = 'roo' + spec.version = Roo::VERSION + spec.authors = ['Thomas Preymesser', 'Hugh McGowan', 'Ben Woosley', 'Oleksandr Simonov', 'Steven Daniels'] + spec.email = ['ruby.ruby.ruby.roo@gmail.com', 'oleksandr@simonov.me'] + spec.summary = 'Roo can access the contents of various spreadsheet files.' + spec.description = "Roo can access the contents of various spreadsheet files. It can handle\n* OpenOffice\n* Excelx\n* LibreOffice\n* CSV" + spec.homepage = 'http://github.com/roo-rb/roo' + spec.license = 'MIT' + + spec.files = `git ls-files -z`.split("\x0") + spec.files.reject! { |fn| fn.include?('test/files') } + spec.require_paths = ['lib'] + + spec.add_dependency 'nokogiri', '~> 1' + spec.add_dependency 'rubyzip', '~> 1.1', '< 2.0.0' + + spec.add_development_dependency 'rake', '~> 10.1' + spec.add_development_dependency 'minitest', '~> 5.4', '>= 5.4.3' + spec.add_development_dependency 'rack', '~> 1.6', '< 2.0.0' +end |
