compass 1.0.0.alpha.16 → 1.0.0.alpha.17

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0845623a8ac0adce18252bd110196bd20d6abd59
4
+ data.tar.gz: 1ae42262d1befe79e77b487c610e27ad2b787a81
5
+ SHA512:
6
+ metadata.gz: c93fc5e873127d50e553d11dfbf82732ed29bd08cdf4a3160c192914390c176c230a533d3eae6e7231710420f88c9129b486de39d5752b58790a22693de678c0
7
+ data.tar.gz: 63d030bac6ec9659f04ea52d70e974c70cfcf38e819aa4c55b6564b0a05cd4b107a935ec62cef8c9c22077ebabfebf69160c0ff0dba5f50fb2e0a8dd6af1388f
@@ -1 +1 @@
1
- 1.0.0.alpha.16
1
+ 1.0.0.alpha.17
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0.alpha.15
1
+ 1.0.0.alpha.16
@@ -66,7 +66,7 @@ module Compass
66
66
  end
67
67
 
68
68
  def corresponding_sourcemap_file(sass_file)
69
- "#{to}/#{stylesheet_name(sass_file)}.map"
69
+ "#{to}/#{stylesheet_name(sass_file)}.css.map"
70
70
  end
71
71
 
72
72
  def target_directories
@@ -148,12 +148,13 @@ module Compass
148
148
  end
149
149
  end
150
150
 
151
- def timed
151
+ def timed(timed_thing = lambda {|res| res})
152
152
  start_time = Time.now
153
153
  res = yield
154
154
  end_time = Time.now
155
- res.instance_variable_set("@__duration", end_time - start_time)
156
- def res.__duration
155
+ has_duration = timed_thing.call(res)
156
+ has_duration.instance_variable_set("@__duration", end_time - start_time)
157
+ def has_duration.__duration
157
158
  @__duration
158
159
  end
159
160
  res
@@ -161,9 +162,8 @@ module Compass
161
162
 
162
163
  # Compile one Sass file
163
164
  def compile(sass_filename, css_filename, sourcemap_filename = nil)
164
- start_time = end_time = nil
165
165
  css_content, sourcemap = logger.red do
166
- timed do
166
+ timed(lambda {|r| r[0]}) do
167
167
  engine = engine(sass_filename, css_filename)
168
168
  if sourcemap_filename && options[:sourcemap]
169
169
  engine.render_with_sourcemap(relative_path(css_filename, sourcemap_filename))
@@ -0,0 +1,10 @@
1
+ # Require any additional compass plugins here.
2
+ css_dir = "tmp"
3
+ sass_dir = "sass"
4
+ images_dir = "assets/images"
5
+ javascripts_dir = "assets/javascripts"
6
+ # Set this to the root of your project when deployed:
7
+ http_path = "/"
8
+ # To enable relative paths to assets via compass helper functions. Uncomment:
9
+ relative_assets = true
10
+ sourcemap = true
@@ -0,0 +1 @@
1
+ .another-simple-class{color:blue}
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": ";AAAA,qBAAsB;EACpB,KAAK,EAAE,IAAI",
4
+ "sources": ["../sass/another_simple.scss"],
5
+ "file": "another_simple.css"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": ";AAAA,GAAG;EACD,KAAK,EAAE,GAAG",
4
+ "sources": ["../sass/simple.sass"],
5
+ "file": "simple.css"
6
+ }
@@ -0,0 +1 @@
1
+ *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": ";AAEA,CAAE;ECqVA,eAAwC,ECrU5B,UAAmB;EDqU/B,kBAAwC,ECrU5B,UAAmB;EDqU/B,UAAwC,ECrU5B,UAAmB",
4
+ "sources": ["../sass/with_libraries.scss","../../../../../../core/stylesheets/compass/_support.scss","../../../../../../core/stylesheets/compass/css3/_box-sizing.scss"],
5
+ "file": "with_libraries.css"
6
+ }
@@ -0,0 +1,3 @@
1
+ .another-simple-class {
2
+ color: blue;
3
+ }
@@ -0,0 +1,5 @@
1
+ @import "compass/css3/box-sizing";
2
+
3
+ * {
4
+ @include box-sizing;
5
+ }
@@ -0,0 +1,4 @@
1
+ /* line 1, ../sass/another_simple.scss */
2
+ .another-simple-class {
3
+ color: blue;
4
+ }
@@ -0,0 +1,4 @@
1
+ /* line 1, ../sass/simple.sass */
2
+ div {
3
+ color: red;
4
+ }
@@ -92,7 +92,7 @@ module Compass::CommandLineHelper
92
92
  end
