Skip to content

Commit

Permalink
chore: use Dir class to list files (#309)
Browse files Browse the repository at this point in the history
Merge pull request 309
  • Loading branch information
DirtyF authored May 11, 2020
1 parent fdad089 commit 54976f6
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions jekyll-feed.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@
require_relative "lib/jekyll-feed/version"

Gem::Specification.new do |spec|
spec.name = "jekyll-feed"
spec.version = Jekyll::Feed::VERSION
spec.authors = ["Ben Balter"]
spec.email = ["[email protected]"]
spec.summary = "A Jekyll plugin to generate an Atom feed of your Jekyll posts"
spec.homepage = "https://github.com/jekyll/jekyll-feed"
spec.license = "MIT"
spec.name = "jekyll-feed"
spec.version = Jekyll::Feed::VERSION
spec.authors = ["Ben Balter"]
spec.email = ["[email protected]"]
spec.summary = "A Jekyll plugin to generate an Atom feed of your Jekyll posts"
spec.homepage = "https://github.com/jekyll/jekyll-feed"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r!^spec/!)
spec.require_paths = ["lib"]
spec.files = Dir["lib/**/*"]
spec.extra_rdoc_files = Dir["README.md", "History.markdown", "LICENSE.txt"]
spec.test_files = spec.files.grep(%r!^spec/!)
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 2.3.0"

Expand Down

0 comments on commit 54976f6

Please sign in to comment.