compass-rails-source-maps 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +34 -0
- data/Rakefile +1 -0
- data/compass-rails-source-maps.gemspec +23 -0
- data/lib/compass-rails-source-maps.rb +8 -0
- data/lib/compass-rails-source-maps/sass_importer.rb +9 -0
- data/lib/compass-rails-source-maps/sass_template.rb +55 -0
- data/lib/compass-rails-source-maps/version.rb +3 -0
- metadata +82 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b892408cd7396f1224dcdc3d6436d006e07d5cc2
|
4
|
+
data.tar.gz: 8c4da548ac31a6e3a52c134d54ed84f76805b17a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2814ae151ec1023b64b41903cea9043d9830d00a95a6cf38a296c536f52072d8232bca0e007aa891c2f83d7515173bea110ad107899e6aa60534928c6e3623ae
|
7
|
+
data.tar.gz: 381b32513d081eaedfce945211067959adc230998361bfd83afb2f176576cb005662df878c64833ea9cdb2db08ec583b35bd1bc75524f0e9c0fd9c0cfdd297be
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 glebtv
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# Compass Rails Source Maps
|
2
|
+
|
3
|
+
A small monkeypatch to enable sourcemaps with compass-rails
|
4
|
+
|
5
|
+
Heavily based on https://github.com/vhyza/sass-rails-source-maps
|
6
|
+
|
7
|
+
That gem doesn't work as-is with compass as compass-rails patches default sass\sprockets code
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
group :development do
|
13
|
+
gem 'compass-rails-source-maps'
|
14
|
+
end
|
15
|
+
|
16
|
+
And then execute:
|
17
|
+
|
18
|
+
$ bundle
|
19
|
+
|
20
|
+
Or install it yourself as:
|
21
|
+
|
22
|
+
$ gem install compass-rails-source-maps
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
See https://github.com/vhyza/sass-rails-source-maps
|
27
|
+
|
28
|
+
## Contributing
|
29
|
+
|
30
|
+
1. Fork it
|
31
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
32
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
33
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
34
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'compass-rails-source-maps/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "compass-rails-source-maps"
|
8
|
+
spec.version = CompassRailsSourceMaps::VERSION
|
9
|
+
spec.authors = ["glebtv"]
|
10
|
+
spec.email = ["glebtv@gmail.com"]
|
11
|
+
spec.description = %q{A small monkeypatch to enable sourcemaps with compass-rails}
|
12
|
+
spec.summary = %q{A small monkeypatch to enable sourcemaps with compass-rails}
|
13
|
+
spec.homepage = "https://github.com/glebtv/compass-rails-source-map"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
require 'sprockets'
|
2
|
+
require 'fileutils'
|
3
|
+
require 'compass-rails'
|
4
|
+
require 'compass-rails/patches/sass_importer'
|
5
|
+
require 'compass-rails-source-maps/version'
|
6
|
+
require 'compass-rails-source-maps/sass_importer'
|
7
|
+
require 'compass-rails-source-maps/sass_template'
|
8
|
+
|
@@ -0,0 +1,55 @@
|
|
1
|
+
module Sprockets
|
2
|
+
class SassTemplate < Tilt::Template
|
3
|
+
SOURCE_MAPS_DIRECTORY = "assets/source_maps"
|
4
|
+
|
5
|
+
def write_output(text, destination)
|
6
|
+
FileUtils.mkdir_p(::Rails.root.join("public", SOURCE_MAPS_DIRECTORY))
|
7
|
+
File.open(destination, 'wb') { |file| file.write(text) }
|
8
|
+
end
|
9
|
+
|
10
|
+
def copy_dependencies(files)
|
11
|
+
files.each do |file|
|
12
|
+
FileUtils.cp(file, ::Rails.root.join("public", SOURCE_MAPS_DIRECTORY, File.basename(file)))
|
13
|
+
end
|
14
|
+
end
|
15
|
+
p 'patch-sm'
|
16
|
+
def evaluate(context, locals, &block)
|
17
|
+
p 'eval'
|
18
|
+
cache_store = SassCacheStore.new(context.environment)
|
19
|
+
paths = context.environment.paths.map { |path| CompassRails::SpriteImporter.new(context, path) }
|
20
|
+
paths += context.environment.paths.map { |path| SassImporter.new(context, path) }
|
21
|
+
paths += ::Rails.application.config.sass.load_paths
|
22
|
+
|
23
|
+
options = CompassRails.sass_config.merge({
|
24
|
+
sourcemap_filename: ::Sass::Util::sourcemap_name(basename),
|
25
|
+
filename: eval_file,
|
26
|
+
line: line,
|
27
|
+
syntax: syntax,
|
28
|
+
cache_store: cache_store,
|
29
|
+
cache: ::Rails.application.config.assets.debug,
|
30
|
+
line_numbers: ::Rails.application.config.sass.line_numbers,
|
31
|
+
line_comments: ::Rails.application.config.sass.line_comments,
|
32
|
+
importer: SassImporter.new(context, context.pathname),
|
33
|
+
load_paths: paths,
|
34
|
+
sprockets: {
|
35
|
+
context: context,
|
36
|
+
environment: context.environment
|
37
|
+
}
|
38
|
+
})
|
39
|
+
|
40
|
+
result, mapping = ::Sass::Engine.new(data, options).render_with_sourcemap("/#{SOURCE_MAPS_DIRECTORY}/#{options[:sourcemap_filename]}")
|
41
|
+
|
42
|
+
write_output(data, ::Rails.root.join("public", SOURCE_MAPS_DIRECTORY, basename).to_s)
|
43
|
+
write_output(mapping.to_json(
|
44
|
+
css_path: basename.gsub(".#{syntax.to_s}", ""),
|
45
|
+
sourcemap_path: ::Rails.root.join("public", SOURCE_MAPS_DIRECTORY, options[:sourcemap_filename])) + "\n",
|
46
|
+
::Rails.root.join("public", SOURCE_MAPS_DIRECTORY, options[:sourcemap_filename]).to_s)
|
47
|
+
copy_dependencies(context._dependency_paths)
|
48
|
+
|
49
|
+
result
|
50
|
+
rescue ::Sass::SyntaxError => e
|
51
|
+
context.__LINE__ = e.sass_backtrace.first[:line]
|
52
|
+
raise e
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
metadata
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: compass-rails-source-maps
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- glebtv
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-01-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: A small monkeypatch to enable sourcemaps with compass-rails
|
42
|
+
email:
|
43
|
+
- glebtv@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- .gitignore
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE.txt
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- compass-rails-source-maps.gemspec
|
54
|
+
- lib/compass-rails-source-maps.rb
|
55
|
+
- lib/compass-rails-source-maps/sass_importer.rb
|
56
|
+
- lib/compass-rails-source-maps/sass_template.rb
|
57
|
+
- lib/compass-rails-source-maps/version.rb
|
58
|
+
homepage: https://github.com/glebtv/compass-rails-source-map
|
59
|
+
licenses:
|
60
|
+
- MIT
|
61
|
+
metadata: {}
|
62
|
+
post_install_message:
|
63
|
+
rdoc_options: []
|
64
|
+
require_paths:
|
65
|
+
- lib
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - '>='
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
requirements: []
|
77
|
+
rubyforge_project:
|
78
|
+
rubygems_version: 2.1.10
|
79
|
+
signing_key:
|
80
|
+
specification_version: 4
|
81
|
+
summary: A small monkeypatch to enable sourcemaps with compass-rails
|
82
|
+
test_files: []
|