93
93
  message = "Action #{action.inspect} was not performed on: #{path}."
94
94
  message += "The following actions were performed: #{actions_found.map{|a|a.inspect}.join(", ")}" if actions_found.any?
95
- puts @last_result
95
+ # puts @last_result
96
96
  fail message
97
97
  end
98
98
 
@@ -11,8 +11,10 @@ class CompassTest < Test::Unit::TestCase
11
11
  end
12
12
 
13
13
  def teardown
14
- [:empty, :compass, :image_urls, :relative].each do |project_name|
14
+ Dir.glob(absolutize("fixtures/stylesheets/*")).each do |dir|
15
+ project_name = File.basename(dir)
15
16
  ::FileUtils.rm_rf tempfile_path(project_name)
17
+ ::FileUtils.rm_rf File.join(project_path(project_name), ".sass-cache")
16
18
  end
17
19
  end
18
20
 
@@ -36,7 +38,7 @@ class CompassTest < Test::Unit::TestCase
36
38
  before_compile = Proc.new do |config|
37
39
  config.on_stylesheet_error {|filename, message| file = filename; error = true }
38
40
  end
39
- within_project(:error, before_compile) rescue nil;
41
+ within_project(:error, before_compile) rescue nil
40
42
  assert error, "Project did not throw a compile error"
41
43
  assert file.is_a?(String), "Filename was not a string"
42
44
  end
@@ -62,6 +64,17 @@ class CompassTest < Test::Unit::TestCase
62
64
  end
63
65
  end
64
66
 
67
+ def test_sourcemaps
68
+ within_project('sourcemaps') do |proj|
69
+ each_css_file(proj.css_path) do |css_file|
70
+ assert_no_errors css_file, 'sourcemaps'
71
+ end
72
+ each_sass_file do |sass_file|
73
+ assert_renders_correctly sass_file, :ignore_charset => true
74
+ end
75
+ end
76
+ end
77
+
65
78
  def test_env_in_development
66
79
  within_project('envtest', lambda {|c| c.environment = :development }) do |proj|
67
80
  each_css_file(proj.css_path) do |css_file|
metadata CHANGED
@@ -1,17 +1,9 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: compass
3
- version: !ruby/object:Gem::Version
4
- hash: 915323291
5
- prerelease: 6
6
- segments:
7
- - 1
8
- - 0
9
- - 0
10
- - alpha
11
- - 16
12
- version: 1.0.0.alpha.16
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0.alpha.17
13
5
  platform: ruby
14
- authors:
6
+ authors:
15
7
  - Chris Eppstein
16
8
  - Scott Davis
17
9
  - Eric A. Meyer
@@ -20,115 +12,100 @@ authors:
20
12
  autorequire:
21
13
  bindir: bin
22
14
  cert_chain: []
23
-
24
- date: 2013-12-11 00:00:00 Z
25
- dependencies:
26
- - !ruby/object:Gem::Dependency
27
- version_requirements: &id001 !ruby/object:Gem::Requirement
28
- none: false
29
- requirements:
15
+ date: 2013-12-11 00:00:00.000000000 Z
16
+ dependencies:
17
+ - !ruby/object:Gem::Dependency
18
+ name: sass
19
+ requirement: !ruby/object:Gem::Requirement
20
+ requirements:
30
21
  - - ~>
