Sha256: b3c09e6839f5aee4855e615ea06d13d5954eacf5c70224d207f1f8a99029cc3f
Contents?: true
Size: 1.52 KB
Versions: 3
Compression:
Stored size: 1.52 KB
Contents
module Slideshow class Fetch ### fix: remove opts, use config (wrapped!!) def initialize( logger, opts, config ) @logger = logger @opts = opts @config = config end attr_reader :logger, :opts, :config def run logger.debug "fetch_uri=#{opts.fetch_uri}" src = opts.fetch_uri ## check for builtin shortcut (assume no / or \) if src.index( '/' ).nil? && src.index( '\\' ).nil? shortcut = src.clone src = config.map_fetch_shortcut( src ) if src.nil? puts "** Error: No mapping found for fetch shortcut '#{shortcut}'." return end puts " Mapping fetch shortcut '#{shortcut}' to: #{src}" end # src = 'http://github.com/geraldb/slideshow/raw/d98e5b02b87ee66485431b1bee8fb6378297bfe4/code/templates/fullerscreen.txt' # src = 'http://github.com/geraldb/sandbox/raw/13d4fec0908fbfcc456b74dfe2f88621614b5244/s5blank/s5blank.txt' uri = URI.parse( src ) logger.debug "scheme: #{uri.scheme}, host: #{uri.host}, port: #{uri.port}, path: #{uri.path}" basename = File.basename( uri.path, '.*' ) # e.g. fullerscreen (without extension) logger.debug "basename: #{basename}" pakpath = File.expand_path( "#{config.config_dir}/templates/#{basename}" ) logger.debug "pakpath: #{pakpath}" ## note: code moved to its own gem, that is, pakman ## see https://github.com/geraldb/pakman Pakman::Fetcher.new( logger ).fetch_pak( src, pakpath ) end # method run end # class Fetch end # module Slideshow
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
slideshow-1.2.0.beta3 | lib/slideshow/cli/commands/fetch.rb |
slideshow-1.2.0.beta2 | lib/slideshow/cli/commands/fetch.rb |
slideshow-1.2.0.beta1 | lib/slideshow/cli/commands/fetch.rb |