compass 0.12.alpha.4 → 0.12.rc.0

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.
Files changed (53) hide show
  1. data/VERSION.yml +2 -2
  2. data/bin/compass +4 -0
  3. data/features/command_line.feature +0 -10
  4. data/features/extensions.feature +0 -10
  5. data/features/step_definitions/command_line_steps.rb +0 -12
  6. data/frameworks/compass/stylesheets/compass/css3/_background-clip.scss +2 -2
  7. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +1 -1
  8. data/lib/compass/app_integration.rb +26 -11
  9. data/lib/compass/commands/project_structure.rb +93 -0
  10. data/lib/compass/commands/update_project.rb +0 -1
  11. data/lib/compass/commands/watch_project.rb +6 -1
  12. data/lib/compass/compiler.rb +2 -1
  13. data/lib/compass/configuration.rb +6 -1
  14. data/lib/compass/configuration/data.rb +9 -3
  15. data/lib/compass/configuration/helpers.rb +7 -21
  16. data/lib/compass/configuration/inheritance.rb +101 -0
  17. data/lib/compass/configuration/serialization.rb +17 -7
  18. data/lib/compass/errors.rb +1 -0
  19. data/lib/compass/installers/manifest.rb +10 -5
  20. data/lib/compass/sass_extensions/functions/display.rb +1 -0
  21. data/lib/compass/sass_extensions/functions/trig.rb +1 -1
  22. data/lib/compass/sass_extensions/sprites.rb +0 -1
  23. data/lib/compass/sass_extensions/sprites/image.rb +1 -1
  24. data/lib/compass/sprite_importer.rb +4 -1
  25. data/test/fixtures/stylesheets/compass/css/background-clip.css +10 -0
  26. data/test/fixtures/stylesheets/compass/css/fonts.css +1 -1
  27. data/test/fixtures/stylesheets/compass/sass/background-clip.scss +8 -0
  28. data/test/test_helper.rb +2 -2
  29. data/test/units/compiler_test.rb +11 -0
  30. data/test/units/configuration_test.rb +144 -0
  31. data/test/units/sprites/sprite_command_test.rb +4 -3
  32. metadata +12 -30
  33. data/examples/compass/compass_app_log.txt +0 -6
  34. data/features/rails_integration.feature +0 -32
  35. data/lib/compass/app_integration/merb.rb +0 -1
  36. data/lib/compass/app_integration/merb/runtime.rb +0 -63
  37. data/lib/compass/app_integration/rails.rb +0 -83
  38. data/lib/compass/app_integration/rails/actionpack2x.rb +0 -10
  39. data/lib/compass/app_integration/rails/actionpack2x/action_controller.rb +0 -15
  40. data/lib/compass/app_integration/rails/actionpack2x/sass_plugin.rb +0 -5
  41. data/lib/compass/app_integration/rails/actionpack2x/urls.rb +0 -18
  42. data/lib/compass/app_integration/rails/actionpack30.rb +0 -11
  43. data/lib/compass/app_integration/rails/actionpack30/railtie.rb +0 -46
  44. data/lib/compass/app_integration/rails/actionpack31.rb +0 -5
  45. data/lib/compass/app_integration/rails/actionpack31/helpers.rb +0 -28
  46. data/lib/compass/app_integration/rails/actionpack31/railtie.rb +0 -87
  47. data/lib/compass/app_integration/rails/configuration_defaults.rb +0 -123
  48. data/lib/compass/app_integration/rails/installer.rb +0 -182
  49. data/lib/compass/app_integration/rails/runtime.rb +0 -17
  50. data/lib/compass/app_integration/rails/templates/compass-install-rails.rb +0 -78
  51. data/test/integrations/rails_integration_test.rb +0 -51
  52. data/test/integrations/test_rails_helper.rb +0 -20
  53. data/test/units/rails_configuration_test.rb +0 -50
@@ -16,13 +16,19 @@ module Compass
16
16
  end
17
17
  end
18
18
 
19
+ def get_binding
20
+ binding
21
+ end
19
22
  def parse_string(contents, filename)
20
- bind = binding
23
+ bind = get_binding
21
24
  eval(contents, bind, filename)