31
- - !ruby/object:Gem::Version
32
- hash: -2745595092
33
- segments:
34
- - 3
35
- - 3
36
- - 0
37
- - rc
38
- - 1
22
+ - !ruby/object:Gem::Version
39
23
  version: 3.3.0.rc.1
40
- name: sass
41
- prerelease: false
42
24
  type: :runtime
43
- requirement: *id001
44
- - !ruby/object:Gem::Dependency
45
- version_requirements: &id002 !ruby/object:Gem::Requirement
46
- none: false
47
- requirements:
25
+ prerelease: false
26
+ version_requirements: !ruby/object:Gem::Requirement
27
+ requirements:
48
28
  - - ~>
49
- - !ruby/object:Gem::Version
50
- hash: 915323291
51
- segments:
52
- - 1
53
- - 0
54
- - 0
55
- - alpha
56
- - 16
57
- version: 1.0.0.alpha.16
29
+ - !ruby/object:Gem::Version
30
+ version: 3.3.0.rc.1
31
+ - !ruby/object:Gem::Dependency
58
32
  name: compass-core
59
- prerelease: false
33
+ requirement: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 1.0.0.alpha.16
60
38
  type: :runtime
61
- requirement: *id002
62
- - !ruby/object:Gem::Dependency
63
- version_requirements: &id003 !ruby/object:Gem::Requirement
64
- none: false
65
- requirements:
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
66
42
  - - ~>
67
- - !ruby/object:Gem::Version
68
- hash: 21
69
- segments:
70
- - 1
71
- - 0
72
- - 1
73
- version: 1.0.1
43
+ - !ruby/object:Gem::Version
44
+ version: 1.0.0.alpha.16
45
+ - !ruby/object:Gem::Dependency
74
46
  name: compass-import-once
75
- prerelease: false
47
+ requirement: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ~>
50
+ - !ruby/object:Gem::Version
51
+ version: 1.0.1
76
52
  type: :runtime
77
- requirement: *id003
78
- - !ruby/object:Gem::Dependency
79
- version_requirements: &id004 !ruby/object:Gem::Requirement
80
- none: false
81
- requirements:
53
+ prerelease: false
54
+ version_requirements: !ruby/object:Gem::Requirement
55
+ requirements:
82
56
  - - ~>
83
- - !ruby/object:Gem::Version
84
- hash: 11
85
- segments:
86
- - 1
87
- - 2
88
- version: "1.2"
57
+ - !ruby/object:Gem::Version
58
+ version: 1.0.1
59
+ - !ruby/object:Gem::Dependency
89
60
  name: chunky_png
90
- prerelease: false
61
+ requirement: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ~>
64
+ - !ruby/object:Gem::Version
65
+ version: '1.2'
91
66
  type: :runtime
92
- requirement: *id004
93
- - !ruby/object:Gem::Dependency
94
- version_requirements: &id005 !ruby/object:Gem::Requirement
95
- none: false
96
- requirements:
67
+ prerelease: false
68
+ version_requirements: !ruby/object:Gem::Requirement
69
+ requirements:
97
70
  - - ~>
98
- - !ruby/object:Gem::Version
99
- hash: 19
100
- segments:
101
- - 1
102
- - 1
103
- - 0
104
- version: 1.1.0
71
+ - !ruby/object:Gem::Version
72
+ version: '1.2'
73
+ - !ruby/object:Gem::Dependency
105
74
  name: listen
106
- prerelease: false
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ~>
78
+ - !ruby/object:Gem::Version
79
+ version: 1.1.0
107
80
  type: :runtime
