Skip to content

Commit

Permalink
gem: shrink gem size. 👊 ...again.
Browse files Browse the repository at this point in the history
  • Loading branch information
andymeneely committed Jan 4, 2017
1 parent a1cbca6 commit a3b6a99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ Bugs
* Downgraded Pango et al. back to 3.0.9 from 3.1.0 because there are bugs in the new gobject-introspection library.

Chores:
* Shrank the gem itself by ignoring test data. From about 5mb to 130kb - yay!
* Shrank the gem itself by ignoring test data. From about 5mb to 64kb - yay!
* Bump roo to newest version (2.7.0).
* Bumped Nokogiri to latest version (1.7.0).
* Re-organized the samples folder for better regression and sanity testing prior to release.

## v0.12.0 / 2016-12-02

Expand Down
4 changes: 2 additions & 2 deletions squib.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Gem::Specification.new do |spec|

spec.files = `git ls-files -z`.
split("\x0").
reject { |f| f.match(%r{^(spec|samples)/}) }
reject { |f| f.match(%r{^(spec|samples|docs|benchmarks)/}) }
spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
spec.test_files = spec.files.grep(/^(spec|samples)\//)
spec.test_files = spec.files.grep(/^(spec|samples|docs|benchmarks)\//)
spec.require_paths = ['lib']

spec.add_runtime_dependency 'cairo', '~> 1.15.3'
Expand Down

0 comments on commit a3b6a99

Please sign in to comment.