Skip to content

Commit

Permalink
excluding stuff from built gem. closes #794
Browse files Browse the repository at this point in the history
  • Loading branch information
GBH committed Feb 8, 2018
1 parent dea7bba commit 8b9248f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion comfortable_mexican_sofa.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ Gem::Specification.new do |s|
s.summary = "Rails 5.2+ CMS Engine"
s.description = "ComfortableMexicanSofa is a powerful Rails 5.2+ CMS Engine"
s.license = "MIT"
s.files = `git ls-files`.split("\n")

s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|doc)/})
end

s.required_ruby_version = ">= 2.2.2"

Expand Down
1 change: 0 additions & 1 deletion test/system/categories_frontend_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ class CategoriesFrontendTest < ApplicationSystemTestCase
end

def test_category_management

visit_p comfy_admin_cms_site_snippets_path(@site)

find("button.toggle-cat-edit").click
Expand Down

0 comments on commit 8b9248f

Please sign in to comment.