108
- requirement: *id005
109
- - !ruby/object:Gem::Dependency
110
- version_requirements: &id006 !ruby/object:Gem::Requirement
111
- none: false
112
- requirements:
113
- - - ">="
114
- - !ruby/object:Gem::Version
115
- hash: 3
116
- segments:
117
- - 0
118
- version: "0"
119
- name: json
120
81
  prerelease: false
82
+ version_requirements: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ~>
85
+ - !ruby/object:Gem::Version
86
+ version: 1.1.0
87
+ - !ruby/object:Gem::Dependency
88
+ name: json
89
+ requirement: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
121
94
  type: :runtime
122
- requirement: *id006
123
- description: Compass is a Sass-based Stylesheet Framework that streamlines the creation and maintenance of CSS.
95
+ prerelease: false
96
+ version_requirements: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - '>='
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ description: Compass is a Sass-based Stylesheet Framework that streamlines the creation
102
+ and maintenance of CSS.
124
103
  email: chris@eppsteins.net
125
- executables:
104
+ executables:
126
105
  - compass
127
106
  extensions: []
128
-
129
107
  extra_rdoc_files: []
130
-
131
- files:
108
+ files:
132
109
  - LICENSE.markdown
133
110
  - VERSION
134
111
  - Rakefile
@@ -260,14 +237,12 @@ files:
260
237
  - test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf
261
238
  - test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf
262
239
  - test/fixtures/stylesheets/busted_font_urls/sass/screen.sass
263
- - test/fixtures/stylesheets/busted_font_urls/tmp/screen.css
264
240
  - test/fixtures/stylesheets/busted_image_urls/config.rb
265
241
  - test/fixtures/stylesheets/busted_image_urls/css/screen.css
266
242
  - test/fixtures/stylesheets/busted_image_urls/images/feed.png
267
243
  - test/fixtures/stylesheets/busted_image_urls/images/flags/dk.png
268
244
  - test/fixtures/stylesheets/busted_image_urls/images/grid.png
269
245
  - test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
270
- - test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
271
246
  - test/fixtures/stylesheets/compass/100x150.jpg
272
247
  - test/fixtures/stylesheets/compass/config.rb
273
248
  - test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
@@ -626,7 +601,6 @@ files:
626
601
  - test/fixtures/stylesheets/envtest/config.rb
627
602
  - test/fixtures/stylesheets/envtest/css/env.css
628
603
  - test/fixtures/stylesheets/envtest/sass/env.scss
629
- - test/fixtures/stylesheets/envtest/tmp/env.css
630
604
  - test/fixtures/stylesheets/error/config.rb
631
605
  - test/fixtures/stylesheets/error/sass/screen.sass
632
606
  - test/fixtures/stylesheets/image_urls/config.rb
@@ -641,6 +615,16 @@ files:
641
615
  - test/fixtures/stylesheets/relative/sass/ie.sass
642
616
  - test/fixtures/stylesheets/relative/sass/print.sass
643
617
  - test/fixtures/stylesheets/relative/sass/screen.sass
618
+ - test/fixtures/stylesheets/sourcemaps/config.rb
619
+ - test/fixtures/stylesheets/sourcemaps/css/another_simple.css
620
+ - test/fixtures/stylesheets/sourcemaps/css/another_simple.css.map
621
+ - test/fixtures/stylesheets/sourcemaps/css/simple.css
622
+ - test/fixtures/stylesheets/sourcemaps/css/simple.css.map
623
+ - test/fixtures/stylesheets/sourcemaps/css/with_libraries.css
624
+ - test/fixtures/stylesheets/sourcemaps/css/with_libraries.css.map
625
+ - test/fixtures/stylesheets/sourcemaps/sass/another_simple.scss
626
+ - test/fixtures/stylesheets/sourcemaps/sass/simple.sass
627
+ - test/fixtures/stylesheets/sourcemaps/sass/with_libraries.scss
644
628
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb
645
629
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss
646
630
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss
@@ -649,6 +633,8 @@ files:
649
633
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
650
634
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
651
635
  - test/fixtures/stylesheets/valid/config.rb
