Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/tasks/manifest.rake
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace :manifest do
end

def manifest_files
File.open("Manifest.txt").readlines.map(&:chomp)
File.readlines("Manifest.txt").map(&:chomp)
end

desc "Create manifest"
Expand Down
4 changes: 2 additions & 2 deletions publify_textfilter_code.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.description = "Code text filter sidebar for the Publify blogging system."
s.license = "MIT"

s.files = File.open("Manifest.txt").readlines.map(&:chomp)
s.files = File.readlines("Manifest.txt").map(&:chomp)

s.required_ruby_version = ">= 3.2.0"

Expand All @@ -24,7 +24,7 @@ Gem::Specification.new do |s|

s.add_development_dependency "appraisal", "~> 2.3"
s.add_development_dependency "rspec-rails", "~> 7.1"
s.add_development_dependency "rubocop", "~> 1.82.1"
s.add_development_dependency "rubocop", "~> 1.86.0"
s.add_development_dependency "rubocop-capybara", "~> 2.22.1"
s.add_development_dependency "rubocop-factory_bot", "~> 2.28.0"
s.add_development_dependency "rubocop-performance", "~> 1.26.1"
Expand Down
Loading