Sha256: 23de2f7ca7b7284acdf0dfb40297ca05e205f74733bf002ac11ff62dd823dc5b
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
# A module for Herald module PuppetHerald # A javascript processing class class Javascript # Initialize JS class def initialize @files = nil @base = 'lib/puppet-herald/public' end # Returns a list of JS files to be inserted into main HTML # @return [Array] list of JS's def files require 'puppet-herald' @files = nil if PuppetHerald.in_dev? if @files.nil? public_dir = PuppetHerald.relative_dir(@base) all = Dir.chdir(public_dir) { Dir.glob('**/*.js') } all = all.reverse.reject { |file| file.match(/_test\.js$/) } @files = all.reject { |file| file.match(/bower_components/) } end @files end # Uglify an application JS's into one minified JS file # @param mapname [String] name of source map to be put into uglified JS # @return [Hash] a hash with uglified JS and source map def uglify(mapname) require 'uglifier' filenames = files sources = filenames.collect { |file| File.read(PuppetHerald.relative_dir("#{@base}/#{file}")) } source = sources.join "\n" options = { source_map_url: mapname, source_filename: filenames[0], compress: { angular: true, hoist_vars: true } } uglifier = Uglifier.new(options) uglified, source_map = uglifier.compile_with_map(source) { 'js' => uglified, 'js.map' => source_map } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
puppet-herald-0.8.1 | lib/puppet-herald/javascript.rb |