diff options
| author | Randy Morgan <[email protected]> | 2011-11-22 22:21:06 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2011-11-22 22:21:06 +0900 |
| commit | 1e5388ce173913cb7643505eb38efe12628cf378 (patch) | |
| tree | 5bdfd83975627a455fb5ab0efa66956184cb7f90 /axlsx.gemspec | |
| parent | c5529241dc5b4062f145c9afa95078d3113c1807 (diff) | |
| download | caxlsx-1e5388ce173913cb7643505eb38efe12628cf378.tar.gz caxlsx-1e5388ce173913cb7643505eb38efe12628cf378.zip | |
updating rake file, readme and other docs. Also moving version constant to its own file and re-enabling package serialization tests with a bit more robust error handling when the current user does not have write permissions the directory.
Diffstat (limited to 'axlsx.gemspec')
| -rw-r--r-- | axlsx.gemspec | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/axlsx.gemspec b/axlsx.gemspec index 2399e987..4e865b94 100644 --- a/axlsx.gemspec +++ b/axlsx.gemspec @@ -1,19 +1,20 @@ -require File.expand_path(File.dirname(__FILE__) + '/lib/axlsx/util/constants.rb') +require File.expand_path(File.dirname(__FILE__) + '/lib/axlsx/version.rb') Gem::Specification.new do |s| s.name = 'axlsx' - s.homepage = 'https://github.com/randym/axlsx' - s.has_rdoc = 'axlsx' s.rubyforge_project = 'axlsx' s.version = Axlsx::VERSION s.date = Time.now.strftime('%Y-%m-%d') s.summary = "Author fully validated xlsx files with custom charts and styles" s.platform = Gem::Platform::RUBY - s.description = <<-EOF - axslx allows you to easily and skillfully create Office Open XML Spreadsheet documents. It supports multiple worksheets, custom styles, cusomizable charts and allows you to validate your xlsx package before serialization. -EOF - s.authors = ["Randy Morgan"] + s.description = <<-eof + axslx allows you to create Office Open XML Spreadsheet documents. + It supports automated column widths, multiple worksheets, custom styles, cusomizable charts and allows you to validate your xlsx package before serialization. + eof + s.author = "Randy Morgan" s.email = '[email protected]' - s.files = Dir.glob("{doc,lib,test,schema,examples}/**/*") + ['LICENSE', 'README.md', 'Rakefile'] + s.homepage = 'https://github.com/randym/axlsx' + s.has_rdoc = 'axlsx' + s.files = Dir.glob("{doc,lib,test,schema,examples}/**/*") + ['LICENSE','README.md','Rakefile','CHANGELOG.md'] s.add_runtime_dependency 'nokogiri', '~> 1' s.add_runtime_dependency 'active_support', '~> 3' s.add_runtime_dependency 'rmagick', '~> 2.12' |
