Skip to content

Commit

Permalink
Stabilize the version of standard
Browse files Browse the repository at this point in the history
  • Loading branch information
julik committed Feb 29, 2024
1 parent aadb161 commit 82feb74
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,7 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: "Tests and Lint"
run: bundle exec rake
- name: "Tests"
run: bundle exec rspec --backtrace --fail-fast
- name: "Lint"
run: bundle exec standard
3 changes: 1 addition & 2 deletions lib/zip_kit/rack_body.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
# end
# end
#
# either as a `Transfer-Encoding: chunked` response (if your webserver supports it),

# Either as a `Transfer-Encoding: chunked` response (if your webserver supports it),
# which will give you true streaming capability:
#
# chunked_body = iterable_zip_body.to_chunked
Expand Down
2 changes: 1 addition & 1 deletion zip_kit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "benchmark-ips"
spec.add_development_dependency "allocation_stats", "~> 0.1.5"
spec.add_development_dependency "yard", "~> 0.9"
spec.add_development_dependency "standard" # , ">= 0.2.5", "< 0.3" # Since we want to support Ruby 2.6 for the moment
spec.add_development_dependency "standard", "1.28.5" # Very specific version of standard for 2.6 with _known_ settings
spec.add_development_dependency "magic_frozen_string_literal"
spec.add_development_dependency "puma"
spec.add_development_dependency "appraisal", "~> 2.5"
Expand Down

0 comments on commit 82feb74

Please sign in to comment.