rapper_lite 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. data/Gemfile +10 -0
  2. data/Gemfile.lock +31 -0
  3. data/LICENSE.txt +20 -0
  4. data/README.markdown +65 -0
  5. data/Rakefile +31 -0
  6. data/VERSION +1 -0
  7. data/bin/rapper_lite +19 -0
  8. data/lib/rapper_lite/compressors.rb +109 -0
  9. data/lib/rapper_lite/config.rb +61 -0
  10. data/lib/rapper_lite/utils.rb +19 -0
  11. data/lib/rapper_lite/versioning.rb +38 -0
  12. data/lib/rapper_lite.rb +50 -0
  13. data/lib/tasks.rb +37 -0
  14. data/lib/yui/css_compressor.rb +279 -0
  15. data/rapper_lite.gemspec +141 -0
  16. data/spec/fixtures/src/simple_1.css +4 -0
  17. data/spec/fixtures/src/simple_1.js +5 -0
  18. data/spec/fixtures/src/simple_2.css +4 -0
  19. data/spec/fixtures/src/subfolder/simple_2.js +5 -0
  20. data/spec/fixtures/testcases/combination/expected/base.css +1 -0
  21. data/spec/fixtures/testcases/combination/expected/base.js +1 -0
  22. data/spec/fixtures/testcases/combination/expected/base_combined.css +1 -0
  23. data/spec/fixtures/testcases/combination/expected/base_combined.js +1 -0
  24. data/spec/fixtures/testcases/combination/rapper.yml +26 -0
  25. data/spec/fixtures/testcases/concatenation/expected/base.css +8 -0
  26. data/spec/fixtures/testcases/concatenation/expected/base.js +10 -0
  27. data/spec/fixtures/testcases/concatenation/expected/base_combined.css +12 -0
  28. data/spec/fixtures/testcases/concatenation/expected/base_combined.js +15 -0
  29. data/spec/fixtures/testcases/concatenation/rapper.yml +26 -0
  30. data/spec/fixtures/yui_css/background-position.css +2 -0
  31. data/spec/fixtures/yui_css/background-position.css.min +1 -0
  32. data/spec/fixtures/yui_css/box-model-hack.css +9 -0
  33. data/spec/fixtures/yui_css/box-model-hack.css.min +1 -0
  34. data/spec/fixtures/yui_css/bug2527974.css +9 -0
  35. data/spec/fixtures/yui_css/bug2527974.css.min +1 -0
  36. data/spec/fixtures/yui_css/bug2527991.css +19 -0
  37. data/spec/fixtures/yui_css/bug2527991.css.min +1 -0
  38. data/spec/fixtures/yui_css/bug2527998.css +4 -0
  39. data/spec/fixtures/yui_css/bug2527998.css.min +1 -0
  40. data/spec/fixtures/yui_css/bug2528034.css +5 -0
  41. data/spec/fixtures/yui_css/bug2528034.css.min +1 -0
  42. data/spec/fixtures/yui_css/charset-media.css +9 -0
  43. data/spec/fixtures/yui_css/charset-media.css.min +1 -0
  44. data/spec/fixtures/yui_css/color.css +7 -0
  45. data/spec/fixtures/yui_css/color.css.min +1 -0
  46. data/spec/fixtures/yui_css/comment.css +3 -0
  47. data/spec/fixtures/yui_css/comment.css.min +1 -0
  48. data/spec/fixtures/yui_css/concat-charset.css +15 -0
  49. data/spec/fixtures/yui_css/concat-charset.css.min +1 -0
  50. data/spec/fixtures/yui_css/decimals.css +3 -0
  51. data/spec/fixtures/yui_css/decimals.css.min +1 -0
  52. data/spec/fixtures/yui_css/dollar-header.css +7 -0
  53. data/spec/fixtures/yui_css/dollar-header.css.min +3 -0
  54. data/spec/fixtures/yui_css/font-face.css +6 -0
  55. data/spec/fixtures/yui_css/font-face.css.min +1 -0
  56. data/spec/fixtures/yui_css/ie5mac.css +5 -0
  57. data/spec/fixtures/yui_css/ie5mac.css.min +1 -0
  58. data/spec/fixtures/yui_css/media-empty-class.css +16 -0
  59. data/spec/fixtures/yui_css/media-empty-class.css.min +1 -0
  60. data/spec/fixtures/yui_css/media-multi.css +5 -0
  61. data/spec/fixtures/yui_css/media-multi.css.min +1 -0
  62. data/spec/fixtures/yui_css/media-test.css +5 -0
  63. data/spec/fixtures/yui_css/media-test.css.min +1 -0
  64. data/spec/fixtures/yui_css/opacity-filter.css +14 -0
  65. data/spec/fixtures/yui_css/opacity-filter.css.min +1 -0
  66. data/spec/fixtures/yui_css/preserve-new-line.css +6 -0
  67. data/spec/fixtures/yui_css/preserve-new-line.css.min +3 -0
  68. data/spec/fixtures/yui_css/preserve-strings.css +7 -0
  69. data/spec/fixtures/yui_css/preserve-strings.css.min +1 -0
  70. data/spec/fixtures/yui_css/preserve_string.css +7 -0
  71. data/spec/fixtures/yui_css/preserve_string.css.min +1 -0
  72. data/spec/fixtures/yui_css/pseudo-first.css +16 -0
  73. data/spec/fixtures/yui_css/pseudo-first.css.min +1 -0
  74. data/spec/fixtures/yui_css/pseudo.css +4 -0
  75. data/spec/fixtures/yui_css/pseudo.css.min +1 -0
  76. data/spec/fixtures/yui_css/special-comments.css +13 -0
  77. data/spec/fixtures/yui_css/special-comments.css.min +9 -0
  78. data/spec/fixtures/yui_css/star-underscore-hacks.css +5 -0
  79. data/spec/fixtures/yui_css/star-underscore-hacks.css.min +1 -0
  80. data/spec/fixtures/yui_css/string-in-comment.css +8 -0
  81. data/spec/fixtures/yui_css/string-in-comment.css.min +1 -0
  82. data/spec/fixtures/yui_css/zeros.css +6 -0
  83. data/spec/fixtures/yui_css/zeros.css.min +1 -0
  84. data/spec/rapper_lite_spec.rb +41 -0
  85. data/spec/spec_helper.rb +23 -0
  86. data/spec/vendor_spec.rb +23 -0
  87. metadata +203 -0
