compass 0.12.4 → 0.12.7
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 -7
- data/lib/compass/version.rb +13 -10
- data/test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png +0 -0
- metadata +76 -82
- data/VERSION.yml +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
5
|
-
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8cdf3c3c14bde97e756d17ca923eaceaf82a000d
|
4
|
+
data.tar.gz: 4d4092b45becd4f31e83f8fcce34bc722d59aeb0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 88aa157548a661aec67a7901916de273a96c129e10dcdafea6b6bb6ea64592d105d431e26cd4a5d0a453c3c24259c9c7d4e760904c08c914cad9ca63ef8b6ffe
|
7
|
+
data.tar.gz: 8b7410f69c6d274eb8b2434171e69f35192130185439bb9cc1d5335111b2f28af821196f6e1746f6e0a06a1ca55fec2d06fdc256b98c9d5e3c84b098cd12996e
|
data/lib/compass/version.rb
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
module Compass
|
2
2
|
module Version
|
3
|
+
VERSION_DETAILS = {
|
4
|
+
:major => 0,
|
5
|
+
:minor => 12,
|
6
|
+
:build => 7,
|
7
|
+
:name => "Alnilam"
|
8
|
+
}
|
9
|
+
|
3
10
|
# Returns a hash representing the version.
|
4
11
|
# The :major, :minor, and :teeny keys have their respective numbers.
|
5
12
|
# The :string key contains a human-readable string representation of the version.
|
@@ -21,8 +28,7 @@ module Compass
|
|
21
28
|
end
|
22
29
|
|
23
30
|
def read_version
|
24
|
-
|
25
|
-
@version = YAML::load(File.read(scope('VERSION.yml')))
|
31
|
+
@version = VERSION_DETAILS.dup
|
26
32
|
@version[:teeny] = @version[:patch]
|
27
33
|
@version[:string] = "#{@version[:major]}.#{@version[:minor]}"
|
28
34
|
@version[:string] << ".#{@version[:patch]}" if @version[:patch]
|
@@ -45,16 +51,13 @@ module Compass
|
|
45
51
|
`git rev-parse HEAD`
|
46
52
|
end
|
47
53
|
end
|
54
|
+
rescue
|
55
|
+
nil
|
48
56
|
end
|
49
57
|
|
50
58
|
end
|
59
|
+
|
51
60
|
extend Compass::Version
|
52
|
-
|
53
|
-
|
54
|
-
if const == :VERSION
|
55
|
-
version[:string]
|
56
|
-
else
|
57
|
-
super
|
58
|
-
end
|
59
|
-
end
|
61
|
+
|
62
|
+
VERSION = version[:string]
|
60
63
|
end
|
Binary file
|
metadata
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.12.7
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
6
|
+
authors:
|
7
7
|
- Chris Eppstein
|
8
8
|
- Scott Davis
|
9
9
|
- Eric A. Meyer
|
@@ -13,63 +13,53 @@ authors:
|
|
13
13
|
autorequire:
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
|
-
|
17
|
-
|
18
|
-
|
16
|
+
|
17
|
+
date: 2014-07-17 00:00:00 Z
|
18
|
+
dependencies:
|
19
|
+
- !ruby/object:Gem::Dependency
|
19
20
|
name: sass
|
20
|
-
requirement: !ruby/object:Gem::Requirement
|
21
|
-
requirements:
|
22
|
-
- - ~>
|
23
|
-
- !ruby/object:Gem::Version
|
24
|
-
version: 3.2.17
|
25
|
-
type: :runtime
|
26
21
|
prerelease: false
|
27
|
-
|
28
|
-
requirements:
|
29
|
-
- - ~>
|
30
|
-
- !ruby/object:Gem::Version
|
31
|
-
version: 3.2.17
|
32
|
-
- !ruby/object:Gem::Dependency
|
33
|
-
name: chunky_png
|
34
|
-
requirement: !ruby/object:Gem::Requirement
|
35
|
-
requirements:
|
22
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
36
24
|
- - ~>
|
37
|
-
- !ruby/object:Gem::Version
|
38
|
-
version:
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.2.19
|
39
27
|
type: :runtime
|
28
|
+
version_requirements: *id001
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: chunky_png
|
40
31
|
prerelease: false
|
41
|
-
|
42
|
-
requirements:
|
32
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
43
34
|
- - ~>
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
version:
|
46
|
-
- !ruby/object:Gem::Dependency
|
47
|
-
name: fssm
|
48
|
-
requirement: !ruby/object:Gem::Requirement
|
49
|
-
requirements:
|
50
|
-
- - '>='
|
51
|
-
- !ruby/object:Gem::Version
|
52
|
-
version: 0.2.7
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: "1.2"
|
53
37
|
type: :runtime
|
38
|
+
version_requirements: *id002
|
39
|
+
- !ruby/object:Gem::Dependency
|
40
|
+
name: fssm
|
54
41
|
prerelease: false
|
55
|
-
|
56
|
-
requirements:
|
57
|
-
- -
|
58
|
-
- !ruby/object:Gem::Version
|
42
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
59
46
|
version: 0.2.7
|
60
|
-
|
61
|
-
|
47
|
+
type: :runtime
|
48
|
+
version_requirements: *id003
|
49
|
+
description: Compass is a Sass-based Stylesheet Framework that streamlines the creation and maintenance of CSS.
|
62
50
|
email: chris@eppsteins.net
|
63
|
-
executables:
|
51
|
+
executables:
|
64
52
|
- compass
|
65
53
|
extensions: []
|
54
|
+
|
66
55
|
extra_rdoc_files: []
|
67
|
-
|
68
|
-
|
56
|
+
|
57
|
+
files:
|
69
58
|
- LICENSE.markdown
|
70
|
-
-
|
59
|
+
- README.markdown
|
71
60
|
- Rakefile
|
72
61
|
- bin/compass
|
62
|
+
- examples/README.markdown
|
73
63
|
- examples/blueprint_default/config.rb
|
74
64
|
- examples/blueprint_default/images/grid.png
|
75
65
|
- examples/blueprint_default/index.html.haml
|
@@ -412,6 +402,8 @@ files:
|
|
412
402
|
- examples/css3/bootstrap.rb
|
413
403
|
- examples/css3/clean.rb
|
414
404
|
- examples/css3/config.rb
|
405
|
+
- examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass
|
406
|
+
- examples/css3/extensions/fancy-fonts/templates/project/manifest.rb
|
415
407
|
- examples/css3/gradients.html.haml
|
416
408
|
- examples/css3/images/button_bg.png
|
417
409
|
- examples/css3/images/example.png
|
@@ -426,7 +418,6 @@ files:
|
|
426
418
|
- examples/ninesixty/config.rb
|
427
419
|
- examples/ninesixty/src/grid.scss
|
428
420
|
- examples/ninesixty/src/text.scss
|
429
|
-
- examples/README.markdown
|
430
421
|
- examples/susy/bootstrap.rb
|
431
422
|
- examples/susy/clean.rb
|
432
423
|
- examples/susy/config.rb
|
@@ -443,8 +434,10 @@ files:
|
|
443
434
|
- examples/yui/templates.html.haml
|
444
435
|
- examples/yui/test.jpg
|
445
436
|
- examples/yui/typography.html.haml
|
446
|
-
-
|
447
|
-
-
|
437
|
+
- features/command_line.feature
|
438
|
+
- features/extensions.feature
|
439
|
+
- features/step_definitions/command_line_steps.rb
|
440
|
+
- features/step_definitions/extension_steps.rb
|
448
441
|
- frameworks/blueprint/stylesheets/_blueprint.scss
|
449
442
|
- frameworks/blueprint/stylesheets/blueprint/_buttons.scss
|
450
443
|
- frameworks/blueprint/stylesheets/blueprint/_colors.scss
|
@@ -469,11 +462,12 @@ files:
|
|
469
462
|
- frameworks/blueprint/templates/basic/partials/_base.sass
|
470
463
|
- frameworks/blueprint/templates/basic/print.sass
|
471
464
|
- frameworks/blueprint/templates/basic/screen.sass
|
465
|
+
- frameworks/blueprint/templates/buttons/buttons.sass
|
472
466
|
- frameworks/blueprint/templates/buttons/buttons/cross.png
|
473
467
|
- frameworks/blueprint/templates/buttons/buttons/key.png
|
474
468
|
- frameworks/blueprint/templates/buttons/buttons/tick.png
|
475
|
-
- frameworks/blueprint/templates/buttons/buttons.sass
|
476
469
|
- frameworks/blueprint/templates/buttons/manifest.rb
|
470
|
+
- frameworks/blueprint/templates/link_icons/link_icons.sass
|
477
471
|
- frameworks/blueprint/templates/link_icons/link_icons/doc.png
|
478
472
|
- frameworks/blueprint/templates/link_icons/link_icons/email.png
|
479
473
|
- frameworks/blueprint/templates/link_icons/link_icons/external.png
|
@@ -482,7 +476,6 @@ files:
|
|
482
476
|
- frameworks/blueprint/templates/link_icons/link_icons/pdf.png
|
483
477
|
- frameworks/blueprint/templates/link_icons/link_icons/visited.png
|
484
478
|
- frameworks/blueprint/templates/link_icons/link_icons/xls.png
|
485
|
-
- frameworks/blueprint/templates/link_icons/link_icons.sass
|
486
479
|
- frameworks/blueprint/templates/link_icons/manifest.rb
|
487
480
|
- frameworks/blueprint/templates/project/grid.png
|
488
481
|
- frameworks/blueprint/templates/project/ie.sass
|
@@ -592,21 +585,23 @@ files:
|
|
592
585
|
- frameworks/compass/templates/pie/LICENSE
|
593
586
|
- frameworks/compass/templates/pie/LICENSE-APACHE2.txt
|
594
587
|
- frameworks/compass/templates/pie/LICENSE-GPL2.txt
|
595
|
-
- frameworks/compass/templates/pie/manifest.rb
|
596
588
|
- frameworks/compass/templates/pie/PIE.htc
|
589
|
+
- frameworks/compass/templates/pie/manifest.rb
|
597
590
|
- frameworks/compass/templates/pie/pie.scss
|
591
|
+
- frameworks/compass/templates/project/USAGE.markdown
|
598
592
|
- frameworks/compass/templates/project/ie.sass
|
599
593
|
- frameworks/compass/templates/project/manifest.rb
|
600
594
|
- frameworks/compass/templates/project/print.sass
|
601
595
|
- frameworks/compass/templates/project/screen.sass
|
602
|
-
-
|
596
|
+
- lib/compass.rb
|
603
597
|
- lib/compass/actions.rb
|
598
|
+
- lib/compass/app_integration.rb
|
604
599
|
- lib/compass/app_integration/rails.rb
|
600
|
+
- lib/compass/app_integration/stand_alone.rb
|
605
601
|
- lib/compass/app_integration/stand_alone/configuration_defaults.rb
|
606
602
|
- lib/compass/app_integration/stand_alone/installer.rb
|
607
|
-
- lib/compass/app_integration/stand_alone.rb
|
608
|
-
- lib/compass/app_integration.rb
|
609
603
|
- lib/compass/browser_support.rb
|
604
|
+
- lib/compass/commands.rb
|
610
605
|
- lib/compass/commands/base.rb
|
611
606
|
- lib/compass/commands/clean_project.rb
|
612
607
|
- lib/compass/commands/create_project.rb
|
@@ -630,8 +625,8 @@ files:
|
|
630
625
|
- lib/compass/commands/validate_project.rb
|
631
626
|
- lib/compass/commands/watch_project.rb
|
632
627
|
- lib/compass/commands/write_configuration.rb
|
633
|
-
- lib/compass/commands.rb
|
634
628
|
- lib/compass/compiler.rb
|
629
|
+
- lib/compass/configuration.rb
|
635
630
|
- lib/compass/configuration/adapters.rb
|
636
631
|
- lib/compass/configuration/comments.rb
|
637
632
|
- lib/compass/configuration/data.rb
|
@@ -641,27 +636,28 @@ files:
|
|
641
636
|
- lib/compass/configuration/inheritance.rb
|
642
637
|
- lib/compass/configuration/paths.rb
|
643
638
|
- lib/compass/configuration/serialization.rb
|
644
|
-
- lib/compass/configuration.rb
|
645
639
|
- lib/compass/dependencies.rb
|
646
640
|
- lib/compass/errors.rb
|
641
|
+
- lib/compass/exec.rb
|
647
642
|
- lib/compass/exec/command_option_parser.rb
|
648
643
|
- lib/compass/exec/global_options_parser.rb
|
649
644
|
- lib/compass/exec/helpers.rb
|
650
645
|
- lib/compass/exec/project_options_parser.rb
|
651
646
|
- lib/compass/exec/sub_command_ui.rb
|
652
647
|
- lib/compass/exec/switch_ui.rb
|
653
|
-
- lib/compass/exec.rb
|
654
648
|
- lib/compass/frameworks.rb
|
655
649
|
- lib/compass/grid_builder.rb
|
650
|
+
- lib/compass/installers.rb
|
656
651
|
- lib/compass/installers/bare_installer.rb
|
657
652
|
- lib/compass/installers/base.rb
|
658
653
|
- lib/compass/installers/manifest.rb
|
659
654
|
- lib/compass/installers/manifest_installer.rb
|
660
655
|
- lib/compass/installers/template_context.rb
|
661
|
-
- lib/compass/installers.rb
|
662
656
|
- lib/compass/logger.rb
|
663
657
|
- lib/compass/quick_cache.rb
|
664
658
|
- lib/compass/rails.rb
|
659
|
+
- lib/compass/sass_extensions.rb
|
660
|
+
- lib/compass/sass_extensions/functions.rb
|
665
661
|
- lib/compass/sass_extensions/functions/colors.rb
|
666
662
|
- lib/compass/sass_extensions/functions/constants.rb
|
667
663
|
- lib/compass/sass_extensions/functions/cross_browser_support.rb
|
@@ -677,12 +673,12 @@ files:
|
|
677
673
|
- lib/compass/sass_extensions/functions/selectors.rb
|
678
674
|
- lib/compass/sass_extensions/functions/sprites.rb
|
679
675
|
- lib/compass/sass_extensions/functions/urls.rb
|
680
|
-
- lib/compass/sass_extensions/
|
676
|
+
- lib/compass/sass_extensions/monkey_patches.rb
|
681
677
|
- lib/compass/sass_extensions/monkey_patches/browser_support.rb
|
682
678
|
- lib/compass/sass_extensions/monkey_patches/traversal.rb
|
683
|
-
- lib/compass/sass_extensions/
|
684
|
-
- lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
|
679
|
+
- lib/compass/sass_extensions/sprites.rb
|
685
680
|
- lib/compass/sass_extensions/sprites/engines.rb
|
681
|
+
- lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
|
686
682
|
- lib/compass/sass_extensions/sprites/image.rb
|
687
683
|
- lib/compass/sass_extensions/sprites/image_methods.rb
|
688
684
|
- lib/compass/sass_extensions/sprites/image_row.rb
|
@@ -690,17 +686,14 @@ files:
|
|
690
686
|
- lib/compass/sass_extensions/sprites/row_fitter.rb
|
691
687
|
- lib/compass/sass_extensions/sprites/sprite_map.rb
|
692
688
|
- lib/compass/sass_extensions/sprites/sprite_methods.rb
|
693
|
-
- lib/compass/
|
694
|
-
- lib/compass/sass_extensions.rb
|
689
|
+
- lib/compass/sprite_importer.rb
|
695
690
|
- lib/compass/sprite_importer/binding.rb
|
696
691
|
- lib/compass/sprite_importer/content.erb
|
697
|
-
- lib/compass/sprite_importer.rb
|
698
692
|
- lib/compass/stats.rb
|
699
693
|
- lib/compass/test_case.rb
|
700
694
|
- lib/compass/util.rb
|
701
695
|
- lib/compass/validator.rb
|
702
696
|
- lib/compass/version.rb
|
703
|
-
- lib/compass.rb
|
704
697
|
- test/fixtures/extensions/only_stylesheets/compass_init.rb
|
705
698
|
- test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
|
706
699
|
- test/fixtures/fonts/bgrove.base64.txt
|
@@ -826,6 +819,7 @@ files:
|
|
826
819
|
- test/fixtures/stylesheets/compass/images/100x150.jpg
|
827
820
|
- test/fixtures/stylesheets/compass/images/100x150.png
|
828
821
|
- test/fixtures/stylesheets/compass/images/4x6.png
|
822
|
+
- test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
|
829
823
|
- test/fixtures/stylesheets/compass/images/flag/ad.png
|
830
824
|
- test/fixtures/stylesheets/compass/images/flag/ae.png
|
831
825
|
- test/fixtures/stylesheets/compass/images/flag/af.png
|
@@ -1154,34 +1148,33 @@ files:
|
|
1154
1148
|
- test/units/sprites/row_fitter_test.rb
|
1155
1149
|
- test/units/sprites/sprite_command_test.rb
|
1156
1150
|
- test/units/sprites/sprite_map_test.rb
|
1157
|
-
- features/command_line.feature
|
1158
|
-
- features/extensions.feature
|
1159
|
-
- features/step_definitions/command_line_steps.rb
|
1160
|
-
- features/step_definitions/extension_steps.rb
|
1161
1151
|
homepage: http://compass-style.org
|
1162
1152
|
licenses: []
|
1153
|
+
|
1163
1154
|
metadata: {}
|
1155
|
+
|
1164
1156
|
post_install_message:
|
1165
1157
|
rdoc_options: []
|
1166
|
-
|
1158
|
+
|
1159
|
+
require_paths:
|
1167
1160
|
- lib
|
1168
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
1169
|
-
requirements:
|
1170
|
-
-
|
1171
|
-
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
version: '0'
|
1161
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
1162
|
+
requirements:
|
1163
|
+
- &id004
|
1164
|
+
- ">="
|
1165
|
+
- !ruby/object:Gem::Version
|
1166
|
+
version: "0"
|
1167
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
1168
|
+
requirements:
|
1169
|
+
- *id004
|
1178
1170
|
requirements: []
|
1171
|
+
|
1179
1172
|
rubyforge_project:
|
1180
|
-
rubygems_version: 2.
|
1173
|
+
rubygems_version: 2.2.1
|
1181
1174
|
signing_key:
|
1182
1175
|
specification_version: 4
|
1183
1176
|
summary: A Real Stylesheet Framework
|
1184
|
-
test_files:
|
1177
|
+
test_files:
|
1185
1178
|
- test/fixtures/extensions/only_stylesheets/compass_init.rb
|
1186
1179
|
- test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
|
1187
1180
|
- test/fixtures/fonts/bgrove.base64.txt
|
@@ -1554,6 +1547,7 @@ test_files:
|
|
1554
1547
|
- test/fixtures/stylesheets/compass/images/flag/za.png
|
1555
1548
|
- test/fixtures/stylesheets/compass/images/flag/zm.png
|
1556
1549
|
- test/fixtures/stylesheets/compass/images/flag/zw.png
|
1550
|
+
- test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
|
1557
1551
|
- test/fixtures/stylesheets/compass/sass/background-clip.scss
|
1558
1552
|
- test/fixtures/stylesheets/compass/sass/border_radius.scss
|
1559
1553
|
- test/fixtures/stylesheets/compass/sass/box-sizeing.scss
|