22
- ATTRIBUTES.each do |prop|
23
- value = eval(prop.to_s, bind) rescue nil
24
- value = value.to_s if value.is_a?(Pathname)
25
- self.send("#{prop}=", value) unless value.nil?
25
+ local_vars_set = eval("local_variables", bind)
26
+ local_vars_set.each do |local_var|
27
+ if (ATTRIBUTES+ARRAY_ATTRIBUTES).include?(local_var.to_sym)
28
+ value = eval(local_var.to_s, bind)
29
+ value = value.to_s if value.is_a?(Pathname)
30
+ self.send("#{local_var}=", value)
31
+ end
26
32
  end
27
33
  if @added_import_paths
28
34
  self.additional_import_paths ||= []
@@ -45,7 +51,7 @@ module Compass
45
51
  end
46
52
  contents << "# Require any additional compass plugins here.\n"
47
53
  contents << "\n" if (required_libraries || []).any?
48
- ATTRIBUTES.each do |prop|
54
+ (ATTRIBUTES + ARRAY_ATTRIBUTES).each do |prop|
49
55
  value = send("#{prop}_without_default")
50
56
  if value.is_a?(Proc)
51
57
  $stderr.puts "WARNING: #{prop} is code and cannot be written to a file. You'll need to copy it yourself."
@@ -64,7 +70,11 @@ module Compass
64
70
  end
65
71
 
66
72
  def serialize_property(prop, value)
