File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ Gem::Specification.new do |spec|
3333 package_files = `git ls-files -z` . split ( "\x0 " )
3434 . reject { |file | ONLY_SERVER_FILES . include? ( file ) }
3535 . reject { |file | ONLY_FONTS_FILES . include? ( file ) }
36- . reject { |file | file . match /.*\. png/ }
37- . reject { |file | file . match /.*\. pdf/ }
36+ . reject { |file | file . match ( /.*\. png/ ) }
37+ . reject { |file | file . match ( /.*\. pdf/ ) }
3838
3939 spec . files = package_files
4040 spec . executables = spec . files . grep ( %r{^bin/} ) { |f | File . basename ( f ) }
Original file line number Diff line number Diff line change @@ -657,7 +657,7 @@ def build_description
657657 end
658658 end
659659
660- def description_height
660+ def description_height
661661 @description_height ||= begin
662662 num_of_lines = @document . description . lines . count
663663 ( num_of_lines * 13 )
You can’t perform that action at this time.
0 commit comments