636
+ - test/fixtures/stylesheets/valid/css/another_simple.css
637
+ - test/fixtures/stylesheets/valid/css/simple.css
652
638
  - test/fixtures/stylesheets/valid/sass/another_simple.scss
653
639
  - test/fixtures/stylesheets/valid/sass/simple.sass
654
640
  - test/helpers/command_line.rb
@@ -688,40 +674,29 @@ files:
688
674
  - RELEASE_VERSION
689
675
  homepage: http://compass-style.org
690
676
  licenses: []
691
-
692
- post_install_message: " Compass is charityware. If you love it, please donate on our behalf at http://umdf.org/compass Thanks!\n"
677
+ metadata: {}
678
+ post_install_message: |2
679
+ Compass is charityware. If you love it, please donate on our behalf at http://umdf.org/compass Thanks!
693
680
  rdoc_options: []
694
-
695
- require_paths:
681
+ require_paths:
696
682
  - lib
697
- required_ruby_version: !ruby/object:Gem::Requirement
698
- none: false
699
- requirements:
700
- - - ">="
701
- - !ruby/object:Gem::Version
702
- hash: 3
703
- segments:
704
- - 0
705
- version: "0"
706
- required_rubygems_version: !ruby/object:Gem::Requirement
707
- none: false
708
- requirements:
709
- - - ">"
710
- - !ruby/object:Gem::Version
711
- hash: 25
712
- segments:
713
- - 1
714
- - 3
715
- - 1
683
+ required_ruby_version: !ruby/object:Gem::Requirement
684
+ requirements:
685
+ - - '>='
686
+ - !ruby/object:Gem::Version
687
+ version: '0'
688
+ required_rubygems_version: !ruby/object:Gem::Requirement
689
+ requirements:
690
+ - - '>'
691
+ - !ruby/object:Gem::Version
716
692
  version: 1.3.1
717
693
  requirements: []
718
-
719
694
  rubyforge_project:
720
- rubygems_version: 1.8.15
695
+ rubygems_version: 2.0.3
721
696
  signing_key:
722
- specification_version: 3
697
+ specification_version: 4
723
698
  summary: A Real Stylesheet Framework
724
- test_files:
699
+ test_files:
725
700
  - test/fixtures/extensions/only_stylesheets/compass_init.rb
726
701
  - test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
727
702
  - test/fixtures/fonts/bgrove.base64.txt
@@ -765,14 +740,12 @@ test_files:
765
740
  - test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf
766
741
  - test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf
767
742
  - test/fixtures/stylesheets/busted_font_urls/sass/screen.sass
768
- - test/fixtures/stylesheets/busted_font_urls/tmp/screen.css
769
743
  - test/fixtures/stylesheets/busted_image_urls/config.rb
770
744
  - test/fixtures/stylesheets/busted_image_urls/css/screen.css
771
745
  - test/fixtures/stylesheets/busted_image_urls/images/feed.png
772
746
  - test/fixtures/stylesheets/busted_image_urls/images/flags/dk.png
773
747
  - test/fixtures/stylesheets/busted_image_urls/images/grid.png
774
748
  - test/fixtures/stylesheets/busted_image_urls/sass/screen.sass
775
- - test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
776
749
  - test/fixtures/stylesheets/compass/100x150.jpg
777
750
  - test/fixtures/stylesheets/compass/config.rb
778
751
  - test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
@@ -1131,7 +1104,6 @@ test_files:
1131
1104
  - test/fixtures/stylesheets/envtest/config.rb
1132
1105
  - test/fixtures/stylesheets/envtest/css/env.css
1133
1106
  - test/fixtures/stylesheets/envtest/sass/env.scss
1134
- - test/fixtures/stylesheets/envtest/tmp/env.css
1135
1107
  - test/fixtures/stylesheets/error/config.rb