67
- %Q(#{prop} = #{value.inspect}\n)
73
+ if value.respond_to?(:serialize_to_config)
74
+ value.serialize_to_config(prop) + "\n"
75
+ else
76
+ %Q(#{prop} = #{value.inspect}\n)
77
+ end
68
78
  end
69
79
 
70
80
  def issue_deprecation_warnings
@@ -7,4 +7,5 @@ module Compass
7
7
 
8
8
  class MissingDependency < Error
9
9
  end
10
+ class SpriteException < Error; end
10
11
  end
@@ -141,11 +141,16 @@ module Compass
141
141
  # evaluated in a Manifest instance context
142
142
  def parse(manifest_file)
143
143
  with_manifest(manifest_file) do
144
- open(manifest_file) do |f|
145
- eval(f.read, instance_binding, manifest_file)
146
- end
147
- end
148
- end
144
+ if File.exists?(manifest_file)
145
+ open(manifest_file) do |f|
146
+ eval(f.read, instance_binding, manifest_file)
147
+ end
148
+ else
149
+ eval("discover :all", instance_binding, manifest_file)
150
+ end
151
+ end
152
+ end
153
+
149
154
 
150
155
  def instance_binding
151
156
  binding
@@ -7,6 +7,7 @@ module Compass::SassExtensions::Functions::Display
7
7
  datalist dfn em embed font i img input keygen kbd label mark meter output
8
8
  progress q rp rt ruby s samp select small span strike strong sub
9
9
  sup textarea time tt u var video wbr},
10
+ :"inline-block" => %w{img},
10
11
  :table => %w{table},
11
12
  :"list-item" => %w{li},
12
13
  :"table-row-group" => %w{tbody},
@@ -19,7 +19,7 @@ module Compass::SassExtensions::Functions::Trig
19
19
  private
20
20
  def trig(operation, number)
21
21
  if number.numerator_units == ["deg"] && number.denominator_units == []
22
- Sass::Script::Number.new(Math.send(operation, (number.value * Math::PI / 180)))
22
+ Sass::Script::Number.new(Math.send(operation, Math::PI * number.value / 180))
23
23
  else
24
24
  Sass::Script::Number.new(Math.send(operation, number.value), number.numerator_units, number.denominator_units)
25
25
  end
@@ -2,7 +2,6 @@ require 'digest/md5'
2
2
  require 'compass/sprite_importer'
3
3
 
4
4
  module Compass
5
- class SpriteException < Exception; end
6
5
  module SassExtensions
7
6
  module Sprites
8
7
  end
@@ -26,7 +26,7 @@ module Compass
26
26
  end
27
27
 
28
28
  def find_file
29
- Compass.configuration.sprite_load_path.each do |path|
29
+ Compass.configuration.sprite_load_path.compact.each do |path|
30
30
  f = File.join(path, relative_file)
31
31
  if File.exists?(f)
32
32
  return f
@@ -74,11 +74,14 @@ module Compass
74
74
 
75
75
  # Returns the Glob of image files for the uri
76
76
  def self.files(uri)
77
- Compass.configuration.sprite_load_path.each do |folder|
77
+ Compass.configuration.sprite_load_path.compact.each do |folder|
78
78
  files = Dir[File.join(folder, uri)].sort
79
79
  next if files.empty?
80
80
  return files
81
81
  end
82
+
83
+ path = Compass.configuration.sprite_load_path.to_a.join(', ')
84
+ raise Compass::SpriteException, %Q{No files were found in the load path matching "#{uri}". Your current load paths are: #{path}}
82
85
  end
83
86
 
84
87
  # Returns an Array of image names without the file extension
@@ -0,0 +1,10 @@
1
+ .background-clip {
2
+ -webkit-background-clip: border;
3
+ -moz-background-clip: border;
4
+ background-clip: border-box; }
5
+
6
+ .background-clip-khtml {
7
+ -webkit-background-clip: border;
8
+ -moz-background-clip: border;
9
+ -khtml-background-clip: border-box;
10
+ background-clip: border-box; }
@@ -1,4 +1,4 @@
1
1
  @font-face {
2
2
  font-family: "font1";
3
3
  src: url('/tmp/fonts/font1.eot');
4
- src: url('/tmp/fonts/font1.eot?iefix') format('eot'), url('/tmp/fonts/font1.woff') format('woff'); }
4
+ src: url('/tmp/fonts/font1.eot?#iefix') format('eot'), url('/tmp/fonts/font1.woff') format('woff'); }
@@ -0,0 +1,8 @@
1
+ @import "compass/css3/background-clip";
2
+
3
+ .background-clip { @include background-clip('border-box'); }
4
+
5
+ .background-clip-khtml {
6
+ $experimental-support-for-khtml:true;
7
+ @include background-clip('border-box');
8
+ }
data/test/test_helper.rb CHANGED
@@ -46,8 +46,8 @@ module SpriteHelper
46
46
  URI = "selectors/*.png"
47
47
 
48
48
  def init_sprite_helper
49
- @images_src_path = File.join(File.dirname(__FILE__), 'fixtures', 'sprites', 'public', 'images')
50
- @images_tmp_path = File.join(File.dirname(__FILE__), 'fixtures', 'sprites', 'public', 'images-tmp')
49
+ @images_src_path = File.join(File.expand_path('../', __FILE__), 'fixtures', 'sprites', 'public', 'images')
50
+ @images_tmp_path = File.join(File.expand_path('../', __FILE__), 'fixtures', 'sprites', 'public', 'images-tmp')
51
51
  end
52
52
 
53
53
  def sprite_map_test(options, uri = URI)
@@ -0,0 +1,11 @@
1
+ require 'test_helper'
2
+ require 'fileutils'
3
+
4
+ class CompilerTest < Test::Unit::TestCase
5
+
6
+ it "should strip css from file name and reappend" do
7
+ compiler = Compass::Compiler.new(Dir.pwd, 'foo', 'bar', {})
8
+ assert_equal 'screen', compiler.stylesheet_name(File.join(Dir.pwd, 'foo', 'screen.css.scss'))
9
+ end
10
+
11
+ end
@@ -68,6 +68,96 @@ class ConfigurationTest < Test::Unit::TestCase
68
68
  assert_equal "WARNING: asset_host is code and cannot be written to a file. You'll need to copy it yourself.\n", warning
69
69
  end
70
70
 
71
+ class TestData < Compass::Configuration::Data
72
+ def initialize
73
+ super(:test)
74
+ end
75
+ inherited_array :stuff
76
+ end
77
+
78
+ def test_inherited_array_can_clobber
79
+ data1 = TestData.new
80
+ data1.stuff = [:a]
81
+ data2 = TestData.new
82
+ data2.stuff = [:b]
83
+ data2.inherit_from!(data1)
84
+ assert_equal [:b], data2.stuff.to_a
85
+ end
86
+
87
+ def test_inherited_array_can_append
88
+ data1 = TestData.new
89
+ data1.stuff = [:a]
90
+ data2 = TestData.new
91
+ data2.stuff << :b
92
+ data2.inherit_from!(data1)
93
+ assert_equal [:b, :a], data2.stuff.to_a
94
+ end
95
+
96
+ def test_inherited_array_can_append_2
97
+ data1 = TestData.new
98
+ data1.stuff = [:a]
99
+ data2 = TestData.new
100
+ data2.stuff << :b
101
+ data2.inherit_from!(data1)
102
+ data3 = TestData.new
103
+ data3.stuff << :c
104
+ data3.inherit_from!(data2)
105
+ assert_equal [:c, :b, :a], data3.stuff.to_a
106
+ end
107
+
108
+ def test_inherited_array_can_remove
109
+ data1 = TestData.new
110
+ data1.stuff = [:a]
111
+ data2 = TestData.new
112
+ data2.stuff >> :a
113
+ data2.inherit_from!(data1)
114
+ assert_equal [], data2.stuff.to_a
115
+ end
116
+
117
+ def test_inherited_array_combined_augmentations
118
+ data1 = TestData.new
119
+ data1.stuff = [:a]
120
+ data2 = TestData.new
121
+ data2.stuff >> :a
122
+ data2.stuff << :b
123
+ data2.inherit_from!(data1)
124
+ assert_equal [:b], data2.stuff.to_a
125
+ end
126
+
127
+ def test_inherited_array_long_methods
128
+ data1 = TestData.new
129
+ data1.stuff = [:a]
130
+ data2 = TestData.new
131
+ data2.remove_from_stuff(:a)
132
+ data2.add_to_stuff(:b)
133
+ data2.inherit_from!(data1)
134
+ assert_equal [:b], data2.stuff.to_a
135
+ end
136
+
137
+ def test_inherited_array_augmentations_can_be_clobbered
138
+ data1 = TestData.new
139
+ data1.stuff = [:a]
140
+ data2 = TestData.new
141
+ data2.stuff >> :a
142
+ data2.stuff << :b
143
+ data2.stuff = [:c]
144
+ data2.inherit_from!(data1)
145
+ assert_equal [:c], data2.stuff.to_a
146
+ end
147
+
148
+ def test_inherited_array_augmentations_after_clobbering
149
+ data1 = TestData.new
150
+ data1.stuff = [:a]
151
+ data2 = TestData.new
152
+ data2.stuff >> :a
153
+ data2.stuff << :b
154
+ data2.stuff = [:c, :d]
155
+ data2.stuff << :e
156
+ data2.stuff >> :c
157
+ data2.inherit_from!(data1)
158
+ assert_equal [:d, :e], data2.stuff.to_a
159
+ end
160
+
71
161
  def test_serialization_warns_with_asset_cache_buster_set
72
162
  contents = StringIO.new(<<-CONFIG)
73
163
  asset_cache_buster do |path|
@@ -77,12 +167,36 @@ class ConfigurationTest < Test::Unit::TestCase
77
167
 
78
168
  Compass.add_configuration(contents, "test_serialization_warns_with_asset_cache_buster_set")
79
169
 
170
+ assert_kind_of Proc, Compass.configuration.asset_cache_buster_without_default
171
+ assert_equal "http://example.com", Compass.configuration.asset_cache_buster_without_default.call("whatever")
80
172
  warning = capture_warning do
81
173
  Compass.configuration.serialize
82
174
  end
83
175
  assert_equal "WARNING: asset_cache_buster is code and cannot be written to a file. You'll need to copy it yourself.\n", warning
84
176
  end
85
177
 
178
+ def test_inherited_arrays_augmentations_serialize
179
+ inherited = TestData.new
180
+ inherited.stuff << :a
181
+ d = TestData.new
182
+ d.stuff << :b
183
+ d.stuff >> :c
184
+ assert_equal <<CONFIG, d.serialize_property(:stuff, d.stuff)
185
+ stuff << :b
186
+ stuff >> :c
187
+ CONFIG
188
+ end
189
+ def test_inherited_arrays_clobbering_with_augmentations_serialize
190
+ inherited = TestData.new
191
+ inherited.stuff << :a
192
+ d = TestData.new
193
+ d.stuff << :b
194
+ d.stuff = [:c, :d]
195
+ d.stuff << :e
196
+ assert_equal <<CONFIG, d.serialize_property(:stuff, d.stuff)
197
+ stuff = [:c, :d, :e]
198
+ CONFIG
199
+ end
86
200
  def test_additional_import_paths
87
201
  contents = StringIO.new(<<-CONFIG)
88
202
  http_path = "/"
@@ -190,6 +304,36 @@ http_path = \"/\"
190
304
  # To disable debugging comments that display the original location of your selectors. Uncomment:
191
305
  # line_comments = false
192
306
 
307
+ EXPECTED
308
+
309
+ assert_correct(expected_serialization, Compass.configuration.serialize)
310
+ end
311
+
312
+ def test_sprite_load_path_clobbers
313
+ contents = StringIO.new(<<-CONFIG)
314
+ sprite_load_path = ["/Users/chris/Projects/my_compass_project/images/sprites"]
315
+ CONFIG
316
+
317
+ Compass.add_configuration(contents, "test_sass_options")
318
+
319
+ assert_equal ["/Users/chris/Projects/my_compass_project/images/sprites"], Compass.configuration.sprite_load_path.to_a
320
+
321
+ expected_serialization = <<EXPECTED
322
+ # Require any additional compass plugins here.
323
+
324
+ # Set this to the root of your project when deployed:
325
+ http_path = "/"
326
+
327
+ # You can select your preferred output style here (can be overridden via the command line):
328
+ # output_style = :expanded or :nested or :compact or :compressed
329
+
330
+ # To enable relative paths to assets via compass helper functions. Uncomment:
331
+ # relative_assets = true
332
+
333
+ # To disable debugging comments that display the original location of your selectors. Uncomment:
334
+ # line_comments = false
335
+
336
+ sprite_load_path = ["/Users/chris/Projects/my_compass_project/images/sprites"]
193
337
  EXPECTED
194
338
 
195
339
  assert_correct(expected_serialization, Compass.configuration.serialize)
@@ -11,14 +11,15 @@ class SpriteCommandTest < Test::Unit::TestCase
11
11
  @before_dir = ::Dir.pwd
12
12
  create_temp_cli_dir
13
13
  create_sprite_temp
14
- File.open(File.join(@test_dir, 'config.rb'), 'w') do |f|
14
+ @config_file = File.join(@test_dir, 'config.rb')
15
+ File.open(@config_file, 'w') do |f|
15
16
  f << config_data
16
17
  end
17
18
  end
18
19
 
19
20
  def config_data
20
21
  return <<-CONFIG
21
- images_path = #{@images_tmp_path.inspect}
22
+ images_path = "#{@images_tmp_path}"
22
23
  CONFIG
23
24
  end
24
25
 
@@ -47,7 +48,7 @@ class SpriteCommandTest < Test::Unit::TestCase
47
48
  end
48
49
 
49
50
  it "should create sprite file" do
50
- assert_equal 0, run_compass_with_options(['sprite', "-f", 'stylesheet.scss', "'#{@images_tmp_path}/*.png'"]).to_i
51
+ assert_equal 0, run_compass_with_options(['sprite', "-f", 'stylesheet.scss', "squares/*.png"]).to_i
51
52
  assert File.exists?(File.join(test_dir, 'stylesheet.scss'))
52
53
  end
53
54
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass
3
3
  version: !ruby/object:Gem::Version
4
- hash: -3702664252
4
+ hash: 15424133
5
5
  prerelease: 5
6
6
  segments:
7
7
  - 0
8
8
  - 12
9
- - alpha
10
- - 4
11
- version: 0.12.alpha.4
9
+ - rc
10
+ - 0
11
+ version: 0.12.rc.0
12
12
  platform: ruby
13
13
  authors:
14
14
  - Chris Eppstein
@@ -20,7 +20,7 @@ autorequire:
20
20
  bindir: bin
21
21
  cert_chain: []
22
22
 
23
- date: 2012-01-05 00:00:00 -08:00
23
+ date: 2012-01-31 00:00:00 -08:00
24
24
  default_executable:
25
25
  dependencies:
26
26
  - !ruby/object:Gem::Dependency
@@ -149,7 +149,6 @@ files:
149
149
  - examples/compass/bootstrap.rb
150
150
  - examples/compass/clean.rb
151
151
  - examples/compass/compass.html.haml
152
- - examples/compass/compass_app_log.txt
153
152
  - examples/compass/config.rb
154
153
  - examples/compass/headers.txt
155
154
  - examples/compass/images/blue_arrow.gif
@@ -621,25 +620,9 @@ files:
621
620
  - frameworks/compass/templates/project/USAGE.markdown
622
621
  - lib/compass/actions.rb
623
622
  - lib/compass/actions.rbc
624
- - lib/compass/app_integration/merb/runtime.rb
625
- - lib/compass/app_integration/merb.rb
626
623
  - lib/compass/app_integration/merb.rbc
627
- - lib/compass/app_integration/rails/actionpack2x/action_controller.rb
628
- - lib/compass/app_integration/rails/actionpack2x/sass_plugin.rb
629
- - lib/compass/app_integration/rails/actionpack2x/urls.rb
630
- - lib/compass/app_integration/rails/actionpack2x.rb
631
- - lib/compass/app_integration/rails/actionpack30/railtie.rb
632
- - lib/compass/app_integration/rails/actionpack30.rb
633
- - lib/compass/app_integration/rails/actionpack31/helpers.rb
634
- - lib/compass/app_integration/rails/actionpack31/railtie.rb
635
- - lib/compass/app_integration/rails/actionpack31.rb
636
- - lib/compass/app_integration/rails/configuration_defaults.rb
637
624
  - lib/compass/app_integration/rails/configuration_defaults.rbc
638
- - lib/compass/app_integration/rails/installer.rb
639
625
  - lib/compass/app_integration/rails/installer.rbc
640
- - lib/compass/app_integration/rails/runtime.rb
641
- - lib/compass/app_integration/rails/templates/compass-install-rails.rb
642
- - lib/compass/app_integration/rails.rb
643
626
  - lib/compass/app_integration/rails.rbc
644
627
  - lib/compass/app_integration/stand_alone/configuration_defaults.rb
645
628
  - lib/compass/app_integration/stand_alone/configuration_defaults.rbc
@@ -677,6 +660,7 @@ files:
677
660
  - lib/compass/commands/project_base.rbc
678
661
  - lib/compass/commands/project_stats.rb
679
662
  - lib/compass/commands/project_stats.rbc
663
+ - lib/compass/commands/project_structure.rb
680
664
  - lib/compass/commands/registry.rb
681
665
  - lib/compass/commands/registry.rbc
682
666
  - lib/compass/commands/sprite.rb
@@ -920,6 +904,7 @@ files:
920
904
  - test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
921
905
  - test/fixtures/stylesheets/compass/100x150.jpg
922
906
  - test/fixtures/stylesheets/compass/config.rb
907
+ - test/fixtures/stylesheets/compass/css/background-clip.css
923
908
  - test/fixtures/stylesheets/compass/css/border_radius.css
924
909
  - test/fixtures/stylesheets/compass/css/box-sizeing.css
925
910
  - test/fixtures/stylesheets/compass/css/box.css
@@ -1199,6 +1184,7 @@ files:
1199
1184
  - test/fixtures/stylesheets/compass/images/flag/zm.png
1200
1185
  - test/fixtures/stylesheets/compass/images/flag/zw.png
1201
1186
  - test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
1187
+ - test/fixtures/stylesheets/compass/sass/background-clip.scss
1202
1188
  - test/fixtures/stylesheets/compass/sass/border_radius.scss
1203
1189
  - test/fixtures/stylesheets/compass/sass/box-sizeing.scss
1204
1190
  - test/fixtures/stylesheets/compass/sass/box.sass
@@ -1264,11 +1250,9 @@ files:
1264
1250
  - test/helpers/test_case.rbc
1265
1251
  - test/integrations/compass_test.rb
1266
1252
  - test/integrations/compass_test.rbc
1267
- - test/integrations/rails_integration_test.rb
1268
1253
  - test/integrations/rails_integration_test.rbc
1269
1254
  - test/integrations/sprites_test.rb
1270
1255
  - test/integrations/sprites_test.rbc
1271
- - test/integrations/test_rails_helper.rb
1272
1256
  - test/test_helper.rb
1273
1257
  - test/test_helper.rbc
1274
1258
  - test/units/actions_test.rb
@@ -1277,9 +1261,9 @@ files:
1277
1261
  - test/units/command_line_test.rbc
1278
1262
  - test/units/compass_png_test.rb
1279
1263
  - test/units/compass_png_test.rbc
1264
+ - test/units/compiler_test.rb
1280
1265
  - test/units/configuration_test.rb
1281
1266
  - test/units/configuration_test.rbc
1282
- - test/units/rails_configuration_test.rb
1283
1267
  - test/units/rails_configuration_test.rbc
1284
1268
  - test/units/sass_extensions_test.rb
1285
1269
  - test/units/sass_extensions_test.rbc
@@ -1300,7 +1284,6 @@ files:
1300
1284
  - test/units/sprites/sprite_map_test.rbc
1301
1285
  - features/command_line.feature
1302
1286
  - features/extensions.feature
1303
- - features/rails_integration.feature
1304
1287
  - features/step_definitions/command_line_steps.rb
1305
1288
  - features/step_definitions/extension_steps.rb
1306
1289
  has_rdoc: true
@@ -1430,6 +1413,7 @@ test_files:
1430
1413
  - test/fixtures/stylesheets/busted_image_urls/tmp/screen.css
1431
1414
  - test/fixtures/stylesheets/compass/100x150.jpg
1432
1415
  - test/fixtures/stylesheets/compass/config.rb
1416
+ - test/fixtures/stylesheets/compass/css/background-clip.css
1433
1417
  - test/fixtures/stylesheets/compass/css/border_radius.css
1434
1418
  - test/fixtures/stylesheets/compass/css/box-sizeing.css
1435
1419
  - test/fixtures/stylesheets/compass/css/box.css
@@ -1709,6 +1693,7 @@ test_files:
1709
1693
  - test/fixtures/stylesheets/compass/images/flag/zm.png
1710
1694
  - test/fixtures/stylesheets/compass/images/flag/zw.png
1711
1695
  - test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
1696
+ - test/fixtures/stylesheets/compass/sass/background-clip.scss
1712
1697
  - test/fixtures/stylesheets/compass/sass/border_radius.scss
1713
1698
  - test/fixtures/stylesheets/compass/sass/box-sizeing.scss
1714
1699
  - test/fixtures/stylesheets/compass/sass/box.sass
@@ -1774,11 +1759,9 @@ test_files:
1774
1759
  - test/helpers/test_case.rbc
1775
1760
  - test/integrations/compass_test.rb
1776
1761
  - test/integrations/compass_test.rbc
1777
- - test/integrations/rails_integration_test.rb
1778
1762
  - test/integrations/rails_integration_test.rbc
1779
1763
  - test/integrations/sprites_test.rb
1780
1764
  - test/integrations/sprites_test.rbc
1781
- - test/integrations/test_rails_helper.rb
1782
1765
  - test/test_helper.rb
1783
1766
  - test/test_helper.rbc
1784
1767
  - test/units/actions_test.rb
@@ -1787,9 +1770,9 @@ test_files:
1787
1770
  - test/units/command_line_test.rbc
1788
1771
  - test/units/compass_png_test.rb
1789
1772
  - test/units/compass_png_test.rbc
1773
+ - test/units/compiler_test.rb
1790
1774
  - test/units/configuration_test.rb
1791
1775
  - test/units/configuration_test.rbc
1792
- - test/units/rails_configuration_test.rb
1793
1776
  - test/units/rails_configuration_test.rbc
1794
1777
  - test/units/sass_extensions_test.rb
1795
1778
  - test/units/sass_extensions_test.rbc
@@ -1810,6 +1793,5 @@ test_files:
1810
1793
  - test/units/sprites/sprite_map_test.rbc
1811
1794
  - features/command_line.feature
1812
1795
  - features/extensions.feature
1813
- - features/rails_integration.feature
1814
1796
  - features/step_definitions/command_line_steps.rb
1815
1797
  - features/step_definitions/extension_steps.rb