Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ruby2.5-rubygem-rack-testsuite-1_6-1.6.8-1.69 RPM for ppc64le

From OpenSuSE Leap 15.5 for ppc64le

Name: ruby2.5-rubygem-rack-testsuite-1_6 Distribution: SUSE Linux Enterprise 15
Version: 1.6.8 Vendor: SUSE LLC <https://www.suse.com/>
Release: 1.69 Build date: Sat May 26 00:54:46 2018
Group: Development/Languages/Ruby Build host: cabernet
Size: 382432 Source RPM: rubygem-rack-1_6-1.6.8-1.69.src.rpm
Packager: https://www.suse.com/
Url: http://rack.github.io/
Summary: Test suite for rack
Test::Unit or RSpec files, useful for developers.

Provides

Requires

License

MIT

Changelog

* Tue May 23 2017 coolo@suse.com
  - updated to version 1.6.8
    see installed HISTORY.md
* Fri Nov 11 2016 coolo@suse.com
  - updated to version 1.6.5
    see installed HISTORY.md
    Sun Dec 4 18:48:03 2015  Jeremy Daer <jeremydaer@gmail.com>
    * First-party "SameSite" cookies. Browsers omit SameSite cookies
    from third-party requests, closing the door on many CSRF attacks.
    Pass `same_site: true` (or `:strict`) to enable:
    response.set_cookie 'foo', value: 'bar', same_site: true
    or `same_site: :lax` to use Lax enforcement:
    response.set_cookie 'foo', value: 'bar', same_site: :lax
    Based on version 7 of the Same-site Cookies internet draft:
    https://tools.ietf.org/html/draft-west-first-party-cookies-07
    Thanks to Ben Toews (@mastahyeti) and Bob Long (@bobjflong) for
    updating to drafts 5 and 7.
    Wed Jun 24 12:13:37 2015  Aaron Patterson <tenderlove@ruby-lang.org>
    * Fix Ruby 1.8 backwards compatibility
* Mon Jul 04 2016 coolo@suse.com
  - split off 1.6 in preparation of 2.0
* Fri Jun 19 2015 coolo@suse.com
  - updated to version 1.6.4
    see installed HISTORY.md
    Fri Jun 19 07:14:50 2015  Matthew Draper <matthew@trebex.net>
    * Work around a Rails incompatibility in our private API
* Wed Jun 17 2015 coolo@suse.com
  - updated to version 1.6.2
    see installed HISTORY.md
    Fri Jun 12 11:37:41 2015  Aaron Patterson <tenderlove@ruby-lang.org>
    * Prevent extremely deep parameters from being parsed. CVE-2015-3225
* Thu May 07 2015 coolo@suse.com
  - updated to version 1.6.1
    no changelog found
* Fri Feb 06 2015 coolo@suse.com
  - updated to version 1.6.0
* Sat Nov 01 2014 tboerger@suse.com
  - Fixed all rpmlintrc errors to prevent failing builds with
    multiple ruby versions
* Mon Sep 29 2014 mrueckert@suse.de
  - added rpmlintrc to ignore the rackup shebang line in a test case
  - updated to new packaging scheme and add gem2rpm.yml
* Tue May 28 2013 coolo@suse.com
  - new template version
* Tue Feb 12 2013 coolo@suse.com
  - updated to version 1.5.2
    * February 7th, Thirty fifth public release 1.5.2
    * Fix CVE-2013-0263, timing attack against Rack::Session::Cookie
    * Fix CVE-2013-0262, symlink path traversal in Rack::File
    * Add various methods to Session for enhanced Rails compatibility
    * Request#trusted_proxy? now only matches whole stirngs
    * Add JSON cookie coder, to be default in Rack 1.6+ due to security concerns
    * URLMap host matching in environments that don't set the Host header fixed
    * Fix a race condition that could result in overwritten pidfiles
    * Various documentation additions
* Sun Feb 03 2013 coolo@suse.com
  - updated to version 1.5.1
* Thu Jan 24 2013 coolo@suse.com
  - update to version 1.5.0, remove suffix
    * Introduced hijack SPEC, for before-response and after-response hijacking
    * SessionHash is no longer a Hash subclass
    * Rack::File cache_control parameter is removed, in place of headers options
    * Rack::Auth::AbstractRequest#scheme now yields strings, not symbols
    * Rack::Utils cookie functions now format expires in RFC 2822 format
    * Rack::File now has a default mime type
    * rackup -b 'run Rack::File.new(".")', option provides command line configs
    * Rack::Deflater will no longer double encode bodies
    * Rack::Mime#match? provides convenience for Accept header matching
    * Rack::Utils#q_values provides splitting for Accept headers
    * Rack::Utils#best_q_match provides a helper for Accept headers
    * Rack::Handler.pick provides convenience for finding available servers
    * Puma added to the list of default servers (preferred over Webrick)
    * Various middleware now correctly close body when replacing it
    * Rack::Request#params is no longer persistent with only GET params
    * Rack::Request#update_param and #delete_param provide persistent operations
    * Rack::Request#trusted_proxy? now returns true for local unix sockets
    * Rack::Response no longer forces Content-Types
    * Rack::Sendfile provides local mapping configuration options
    * Rack::Utils#rfc2109 provides old netscape style time output
    * Updated HTTP status codes
    * Ruby 1.8.6 likely no longer passes tests, and is no longer fully supported