@@ -0,0 +1,3 @@
1
+ html >/**/ body p {
2
+ color: blue;
3
+ }
@@ -0,0 +1 @@
1
+ html>/**/body p{color:blue}
@@ -0,0 +1,15 @@
1
+ /* This is invalid CSS, but frequently happens as a result of concatenation. */
2
+ @charset "utf-8";
3
+ #foo {
4
+ border-width:1px;
5
+ }
6
+ /*
7
+ Note that this is erroneous!
8
+ The actual CSS file can only have a single charset.
9
+ However, this is the job of the author/application.
10
+ The compressor should not get involved.
11
+ */
12
+ @charset "another one";
13
+ #bar {
14
+ border-width:10px;
15
+ }
@@ -0,0 +1 @@
1
+ @charset "utf-8";#foo{border-width:1px}#bar{border-width:10px}
@@ -0,0 +1,3 @@
1
+ ::selection {
2
+ margin: 0.6px 0.333pt 1.2em 8.8cm;
3
+ }
@@ -0,0 +1 @@
1
+ ::selection{margin:.6px .333pt 1.2em 8.8cm}
@@ -0,0 +1,7 @@
1
+ /*!
2
+ $Header: /temp/dirname/filename.css 3 2/02/08 3:37p JSmith $
3
+ */
4
+
5
+ foo {
6
+ bar: baz
7
+ }
@@ -0,0 +1,3 @@
1
+ /*!
2
+ $Header: /temp/dirname/filename.css 3 2/02/08 3:37p JSmith $
3
+ */foo{bar:baz}
@@ -0,0 +1,6 @@
1
+ @font-face {
2
+ font-family: 'gzipper';
3
+ src: url(yanone.eot);
4
+ src: local('gzipper'),
5
+ url(yanone.ttf) format('truetype');
6
+ }
@@ -0,0 +1 @@
1
+ @font-face{font-family:'gzipper';src:url(yanone.eot);src:local('gzipper'),url(yanone.ttf) format('truetype')}
@@ -0,0 +1,5 @@
1
+ /* Ignore the next rule in IE mac \*/
2
+ .selector {
3
+ color: khaki;
4
+ }
5
+ /* Stop ignoring in IE mac */
@@ -0,0 +1 @@
1
+ /*\*/.selector{color:khaki}/**/
@@ -0,0 +1,16 @@
1
+ /*! preserved */
2
+ emptiness {}
3
+
4
+ @import "another.css";
5
+ /* I'm empty - delete me */
6
+ empty { ;}
7
+
8
+ @media print {
9
+ .noprint { display: none; }
10
+ }
11
+
12
+ @media screen {
13
+ /* this rule should be removed, not simply minified.*/
14
+ .breakme {}
15
+ .printonly { display: none; }
16
+ }
@@ -0,0 +1 @@
1
+ /*! preserved */@import "another.css";@media print{.noprint{display:none}}@media screen{.printonly{display:none}}
@@ -0,0 +1,5 @@
1
+ @media only all and (max-width:50em), only all and (max-device-width:800px), only all and (max-width:780px) {
2
+ p{
3
+ some-css : here
4
+ }
5
+ }
@@ -0,0 +1 @@
1
+ @media only all and (max-width:50em),only all and (max-device-width:800px),only all and (max-width:780px){p{some-css:here}}
@@ -0,0 +1,5 @@
1
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
2
+ p{
3
+ some-css : here
4
+ }
5
+ }
@@ -0,0 +1 @@
1
+ @media screen and (-webkit-min-device-pixel-ratio:0){p{some-css:here}}
@@ -0,0 +1,14 @@
1
+ /* example from https://developer.mozilla.org/en/CSS/opacity */
2
+ pre { /* make the box translucent (80% opaque) */
3
+ border: solid red;
4
+ opacity: 0.8; /* Firefox, Safari(WebKit), Opera */
5
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /* IE 8 */
6
+ filter: PROGID:DXImageTransform.Microsoft.Alpha(Opacity=80); /* IE 4-7 */
7
+ zoom: 1; /* set "zoom", "width" or "height" to trigger "hasLayout" in IE 7 and lower */
8
+ }
9
+
10
+ /** and again */
11
+ code {
12
+ -ms-filter: "PROGID:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /* IE 8 */
13
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); /* IE 4-7 */
14
+ }
@@ -0,0 +1 @@
1
+ pre{border:solid red;opacity:.8;-ms-filter:"alpha(opacity=80)";filter:alpha(opacity=80);zoom:1}code{-ms-filter:"alpha(opacity=80)";filter:alpha(opacity=80)}
@@ -0,0 +1,6 @@
1
+ #sel-o {
2
+ content: "on\"ce upon \
3
+ a time";
4
+ content: 'once upon \
5
+ a ti\'me';
6
+ }
@@ -0,0 +1,3 @@
1
+ #sel-o{content:"on\"ce upon \
2
+ a time";content:'once upon \
3
+ a ti\'me'}
@@ -0,0 +1,7 @@
1
+ /* preserving strings */
2
+ .sele {
3
+ content: "\"keep \" me";
4
+ something: '\\\' . . ';
5
+ else: 'empty{}';
6
+ content: "/* test */"; /* <---- this is not a comment, should be be kept */
7
+ }
@@ -0,0 +1 @@
1
+ .sele{content:"\"keep \" me";something:'\\\' . . ';else:'empty{}';content:"/* test */"}
@@ -0,0 +1,7 @@
1
+ /* preserving strings */
2
+ .sele {
3
+ content: "\"keep \" me";
4
+ something: '\\\' . . ';
5
+ else: 'empty{}';
6
+ content: "/* test */"; /* <---- this is not a comment, should be be kept */
7
+ }
@@ -0,0 +1 @@
1
+ .sele{content:"\"keep \" me";something:'\\\' . . ';else:'empty{}';content:"/* test */"}
@@ -0,0 +1,16 @@
1
+ /*
2
+ because of IE6 first-letter and first-line
3
+ must be followed by a space
4
+ http://reference.sitepoint.com/css/pseudoelement-firstletter
5
+ Thanks: P.Sorokin comment at http://www.phpied.com/cssmin-js/
6
+ */
7
+ p:first-letter{
8
+ buh: hum;
9
+ }
10
+ p:first-line{
11
+ baa: 1;
12
+ }
13
+
14
+ p:first-line,a,p:first-letter,b{
15
+ color: red;
16
+ }
@@ -0,0 +1 @@
1
+ p:first-letter {buh:hum}p:first-line {baa:1}p:first-line ,a,p:first-letter ,b{color:red}
@@ -0,0 +1,4 @@
1
+ p :link {
2
+ ba:zinga;;;
3
+ foo: bar;;;
4
+ }
@@ -0,0 +1 @@
1
+ p :link{ba:zinga;foo:bar}
@@ -0,0 +1,13 @@
1
+ /*!************88****
2
+ Preserving comments
3
+ as they are
4
+ ********************
5
+ Keep the initial !
6
+ *******************/
7
+ #yo {
8
+ ma: "ma";
9
+ }
10
+ /*!
11
+ I said
12
+ pre-
13
+ serve! */
@@ -0,0 +1,9 @@
1
+ /*!************88****
2
+ Preserving comments
3
+ as they are
4
+ ********************
5
+ Keep the initial !
6
+ *******************/#yo{ma:"ma"}/*!
7
+ I said
8
+ pre-
9
+ serve! */
@@ -0,0 +1,5 @@
1
+ #elementarr {
2
+ width: 1px;
3
+ *width: 3pt;
4
+ _width: 2em;
5
+ }
@@ -0,0 +1 @@
1
+ #elementarr{width:1px;*width:3pt;_width:2em}
@@ -0,0 +1,8 @@
1
+ /* te " st */
2
+ a{a:1}
3
+ /*!"preserve" me*/
4
+ b{content: "/**/"}
5
+ /* quite " quote ' \' \" */
6
+ /* ie mac \*/
7
+ c {c : 3}
8
+ /* end hiding */
@@ -0,0 +1 @@
1
+ a{a:1}/*!"preserve" me*/b{content:"/**/"}/*\*/c{c:3}/**/
@@ -0,0 +1,6 @@
1
+ a {
2
+ margin: 0px 0pt 0em 0%;
3
+ _padding-top: 0ex;
4
+ background-position: 0 0;
5
+ padding: 0in 0cm 0mm 0pc
6
+ }
@@ -0,0 +1 @@
1
+ a{margin:0;_padding-top:0;background-position:0 0;padding:0}
@@ -0,0 +1,41 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe RapperLite do
4
+ Dir["spec/fixtures/testcases/*/"].each do |folder|
5
+ name = File.basename( folder )
6
+
7
+ paths = [
8
+ {
9
+ :results => "tmp/*.js",
10
+ :expecteds => "#{folder}expected/*.js",
11
+ },
12
+ {
13
+ :results => "tmp/*.css",
14
+ :expecteds => "#{folder}expected/*.css",
15
+ }
16
+ ]
17
+
18
+ it "passes the \"#{name}\" test case" do
19
+ rapper = RapperLite::Engine.new( "#{folder}/rapper.yml" )
20
+ rapper.package
21
+
22
+ paths.each do |path|
23
+ # Produces the same exact individual files
24
+ file_names( path[:results] ).should == file_names( path[:expecteds] )
25
+
26
+ # Contents are all the same
27
+ results = Dir[ path[:results] ]
28
+ expecteds = Dir[ path[:expecteds] ]
29
+
30
+ results.each_index do |i|
31
+ unless File.read( results[i] ) == File.read( expecteds[i] )
32
+ puts
33
+ puts File.read( results[i] )
34
+ puts
35
+ raise "#{results[i]} did not match #{expecteds[i]}"
36
+ end
37
+ end
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,23 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'spec'
4
+ require 'rapper_lite'
5
+ require 'fileutils'
6
+
7
+ Spec::Runner.configure do |config|
8
+ config.before :suite do
9
+ `mkdir tmp/` unless FileTest::directory?( "tmp" )
10
+ end
11
+
12
+ # Tear down test case assets folders
13
+ config.after :each do
14
+ FileUtils.rm_r( Dir[ "tmp/*" ] )
15
+ FileUtils.rm_r( Dir[ "spec/fixtures/*/assets" ] )
16
+ end
17
+ end
18
+
19
+ def file_names( path )
20
+ Dir[path].map do |path|
21
+ File.basename( path )
22
+ end
23
+ end
@@ -0,0 +1,23 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe YUI::JavaScriptCompressor do
4
+ it "shoud be available" do
5
+ yui = YUI::JavaScriptCompressor.new
6
+ yui.compress( "var x = 1; var y = 2;" ).should == "var x=1;var y=2;"
7
+ end
8
+ end
9
+
10
+ describe YUI::CSS do
11
+ # https://github.com/rhulse/ruby-css-toolkit/blob/master/test/yui_compressor_test.rb
12
+
13
+ test_files = Dir[File.join( File.dirname( __FILE__ ), '/fixtures/yui_css/*.css' )]
14
+ test_files.each_with_index do |file, i|
15
+ test_css = File.read(file)
16
+ expected_css = File.read( file + '.min' )
17
+ test_name = File.basename( file, ".css" )
18
+
19
+ it "passes the \"#{test_name}\" test case" do
20
+ YUI::CSS.compress( test_css ).should == expected_css
21
+ end
22
+ end
23
+ end
metadata ADDED
@@ -0,0 +1,203 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rapper_lite
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Tyson Tate
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-10-01 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: &70101089335440 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 0.9.2
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *70101089335440
25
+ - !ruby/object:Gem::Dependency
26
+ name: rspec
27
+ requirement: &70101089334440 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: 1.3.2
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *70101089334440
36
+ - !ruby/object:Gem::Dependency
37
+ name: yard
38
+ requirement: &70101089332620 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *70101089332620
47
+ - !ruby/object:Gem::Dependency
48
+ name: rdiscount
49
+ requirement: &70101089331260 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 1.6.8
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: *70101089331260
58
+ - !ruby/object:Gem::Dependency
59
+ name: jeweler
60
+ requirement: &70101089330080 !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ~>
64
+ - !ruby/object:Gem::Version
65
+ version: 1.6.4
66
+ type: :development
67
+ prerelease: false
68
+ version_requirements: *70101089330080
69
+ - !ruby/object:Gem::Dependency
70
+ name: yui-compressor
71
+ requirement: &70101089345680 !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ version: 0.9.6
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: *70101089345680
80
+ description: Simple static asset packaging. Compresses files only when they're updated.
81
+ email: tyson@tysontate.com
82
+ executables:
83
+ - rapper_lite
84
+ extensions: []
85
+ extra_rdoc_files:
86
+ - LICENSE.txt
87
+ - README.markdown
88
+ files:
89
+ - Gemfile
90
+ - Gemfile.lock
91
+ - LICENSE.txt
92
+ - README.markdown
93
+ - Rakefile
94
+ - VERSION
95
+ - bin/rapper_lite
96
+ - lib/rapper_lite.rb
97
+ - lib/rapper_lite/compressors.rb
98
+ - lib/rapper_lite/config.rb
99
+ - lib/rapper_lite/utils.rb
100
+ - lib/rapper_lite/versioning.rb
101
+ - lib/tasks.rb
102
+ - lib/yui/css_compressor.rb
103
+ - rapper_lite.gemspec
104
+ - spec/fixtures/src/simple_1.css
105
+ - spec/fixtures/src/simple_1.js
106
+ - spec/fixtures/src/simple_2.css
107
+ - spec/fixtures/src/subfolder/simple_2.js
108
+ - spec/fixtures/testcases/combination/expected/base.css
109
+ - spec/fixtures/testcases/combination/expected/base.js
110
+ - spec/fixtures/testcases/combination/expected/base_combined.css
111
+ - spec/fixtures/testcases/combination/expected/base_combined.js
112
+ - spec/fixtures/testcases/combination/rapper.yml
113
+ - spec/fixtures/testcases/concatenation/expected/base.css
114
+ - spec/fixtures/testcases/concatenation/expected/base.js
115
+ - spec/fixtures/testcases/concatenation/expected/base_combined.css
116
+ - spec/fixtures/testcases/concatenation/expected/base_combined.js
117
+ - spec/fixtures/testcases/concatenation/rapper.yml
118
+ - spec/fixtures/yui_css/background-position.css
119
+ - spec/fixtures/yui_css/background-position.css.min
120
+ - spec/fixtures/yui_css/box-model-hack.css
121
+ - spec/fixtures/yui_css/box-model-hack.css.min
122
+ - spec/fixtures/yui_css/bug2527974.css
123
+ - spec/fixtures/yui_css/bug2527974.css.min
124
+ - spec/fixtures/yui_css/bug2527991.css
125
+ - spec/fixtures/yui_css/bug2527991.css.min
126
+ - spec/fixtures/yui_css/bug2527998.css
127
+ - spec/fixtures/yui_css/bug2527998.css.min
128
+ - spec/fixtures/yui_css/bug2528034.css
129
+ - spec/fixtures/yui_css/bug2528034.css.min
130
+ - spec/fixtures/yui_css/charset-media.css
131
+ - spec/fixtures/yui_css/charset-media.css.min
132
+ - spec/fixtures/yui_css/color.css
133
+ - spec/fixtures/yui_css/color.css.min
134
+ - spec/fixtures/yui_css/comment.css
135
+ - spec/fixtures/yui_css/comment.css.min
136
+ - spec/fixtures/yui_css/concat-charset.css
137
+ - spec/fixtures/yui_css/concat-charset.css.min
138
+ - spec/fixtures/yui_css/decimals.css
139
+ - spec/fixtures/yui_css/decimals.css.min
140
+ - spec/fixtures/yui_css/dollar-header.css
141
+ - spec/fixtures/yui_css/dollar-header.css.min
142
+ - spec/fixtures/yui_css/font-face.css
143
+ - spec/fixtures/yui_css/font-face.css.min
144
+ - spec/fixtures/yui_css/ie5mac.css
145
+ - spec/fixtures/yui_css/ie5mac.css.min
146
+ - spec/fixtures/yui_css/media-empty-class.css
147
+ - spec/fixtures/yui_css/media-empty-class.css.min
148
+ - spec/fixtures/yui_css/media-multi.css
149
+ - spec/fixtures/yui_css/media-multi.css.min
150
+ - spec/fixtures/yui_css/media-test.css
151
+ - spec/fixtures/yui_css/media-test.css.min
152
+ - spec/fixtures/yui_css/opacity-filter.css
153
+ - spec/fixtures/yui_css/opacity-filter.css.min
154
+ - spec/fixtures/yui_css/preserve-new-line.css
155
+ - spec/fixtures/yui_css/preserve-new-line.css.min
156
+ - spec/fixtures/yui_css/preserve-strings.css
157
+ - spec/fixtures/yui_css/preserve-strings.css.min
158
+ - spec/fixtures/yui_css/preserve_string.css
159
+ - spec/fixtures/yui_css/preserve_string.css.min
160
+ - spec/fixtures/yui_css/pseudo-first.css
161
+ - spec/fixtures/yui_css/pseudo-first.css.min
162
+ - spec/fixtures/yui_css/pseudo.css
163
+ - spec/fixtures/yui_css/pseudo.css.min
164
+ - spec/fixtures/yui_css/special-comments.css
165
+ - spec/fixtures/yui_css/special-comments.css.min
166
+ - spec/fixtures/yui_css/star-underscore-hacks.css
167
+ - spec/fixtures/yui_css/star-underscore-hacks.css.min
168
+ - spec/fixtures/yui_css/string-in-comment.css
169
+ - spec/fixtures/yui_css/string-in-comment.css.min
170
+ - spec/fixtures/yui_css/zeros.css
171
+ - spec/fixtures/yui_css/zeros.css.min
172
+ - spec/rapper_lite_spec.rb
173
+ - spec/spec_helper.rb
174
+ - spec/vendor_spec.rb
175
+ homepage: http://tysontate.github.com/rapper_lite/
176
+ licenses:
177
+ - MIT
178
+ post_install_message:
179
+ rdoc_options: []
180
+ require_paths:
181
+ - lib
182
+ required_ruby_version: !ruby/object:Gem::Requirement
183
+ none: false
184
+ requirements:
185
+ - - ! '>='
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ segments:
189
+ - 0
190
+ hash: 852151560851302672
191
+ required_rubygems_version: !ruby/object:Gem::Requirement
192
+ none: false
193
+ requirements:
194
+ - - ! '>='
195
+ - !ruby/object:Gem::Version
196
+ version: '0'
197
+ requirements: []
198
+ rubyforge_project:
199
+ rubygems_version: 1.8.10
200
+ signing_key:
201
+ specification_version: 3
202
+ summary: Simple static asset packaging.
203
+ test_files: []