Skip to content

Commit

Permalink
Merge pull request #156 from mbj/change/git-in-gemspec
Browse files Browse the repository at this point in the history
Change gemspec to not rely on git
  • Loading branch information
mbj authored Sep 10, 2020
2 parents 242280f + 582e6af commit 18c6860
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.4.9 2020-09-10

* Change packaging to avoid git in gemspec.

# v0.4.8 2020-05-25

* Change to specific node type when unparser fails on an unknown node type: [#150](https://github.com/mbj/unparser/pull/150)
Expand Down
5 changes: 2 additions & 3 deletions unparser.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |gem|
gem.name = 'unparser'
gem.version = '0.4.8'
gem.version = '0.4.9'

gem.authors = ['Markus Schirp']
gem.email = 'mbj@schirp-dso.com'
Expand All @@ -10,8 +10,7 @@ Gem::Specification.new do |gem|
gem.homepage = 'http://github.com/mbj/unparser'
gem.license = 'MIT'

gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {spec,features}/*`.split("\n")
gem.files = Dir.glob('lib/**/*')
gem.require_paths = %w[lib]
gem.extra_rdoc_files = %w[README.md]
gem.executables = %w[unparser]
Expand Down

0 comments on commit 18c6860

Please sign in to comment.