summaryrefslogtreecommitdiffhomepage
path: root/axlsx.gemspec
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2011-12-03 13:38:37 +0900
committerRandy Morgan <[email protected]>2011-12-03 13:38:37 +0900
commit1232ac7076cf69676b8b0ddfceb851cdc30bcf34 (patch)
tree498987ff7a5a4704f8daaf839e6063ab8d6817e4 /axlsx.gemspec
parentb376e6eb11a9cec2589fe1495e6c61db066c92ab (diff)
downloadcaxlsx-1232ac7076cf69676b8b0ddfceb851cdc30bcf34.tar.gz
caxlsx-1232ac7076cf69676b8b0ddfceb851cdc30bcf34.zip
Testing if travis can pull the requirements from gemspec.
Diffstat (limited to 'axlsx.gemspec')
-rw-r--r--axlsx.gemspec9
1 files changed, 7 insertions, 2 deletions
diff --git a/axlsx.gemspec b/axlsx.gemspec
index 793e7e0c..6b39cff3 100644
--- a/axlsx.gemspec
+++ b/axlsx.gemspec
@@ -8,14 +8,14 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/randym/axlsx'
s.platform = Gem::Platform::RUBY
s.date = Time.now.strftime('%Y-%m-%d')
- s.summary = "OOXML (xlsx) with charts, styles, images and autowidth columns."
+ s.summary = "excel OOXML (xlsx) with charts, styles, images and autowidth columns."
s.has_rdoc = 'axlsx'
s.description = <<-eof
xlsx generation with charts, images, automated column width, customizable styles and full schema validation. Axlsx excels at helping you generate beautiful Office Open XML Spreadsheet documents without having to understand the entire ECMA specification. Check out the README for some examples of how easy it is. Best of all, you can validate your xlsx file before serialization so you know for sure that anything generated is going to load on your client's machine.
eof
# s.files = Dir.glob("{doc,lib,test,schema,examples}/**/*") + %w{ LICENSE README.md Rakefile CHANGELOG.md }
- s.files = FileList.new('*', 'lib/**/*', 'doc/**/*', 'test/**/*', 'schema/**/*', 'examples/**/*') do |fl|
+ s.files = FileList.new('*', 'lib/**/*', 'doc/**/*', 'schema/**/*', 'examples/**/*') do |fl|
fl.exclude("*.*~")
fl.exclude(".*")
fl.exclude("todo")
@@ -23,11 +23,16 @@ Gem::Specification.new do |s|
fl.exclude("*.xlsx")
end
+ s.test_files = FileList.new('test/**/*') do |fl|
+ fl.exclude("*.*~")
+ end
+
s.add_runtime_dependency 'nokogiri', '>= 1.4.1'
s.add_runtime_dependency 'activesupport', '>= 2.3.9'
s.add_runtime_dependency 'i18n', '>= 0.6.0'
s.add_runtime_dependency 'rmagick', '>= 2.12.2'
s.add_runtime_dependency 'zip', '>= 2.0.2'
+
s.add_development_dependency 'rake'
s.add_development_dependency 'bundler'