* Tue Jan 08 2013 coolo@suse.com
  - updated to version 1.4.3
    * Add warnings when users do not provide a session secret
    * Fix parsing performance for unquoted filenames
    * Updated URI backports
    * Fix URI backport version matching, and silence constant warnings
    * Correct parameter parsing with empty values
    * Correct rackup '-I' flag, to allow multiple uses
    * Correct rackup pidfile handling
    * Report rackup line numbers correctly
    * Fix request loops caused by non-stale nonces with time limits
    * Fix reloader on Windows
    * Prevent infinite recursions from Response#to_ary
    * Various middleware better conforms to the body close specification
    * Updated language for the body close specification
    * Additional notes regarding ECMA escape compatibility issues
    * Fix the parsing of multiple ranges in range headers
    * Prevent errors from empty parameter keys
    * Added PATCH verb to Rack::Request
    * Various documentation updates
    * Fix session merge semantics (fixes rack-test)
    * Rack::Static :index can now handle multiple directories
    * All tests now utilize Rack::Lint (special thanks to Lars Gierth)
    * Rack::File cache_control parameter is now deprecated, and removed by 1.5
    * Correct Rack::Directory script name escaping
    * Rack::Static supports header rules for sophisticated configurations
    * Multipart parsing now works without a Content-Length header
    * New logos courtesy of Zachary Scott!
    * Rack::BodyProxy now explicitly defines #each, useful for C extensions
    * Cookies that are not URI escaped no longer cause exceptions
    * Security: Prevent unbounded reads in large multipart boundaries
* Tue Jul 31 2012 jreidinger@suse.com
  - use new gem2rpm to provide new provisions
* Mon Apr 02 2012 saschpe@suse.de
  - Spec file cleanup:
    * Prepare for Factory submission
* Fri Mar 30 2012 adrian@suse.de
  - handle /usr/bin/rackup via update-alternatives
* Thu Jan 26 2012 mrueckert@suse.de
  - initial package of the 1.4 branch

Files

/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/builder
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/builder/anything.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/builder/comment.ru
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/builder/end.ru
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/builder/line.ru
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/builder/options.ru
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets/folder
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets/folder/test.js
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets/fonts
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets/fonts/font.eot
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets/images
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets/images/image.png
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets/index.html
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets/javascripts
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets/javascripts/app.js
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets/stylesheets
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/assets/stylesheets/app.css
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/lighttpd.conf
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/rackup_stub.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/sample_rackup.ru
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/test
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/test+directory
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/test+directory/test+file
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/test.fcgi
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/cgi/test.ru
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/gemloader.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/bad_robots
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/binary
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/content_type_and_no_filename
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/empty
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/fail_16384_nofile
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/file1.txt
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/filename_and_modification_param
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/filename_and_no_name
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/filename_with_escaped_quotes
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/filename_with_escaped_quotes_and_modification_param
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/filename_with_null_byte
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/filename_with_percent_escaped_quotes
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/filename_with_unescaped_percentages
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/filename_with_unescaped_percentages2
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/filename_with_unescaped_percentages3
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/filename_with_unescaped_quotes
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/ie
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/invalid_character
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/mixed_files
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/nested
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/none
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/semicolon
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/text
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/three_files_three_fields
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/multipart/webkit
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/rackup
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/rackup/config.ru
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/registering_handler
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/registering_handler/rack
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/registering_handler/rack/handler
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/registering_handler/rack/handler/registering_myself.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_auth_basic.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_auth_digest.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_body_proxy.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_builder.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_cascade.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_cgi.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_chunked.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_commonlogger.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_conditionalget.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_config.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_content_length.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_content_type.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_deflater.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_directory.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_etag.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_fastcgi.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_file.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_handler.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_head.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_lint.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_lobster.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_lock.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_logger.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_methodoverride.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_mime.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_mock.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_mongrel.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_multipart.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_nulllogger.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_recursive.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_request.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_response.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_rewindable_input.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_runtime.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_sendfile.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_server.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_session_abstract_id.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_session_cookie.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_session_memcache.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_session_pool.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_showexceptions.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_showstatus.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_static.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_tempfile_reaper.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_thin.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_urlmap.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_utils.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_version.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/spec_webrick.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/static
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/static/another
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/static/another/index.html
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/static/index.html
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/testrequest.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/unregistered_handler
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/unregistered_handler/rack
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/unregistered_handler/rack/handler
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/unregistered_handler/rack/handler/unregistered.rb
/usr/lib64/ruby/gems/2.5.0/gems/rack-1.6.8/test/unregistered_handler/rack/handler/unregistered_long_one.rb


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 19:50:46 2024