initial commit
This commit is contained in:
commit
09c2936009
17
.gitignore
vendored
Normal file
17
.gitignore
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
*.gem
|
||||||
|
*.rbc
|
||||||
|
.bundle
|
||||||
|
.config
|
||||||
|
.yardoc
|
||||||
|
Gemfile.lock
|
||||||
|
InstalledFiles
|
||||||
|
_yardoc
|
||||||
|
coverage
|
||||||
|
doc/
|
||||||
|
lib/bundler/man
|
||||||
|
pkg
|
||||||
|
rdoc
|
||||||
|
spec/reports
|
||||||
|
test/tmp
|
||||||
|
test/version_tmp
|
||||||
|
tmp
|
4
Gemfile
Normal file
4
Gemfile
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
# Specify your gem's dependencies in sprockets-vendor_gems.gemspec
|
||||||
|
gemspec
|
22
LICENSE
Normal file
22
LICENSE
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
Copyright (c) 2012 John Bintz
|
||||||
|
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
36
README.md
Normal file
36
README.md
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
# Get at available assets in loaded gems in Sprockets
|
||||||
|
|
||||||
|
Either get the list of asset paths:
|
||||||
|
|
||||||
|
``` ruby
|
||||||
|
require 'sprockets-vendor_gems'
|
||||||
|
|
||||||
|
env = Sprockets::Environment.new('.')
|
||||||
|
Sprockets.find_gem_vendor_paths(:for => :javascript).each do |path|
|
||||||
|
env.append_path path
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
or get an Environment with those paths in there already:
|
||||||
|
``` ruby
|
||||||
|
require 'sprockets-vendor_gems'
|
||||||
|
|
||||||
|
env = Sprockets::EnvironmentWithVendoredGems.new('.')
|
||||||
|
```
|
||||||
|
|
||||||
|
Yeah!
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Add this line to your application's Gemfile:
|
||||||
|
|
||||||
|
gem 'sprockets-vendor_gems'
|
||||||
|
|
||||||
|
And then execute:
|
||||||
|
|
||||||
|
$ bundle
|
||||||
|
|
||||||
|
Or install it yourself as:
|
||||||
|
|
||||||
|
$ gem install sprockets-vendor_gems
|
||||||
|
|
30
lib/sprockets-vendor_gems.rb
Normal file
30
lib/sprockets-vendor_gems.rb
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
require "sprockets"
|
||||||
|
|
||||||
|
module ::Sprockets
|
||||||
|
class << self
|
||||||
|
def find_gem_vendor_paths(options = {})
|
||||||
|
for_types = [ options[:for] || [ 'javascripts', 'stylesheets' ] ].flatten
|
||||||
|
|
||||||
|
paths = []
|
||||||
|
|
||||||
|
Gem::Specification.each do |gemspec|
|
||||||
|
%w{vendor lib app}.product(for_types).each do |base_dir, type|
|
||||||
|
path = File.join(gemspec.gem_dir, base_dir, "assets", type.to_s)
|
||||||
|
|
||||||
|
paths << path if File.directory?(path)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
paths
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
class EnvironmentWithVendoredGems < Environment
|
||||||
|
def initialize(*args)
|
||||||
|
super(*args)
|
||||||
|
|
||||||
|
Sprockets.find_gem_vendor_paths.each { |path| append_path(path) }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
16
sprockets-vendor_gems.gemspec
Normal file
16
sprockets-vendor_gems.gemspec
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# -*- encoding: utf-8 -*-
|
||||||
|
Gem::Specification.new do |gem|
|
||||||
|
gem.authors = ["John Bintz"]
|
||||||
|
gem.email = ["john@coswellproductions.com"]
|
||||||
|
gem.description = %q{Get the vendored assets paths in gems.}
|
||||||
|
gem.summary = %q{Get the vendored assets paths in gems.}
|
||||||
|
gem.homepage = ""
|
||||||
|
|
||||||
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
||||||
|
gem.files = `git ls-files`.split("\n")
|
||||||
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
||||||
|
gem.name = "sprockets-vendor_gems"
|
||||||
|
gem.require_paths = ["lib"]
|
||||||
|
gem.version = '1.0.0'
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user