Codebase list feed2imap / 8ac8049
New upstream version 1.3.3 Antonio Terceiro 1 year, 7 months ago
3 changed file(s) with 4 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
11 # This file has been automatically generated by gem2tgz #
22 #########################################################
33 # -*- encoding: utf-8 -*-
4 # stub: feed2imap 1.3.2 ruby lib
4 # stub: feed2imap 1.3.3 ruby lib
55
66 Gem::Specification.new do |s|
77 s.name = "feed2imap".freeze
8 s.version = "1.3.2"
8 s.version = "1.3.3"
99
1010 s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
1111 s.require_paths = ["lib".freeze]
3939 # Load the configuration from the IO stream
4040 # TODO should do some sanity check on the data read.
4141 def initialize(io)
42 @conf = YAML::load(io, aliases: true)
42 @conf = YAML::safe_load(io, aliases: true)
4343 @cache = @conf['cache'] || DEFCACHE
4444 @dumpdir = @conf['dumpdir'] || nil
4545 @conf['feeds'] ||= []
00 class Feed2Imap
1 VERSION = "1.3.2"
1 VERSION = "1.3.3"
22 end