From cac0f67f234d59a786f1ed4fb480116bc4fb50bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Men=C3=A9ndez=20Rizo?= Date: Sun, 24 Sep 2023 00:57:38 -0400 Subject: [PATCH] First release of sprockets_terser_with_source_maps with version 1.0.0 --- lib/sprockets_terser_with_source_maps/version.rb | 2 +- sprockets_terser_with_source_maps.gemspec | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/sprockets_terser_with_source_maps/version.rb b/lib/sprockets_terser_with_source_maps/version.rb index 9cf835b..80f0b32 100644 --- a/lib/sprockets_terser_with_source_maps/version.rb +++ b/lib/sprockets_terser_with_source_maps/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module SprocketsTerserWithSourceMaps - VERSION = '0.1.1' + VERSION = '1.0.0' end diff --git a/sprockets_terser_with_source_maps.gemspec b/sprockets_terser_with_source_maps.gemspec index b12e99a..e86d545 100644 --- a/sprockets_terser_with_source_maps.gemspec +++ b/sprockets_terser_with_source_maps.gemspec @@ -25,10 +25,7 @@ Gem::Specification.new do |spec| spec.add_dependency 'terser', '~> 1.1.0' # 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{^(test|spec|features)/}) } - end + spec.files = Dir['README.md', 'lib/**/*.rb', 'LICENSE.txt'] spec.require_paths = ['lib'] end