Sha256: a306e22cf32c3d753c6f3a6e6f720bc4552ca07e16e9274af276b7f27db4b7ae

Contents?: true

Size: 1007 Bytes

Versions: 4

Compression:

Stored size: 1007 Bytes

Contents

require 'active_support'
require 'active_support/core_ext/time'

module Html2rss
  module AttributePostProcessors
    ##
    # Returns the {https://www.w3.org/Protocols/rfc822/ RFC822} representation of a time.
    #
    # Imagine this HTML structure:
    #
    #     <p>Published on <span>2019-07-02</span></p>
    #
    # YAML usage example:
    #
    #    selectors:
    #      description:
    #        selector: span
    #        post_process:
    #          name: 'parse_time'
    #          time_zone: 'Europe/Berlin'
    #
    # Would return:
    #    "Tue, 02 Jul 2019 00:00:00 +0200"
    #
    # It uses {https://ruby-doc.org/stdlib-2.5.3/libdoc/time/rdoc/Time.html#method-c-parse Time.parse}.
    class ParseTime
      def initialize(value, env)
        @value = value.to_s
        @time_zone = env[:config].time_zone
      end

      ##
      # @return [String] rfc822 formatted time
      def get
        Time.use_zone(@time_zone) { Time.zone.parse(@value).rfc822 }
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
html2rss-0.9.0 lib/html2rss/attribute_post_processors/parse_time.rb
html2rss-0.8.2 lib/html2rss/attribute_post_processors/parse_time.rb
html2rss-0.8.1 lib/html2rss/attribute_post_processors/parse_time.rb
html2rss-0.8.0 lib/html2rss/attribute_post_processors/parse_time.rb