1136
1108
  - test/fixtures/stylesheets/error/sass/screen.sass
1137
1109
  - test/fixtures/stylesheets/image_urls/config.rb
@@ -1146,6 +1118,16 @@ test_files:
1146
1118
  - test/fixtures/stylesheets/relative/sass/ie.sass
1147
1119
  - test/fixtures/stylesheets/relative/sass/print.sass
1148
1120
  - test/fixtures/stylesheets/relative/sass/screen.sass
1121
+ - test/fixtures/stylesheets/sourcemaps/config.rb
1122
+ - test/fixtures/stylesheets/sourcemaps/css/another_simple.css
1123
+ - test/fixtures/stylesheets/sourcemaps/css/another_simple.css.map
1124
+ - test/fixtures/stylesheets/sourcemaps/css/simple.css
1125
+ - test/fixtures/stylesheets/sourcemaps/css/simple.css.map
1126
+ - test/fixtures/stylesheets/sourcemaps/css/with_libraries.css
1127
+ - test/fixtures/stylesheets/sourcemaps/css/with_libraries.css.map
1128
+ - test/fixtures/stylesheets/sourcemaps/sass/another_simple.scss
1129
+ - test/fixtures/stylesheets/sourcemaps/sass/simple.sass
1130
+ - test/fixtures/stylesheets/sourcemaps/sass/with_libraries.scss
1149
1131
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb
1150
1132
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss
1151
1133
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss
@@ -1154,6 +1136,8 @@ test_files:
1154
1136
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
1155
1137
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
1156
1138
  - test/fixtures/stylesheets/valid/config.rb
1139
+ - test/fixtures/stylesheets/valid/css/another_simple.css
1140
+ - test/fixtures/stylesheets/valid/css/simple.css
1157
1141
  - test/fixtures/stylesheets/valid/sass/another_simple.scss
1158
1142
  - test/fixtures/stylesheets/valid/sass/simple.sass
1159
1143
  - test/helpers/command_line.rb
@@ -1,9 +0,0 @@
1
- .showgrid { font-family: url('http://assets3.example.com/fonts/grid-BUSTED.ttf'); }
2
-
3
- .no-buster { font-family: url('http://assets3.example.com/fonts/grid.ttf'); }
4
-
5
- .buster-by-default { font-family: url('http://assets3.example.com/fonts/grid-BUSTED.ttf'); }
6
-
7
- .feed { font-family: url('http://assets3.example.com/fonts/feed.ttf?query_string'); }
8
-
9
- .dk { font-family: url('http://assets1.example.com/fonts/sub/dk.ttf?query_string'); }
@@ -1,9 +0,0 @@
1
- .showgrid { background-image: url('http://assets0.example.com/images/grid-BUSTED.png'); }
2
-
3
- .inlinegrid { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUEAYAAACv1qP4AAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAZ0lEQVRYw+3QwQ2AIBAFUTEUwI3+uzN7gDscsIgxEuO8An52J11X73OudfxMraXkzHfO3Y98nQEhA0IGhAwIGRAyIGRAyICQASEDQgaEDAgZEDIgZEDIgJABoZzSGK3tPuN9ERFP7Nw4fg+c5g8V1wAAAABJRU5ErkJggg=='); }
4
-
5
- .no-buster { background-image: url('http://assets0.example.com/images/grid.png'); }
6
-
7
- .feed { background-image: url('http://assets0.example.com/images/feed.png?query_string'); }
8
-
9
- .dk { background-image: url('http://assets0.example.com/images/flags/dk.png?query_string'); }
@@ -1,14 +0,0 @@
1
- .env {
2
- env: production; }
3
-
4
- .time {
5
- time: 2013-12-10; }
6
-
7
- .date {
8
- date: 2013-12-10; }
9
-
10
- .filename {
11
- file: env.scss; }
12
-
13
- .output {
14
- output: env.css; }