Skip to content

Commit ca54755

Browse files
authored
Merge pull request #24 from securenative/dev
Fix packaging
2 parents 682e43f + a0e46a9 commit ca54755

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
securenative (0.1.29)
4+
securenative (0.1.30)
55

66
GEM
77
remote: https://rubygems.org/

lib/securenative/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module SecureNative
4-
VERSION = '0.1.29'
4+
VERSION = '0.1.30'
55
end

securenative.gemspec

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ Gem::Specification.new do |spec|
1717

1818
spec.metadata['homepage_uri'] = spec.homepage
1919
spec.test_files = Dir['spec//*']
20-
spec.files = Dir['{lib}//*'] + ['README.md']
2120

2221
# Specify which files should be added to the gem when it is released.
2322
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24-
# spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
25-
# `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26-
# end
23+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25+
end
2726

2827
spec.bindir = 'exe'
2928
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }

0 commit comments

Comments
 (0)