Skip to content

Commit

Permalink
Merge pull request #149 from Liboul/liboul/dont-publish-spec-files-to…
Browse files Browse the repository at this point in the history
…-rubygems [skip ci]

Do not publish spec files to rubygems
  • Loading branch information
straydogstudio authored Feb 17, 2021
2 parents ab5bad3 + 05655c2 commit fa1ad7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caxlsx_rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.summary = "A simple rails plugin to provide an xlsx renderer using the caxlsx gem."
s.description = "Caxlsx_Rails provides an Caxlsx renderer so you can move all your spreadsheet code from your controller into view files. Partials are supported so you can organize any code into reusable chunks (e.g. cover sheets, common styling, etc.) You can use it with acts_as_caxlsx, placing the to_xlsx call in a view and adding ':package => xlsx_package' to the parameter list. Now you can keep your controllers thin!"

s.files = Dir["{app,config,db,lib}/**/*"] + Dir['[A-Z]*'] - ['Guardfile']
s.files = Dir["{app,config,db,lib}/**/*"] + Dir['[A-Z]*'] - Dir["spec/**/*"] - ['Guardfile']
s.test_files = Dir["spec/**/*"] + ['Guardfile']

s.add_dependency "actionpack", ">= 3.1"
Expand Down

0 comments on commit fa1ad7c

Please sign in to comment.