-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsprockets-preload.gemspec
27 lines (24 loc) · 1018 Bytes
/
sprockets-preload.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sprockets/preload/version'
Gem::Specification.new do |spec|
spec.name = "sprockets-preload"
spec.version = Sprockets::Preload::VERSION
spec.authors = ["Boris Staal"]
spec.email = ["[email protected]"]
spec.description = %q{Macros-based JS preloader for Sprockets}
spec.summary = %q{
The gem extends Sprockets with helpers allowing you to
controllably load huge JS assets with the support of
progress tracking and localStorage caching.
}
spec.homepage = "https://github.com/joosy/sprockets-preload"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "sprockets"
spec.add_dependency "coffee-script"
end