diff options
| author | realtradam <[email protected]> | 2021-07-09 17:45:44 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2021-07-09 17:45:44 -0400 |
| commit | 16dd2f2c9c429ddee3dabda199a62c14859afbfe (patch) | |
| tree | 0745917ece05d27667d1ceea6d4aa1ce8d8ad7c4 | |
| parent | a90b0717db0b4accbaacb6ac9d7faa4670b53a75 (diff) | |
| download | FelECS-16dd2f2c9c429ddee3dabda199a62c14859afbfe.tar.gz FelECS-16dd2f2c9c429ddee3dabda199a62c14859afbfe.zip | |
shrink gem filesize
| -rw-r--r-- | CHANGELOG.mdown | 5 | ||||
| -rw-r--r-- | Gemfile.lock | 2 | ||||
| -rw-r--r-- | felflame.gemspec | 2 | ||||
| -rw-r--r-- | lib/felflame/version.rb | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.mdown b/CHANGELOG.mdown index 7ad4cac..5003b64 100644 --- a/CHANGELOG.mdown +++ b/CHANGELOG.mdown @@ -8,11 +8,14 @@   +## [1.0.2](https://github.com/realtradam/FelFlame/releases/tag/1.0.2) - 2021-07-09 + +- Stripped superflous files shrinking gem size significantly +- ## [1.0.1](https://github.com/realtradam/FelFlame/releases/tag/1.0.1) - 2021-07-09  - Defining attributes in components are no longer allowed to overwrite methods ## [1.0.0](https://github.com/realtradam/FelFlame/releases/tag/1.0.0) - 2021-07-09 -  - Initial release diff --git a/Gemfile.lock b/Gemfile.lock index f0c22ce..6f1c26c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - felflame (1.0.1) + felflame (1.0.2) GEM remote: https://rubygems.org/ diff --git a/felflame.gemspec b/felflame.gemspec index b41c7fb..a0f8c7b 100644 --- a/felflame.gemspec +++ b/felflame.gemspec @@ -23,7 +23,7 @@ Gem::Specification.new do |spec| # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do - `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) } + `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features|deprecated|codeclimate|logos)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } diff --git a/lib/felflame/version.rb b/lib/felflame/version.rb index 6d7db87..f69ea19 100644 --- a/lib/felflame/version.rb +++ b/lib/felflame/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Felflame - VERSION = "1.0.1" + VERSION = "1.0.2" end |
