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

ruby2.5-rubygem-mime-types-1-1.25.1-lp152.3.2 RPM for aarch64

From OpenSuSE Ports Leap 15.2 for aarch64

Name: ruby2.5-rubygem-mime-types-1 Distribution: openSUSE Leap 15.2
Version: 1.25.1 Vendor: openSUSE
Release: lp152.3.2 Build date: Thu Nov 7 23:11:52 2019
Group: Development/Languages/Ruby Build host: obs-arm-1
Size: 234929 Source RPM: rubygem-mime-types-1-1.25.1-lp152.3.2.src.rpm
Packager: https://bugs.opensuse.org
Url: http://mime-types.rubyforge.org/
Summary: This library allows for the identification of a file's likely MIME
This library allows for the identification of a file's likely MIME content
type. This is release 1.25.1, fixing an issue with priority comparison for
mime-types 1.x. The current release is 2.0, which only supports Ruby 1.9 or
later.
Release 1.25.1 contains all features of 1.25, including the experimental
caching and lazy loading functionality. The caching and lazy loading features
were initially implemented by Greg Brockman (gdb). As these features are
experimental, they are disabled by default and must be enabled through the use
of environment variables. The cache is invalidated on a per-version basis; the
cache for version 1.25 will not be reused for any later version.
To use lazy loading, set the environment variable +RUBY_MIME_TYPES_LAZY_LOAD+
to any value other than 'false'. When using lazy loading, the initial startup
of MIME::Types is around 12–25× faster than normal startup (on my system,
normal startup is about 90 ms; lazy startup is about 4 ms). This isn't
generally useful, however, as the MIME::Types database has not been loaded.
Lazy startup and load is just *slightly* faster—around 1 ms. The real
advantage
comes from using the cache.
To enable the cache, set the environment variable +RUBY_MIME_TYPES_CACHE+ to a
filename where MIME::Types will have read-write access. The first time a new
version of MIME::Types is run using this file, it will be created, taking a
little longer than normal. Subsequent loads using the same cache file will be
approximately 3½× faster (25 ms) than normal loads. This can be combined with
+RUBY_MIME_TYPES_LAZY_LOAD+, but this is *not* recommended in a multithreaded
or multiprocess environment where all threads or processes will be using the
same cache file.
As the caching interface is still experimental, the only values cached are the
default MIME::Types database, not any custom MIME::Types added by users.
MIME types are used in MIME-compliant communications, as in e-mail or HTTP
traffic, to indicate the type of content which is transmitted. MIME::Types
provides the ability for detailed information about MIME entities (provided as
a set of MIME::Type objects) to be determined and used programmatically. There
are many types defined by RFCs and vendors, so the list is long but not
complete; don't hesitate to ask to add additional information. This library
follows the IANA collection of MIME types (see below for reference).
MIME::Types for Ruby was originally based on MIME::Types for Perl by Mark
Overmeer, copyright 2001 - 2009.
MIME::Types is built to conform to the MIME types of RFCs 2045 and 2231. It
tracks the {IANA registry}[http://www.iana.org/assignments/media-types/]
({ftp}[ftp://ftp.iana.org/assignments/media-types]) with some unofficial types
added from the {LTSW collection}[http://www.ltsw.se/knbase/internet/mime.htp]
and added by the users of MIME::Types.

Provides

Requires

License

MIT and Artistic-2.0 and GPL-2.0

Changelog

* Mon Jan 12 2015 dmueller@suse.com
  - rebuild against newer gem2rpm to properly package licence file
* Tue Oct 21 2014 adrian@suse.de
  - add -1 suffix to avoid overwrite with version 2 rubygem
* Sun Oct 12 2014 adrian@suse.de
  - adapt to new rubygem packaging style
* Mon Mar 24 2014 coolo@suse.com
  - updated to version 1.25.1
    * Bugs:
    * Fix an issue with priority comparison in the 1.x release series. Found by
      sdbondi. This issue does not exist in the 2.x release series.
      https://github.com/halostatue/mime-types/issues/47
* Tue Sep 03 2013 coolo@suse.com
  - updated to version 1.25
    * New Features:
    * Adding lazy loading and caching functionality to the default data based on
      work done by Greg Brockman (gdb).
    * Bugs:
    * Force the default internal application encoding to be used when reading the
      MIME types database. Based on a change by briangamble, found in the rapid7
      fork.
    * New extensions:
    * mjpeg (video/x-motion-jpeg) based on a change by punkrats, found in the
      vidibus fork.
    * Modernized MiniTest configuration.
* Mon Aug 26 2013 coolo@suse.com
  - updated to version 1.24
    * Code Climate:
    * Working on improving the quality of the mime-types codebase through the use
      of Code Climate. https://codeclimate.com/github/halostatue/mime-types
    * Simplified MIME::Type.from_array to make more assumptions about assignment.
    * Documentation:
    * LeoYoung <mrleoyoung@gmail.com> pointed out that the README.rdoc contained
      examples that could never possibly work because MIME::Types#[] returns (for
      all the versions I have handy) an array, not a single type. I have updated
      README.rdoc to reflect this.
    * Removed Nokogiri as a declared development dependency. It is still required
    if you're going to use the IANA parser functionality, but it is not necessary
    for most development purposes. This has been removed to ensure that Travis CI
    passes on Ruby 1.8.7.
    * New MIME Types:
    * 7zip (application/x-7z-compressed). Fixes a request by kodram.
      https://github.com/halostatue/mime-types/issues/32
    * application/x-www-form-urlencoded. Fixes a request by alexkwolfe.
      https://github.com/halostatue/mime-types/issues/39
    * Various new MIME types from IANA:
    * application/mbms-schedule\+xml from 3GPP and Turcotte.
    * application/provenance\+xml from W3C and Herman.
    * application/session-info from 3GPP and Firmin.
    * application/urc-grpsheet\+xml, application/urc-targetdesc\+xml,
      application/uisocketdesc\+xml from Zimmermann.
    * application/api\+json from Klabnik.
    * application/vnd.etsi.pstn\+xml from Han and Belling.
    * application/vnd.fujixerox.docuworks.container from Tashiro.
    * application/vnd.windows.devicepairing from Dandawate.
    * video/vnd.radgamettools.bink and video/vnd.radgamettools.smacker from
      Andersson.
    * Updated MIME Types:
    * RFC 6960 was adopted (application/ocsp-request and application/ocsp-response).
* Mon May 06 2013 cfarrell@suse.com
  - license update: MIT or (Artistic-1.0 or GPL-1.0+)
    License is MIT or Perl Artistic (which itself splits into Artistic-1.0 or
    GPL-1.0+)
* Sat Apr 27 2013 coolo@suse.com
  - updated to version 1.23
    * New Feature:
    * Arnaud Meuret (ameuret) suggested that it could be useful if the MIME type
      collection was enumerable, so he implemented it in #30. Thanks for the
      contribution! https://github.com/halostatue/mime-types/pull/30
    * Updated MIME Types:
    * RFC6910 was adopted (application/call-completion).
    * RFC6902 was adopted (application/json-patch\+json).
    * RFC6917 was adopted (application/mrb-consumer\+xml,
      application/mrb-publish\+xml).
    * RFC6922 was adopted (application/sql).
    * RFC2560 is being
      {updated}[http://tools.ietf.org/html/draft-ietf-pkix-rfc2560bis].
    * Administrivia:
    * The gemspec now includes information about the licenses under which the
      mime-types gem is available.
    * Using hoe-gemspec2 instead of hoe-gemspec.
* Fri Apr 12 2013 coolo@suse.com
  - updated to version 1.22
    * New MIME Types:
    * Added support for 3FR (Hasselblad raw images) files. MIME-Type was obtained
      by looking at exif data with exiftool. Thanks to cgat for these changes.
      https://github.com/halostatue/mime-types/pull/27
    * Updated MIME Types:
    * Pulled the latest updates from the IANA MIME-Type registry.
    * Added support for Ruby 2.0 with Travis CI.
* Tue Feb 12 2013 coolo@suse.com
  - updated to version 1.21
    * New MIME Types:
    * Various new or updated MIME types by Garret Alfert:
      application/vnd.ms-fontobject, .eot; application/x-chrome-extension, .crx;
      application/x-web-app-manifest\+json, .webapp; application/x-xpinstall,
      .xpi; image/svg\+xml, .svg, .svgz; image/webp, .webp; text/cache-manifest,
      .appcache, .manifest. https://github.com/halostatue/mime-types/pull/24
    * Fixed some Manifest.txt related madness on Travis.

Files

/usr/lib64/ruby/gems/2.5.0/build_info
/usr/lib64/ruby/gems/2.5.0/cache/mime-types-1.25.1.gem
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/.gemtest
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/.hoerc
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/.travis.yml
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/Contributing.rdoc
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/Gemfile
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/History.rdoc
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/Licence.rdoc
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/Manifest.txt
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/README.rdoc
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/Rakefile
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/docs
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/docs/COPYING.txt
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/docs/artistic.txt
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime-types.rb
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types.rb
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/application
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/application.mac
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/application.nonstandard
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/application.obsolete
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/audio
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/audio.nonstandard
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/audio.obsolete
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/image
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/image.nonstandard
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/image.obsolete
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/message
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/message.obsolete
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/model
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/multipart
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/multipart.nonstandard
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/multipart.obsolete
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/other.nonstandard
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/text
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/text.nonstandard
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/text.obsolete
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/text.vms
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/video
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/video.nonstandard
/usr/lib64/ruby/gems/2.5.0/gems/mime-types-1.25.1/lib/mime/types/video.obsolete
/usr/lib64/ruby/gems/2.5.0/specifications/mime-types-1.25.1.gemspec
/usr/share/doc/packages/ruby2.5-rubygem-mime-types-1
/usr/share/doc/packages/ruby2.5-rubygem-mime-types-1/History.rdoc
/usr/share/doc/packages/ruby2.5-rubygem-mime-types-1/Licence.rdoc
/usr/share/doc/packages/ruby2.5-rubygem-mime-types-1/README.rdoc


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 12:09:08 2024