lesslateral 1.2.21

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 (84) hide show
  1. data/.gitignore +4 -0
  2. data/CHANGELOG +62 -0
  3. data/LICENSE +179 -0
  4. data/README.md +48 -0
  5. data/Rakefile +52 -0
  6. data/VERSION +1 -0
  7. data/bin/lessc +103 -0
  8. data/less.gemspec +134 -0
  9. data/lib/less.rb +36 -0
  10. data/lib/less/command.rb +108 -0
  11. data/lib/less/engine.rb +52 -0
  12. data/lib/less/engine/grammar/common.tt +29 -0
  13. data/lib/less/engine/grammar/entity.tt +144 -0
  14. data/lib/less/engine/grammar/less.tt +341 -0
  15. data/lib/less/engine/nodes.rb +9 -0
  16. data/lib/less/engine/nodes/element.rb +281 -0
  17. data/lib/less/engine/nodes/entity.rb +79 -0
  18. data/lib/less/engine/nodes/function.rb +93 -0
  19. data/lib/less/engine/nodes/literal.rb +171 -0
  20. data/lib/less/engine/nodes/property.rb +232 -0
  21. data/lib/less/engine/nodes/ruleset.rb +12 -0
  22. data/lib/less/engine/nodes/selector.rb +44 -0
  23. data/lib/less/ext.rb +60 -0
  24. data/lib/less/notification.rb +59 -0
  25. data/spec/command_spec.rb +102 -0
  26. data/spec/css/accessors.css +18 -0
  27. data/spec/css/big.css +3768 -0
  28. data/spec/css/colors.css +14 -0
  29. data/spec/css/comments.css +9 -0
  30. data/spec/css/css-3.css +21 -0
  31. data/spec/css/css.css +50 -0
  32. data/spec/css/dash-prefix.css +12 -0
  33. data/spec/css/functions.css +6 -0
  34. data/spec/css/import-with-extra-paths.css +8 -0
  35. data/spec/css/import-with-partial-in-extra-path.css +6 -0
  36. data/spec/css/import.css +12 -0
  37. data/spec/css/lazy-eval.css +1 -0
  38. data/spec/css/mixins-args.css +32 -0
  39. data/spec/css/mixins.css +28 -0
  40. data/spec/css/operations.css +28 -0
  41. data/spec/css/parens.css +20 -0
  42. data/spec/css/rulesets.css +17 -0
  43. data/spec/css/scope.css +11 -0
  44. data/spec/css/selectors.css +13 -0
  45. data/spec/css/strings.css +12 -0
  46. data/spec/css/variables.css +8 -0
  47. data/spec/css/whitespace.css +7 -0
  48. data/spec/engine_spec.rb +127 -0
  49. data/spec/less/accessors.less +20 -0
  50. data/spec/less/big.less +1264 -0
  51. data/spec/less/colors.less +35 -0
  52. data/spec/less/comments.less +46 -0
  53. data/spec/less/css-3.less +52 -0
  54. data/spec/less/css.less +104 -0
  55. data/spec/less/dash-prefix.less +21 -0
  56. data/spec/less/exceptions/mixed-units-error.less +3 -0
  57. data/spec/less/exceptions/name-error-1.0.less +3 -0
  58. data/spec/less/exceptions/syntax-error-1.0.less +3 -0
  59. data/spec/less/extra_import_path/extra.less +1 -0
  60. data/spec/less/extra_import_path/import/import-test-a.css +1 -0
  61. data/spec/less/extra_import_path/import/import-test-a.less +4 -0
  62. data/spec/less/functions.less +6 -0
  63. data/spec/less/hidden.less +25 -0
  64. data/spec/less/import-with-extra-paths.less +4 -0
  65. data/spec/less/import.less +8 -0
  66. data/spec/less/import/import-test-a.less +2 -0
  67. data/spec/less/import/import-test-b.less +8 -0
  68. data/spec/less/import/import-test-c.less +7 -0
  69. data/spec/less/import/import-test-d.css +1 -0
  70. data/spec/less/lazy-eval.less +6 -0
  71. data/spec/less/literal-css.less +11 -0
  72. data/spec/less/mixins-args.less +59 -0
  73. data/spec/less/mixins.less +43 -0
  74. data/spec/less/operations.less +39 -0
  75. data/spec/less/parens.less +26 -0
  76. data/spec/less/rulesets.less +30 -0
  77. data/spec/less/scope.less +32 -0
  78. data/spec/less/selectors.less +24 -0
  79. data/spec/less/strings.less +14 -0
  80. data/spec/less/variables.less +29 -0
  81. data/spec/less/whitespace.less +34 -0
  82. data/spec/spec.css +50 -0
  83. data/spec/spec_helper.rb +8 -0
  84. metadata +159 -0
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ /*.css
2
+ *.tmproj
3
+ *.gem
4
+ pkg/
data/CHANGELOG ADDED
@@ -0,0 +1,62 @@
1
+ 1.1.6
2
+ - hsl() fix
3
+ 1.1.5
4
+ - rgb() fix
5
+ 1.1.4
6
+ - support for uppercase ids and classes
7
+ - `ex` support
8
+ - fixed ruby 1.8 from outputting ascii numbers in the CLI
9
+ 1.1.3
10
+ - fix to Growl messages
11
+ - better benchmark task output
12
+ 1.1.2
13
+ - full parens support
14
+ - don't raise an exception if growlnotify wasn't found
15
+ 1.1.1
16
+ - added title to Growl notifications
17
+ 1.1.0
18
+ - added color to command line output
19
+ - added Growl support
20
+ 1.0.16
21
+ - basic support for parens
22
+ - support for operations in shorthand properties
23
+ 1.0.15
24
+ - moved to treetop 1.3.0
25
+ - fixed benchmark task
26
+ 1.0.14
27
+ - support for `*property:` hack
28
+ 1.0.13
29
+ - importing .css files now works
30
+ 1.0.12
31
+ - basic selector grouping for better output
32
+ - evaluate variables lazily
33
+ - support for values starting with `-`
34
+ 1.0.11
35
+ - ruby 1.8 compatibility fix
36
+ 1.0.10
37
+ - additional support for css 3
38
+ 1.0.9
39
+ - overhauled color support & operations
40
+ - better handling of css 3 selectors
41
+ 1.0.8
42
+ - support for rgba
43
+ - fixed color expansion
44
+ - fixed new-line error in declarations
45
+ - fixed attriute selector without element name error
46
+ 1.0.6
47
+ - fixed grammar for .class#id
48
+ - fixed color padding issue
49
+ 1.0.5
50
+ - added attribute selectors (accessors)
51
+ - semi-column at end of ruleset now works
52
+ 1.0.4
53
+ - removed dependency on polyglot gem
54
+ - fixed a moz hack not compiling
55
+ 1.0.3
56
+ - fixed problem with floats repeating unit twice
57
+ 1.0.2
58
+ - added support for url() without quotes
59
+ 1.0.1
60
+ - pulled some patches from jgarber's treetop
61
+ 1.0.0
62
+ - initial release
data/LICENSE ADDED
@@ -0,0 +1,179 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ Copyright (c) 2009 Alexis Sellier
data/README.md ADDED
@@ -0,0 +1,48 @@
1
+ LESS
2
+ ====
3
+ It's time CSS was done right – LESS is _leaner_ css.
4
+
5
+ Setup
6
+ ------
7
+ to get the latest development version:
8
+
9
+ sudo gem install less -s http://gemcutter.org
10
+
11
+ to get the latest stable version:
12
+
13
+ sudo gem install less
14
+
15
+ Explained
16
+ ---------
17
+ LESS allows you to write CSS the way (I think) it was meant to, that is: with *variables*, *nested rules* and *mixins*!
18
+
19
+ ### Here's some example LESS code:
20
+
21
+ @dark: #110011;
22
+ .outline (@width: 1) { border: (@width * 10px) solid black }
23
+
24
+ .article {
25
+ a { text-decoration: none }
26
+ p { color: @dark }
27
+ .outline(3);
28
+ }
29
+
30
+ ### And the CSS output it produces:
31
+
32
+ .article a { text-decoration: none }
33
+ .article p { color: #110011 }
34
+ .article { border: 30px solid black }
35
+
36
+ If you have CSS nightmares, just
37
+ $ lessc style.less
38
+
39
+ For more information, see you at <http://lesscss.org>
40
+
41
+ People without whom this wouldn't have happened a.k.a *Credits*
42
+ ---------------------------------------------------------------
43
+
44
+ - **Dmitry Fadeyev**, for pushing me to do this, and designing our awesome website
45
+ - **August Lilleaas**, for initiating the work on the treetop grammar, as well as writing the rails plugin
46
+ - **Nathan Sobo**, for creating treetop
47
+ - **Jason Garber**, for his magical performance optimizations on treetop
48
+ - And finally, the people of #ruby-lang for answering all my ruby questions. **apeiros**, **manveru** and **rue** come to mind
data/Rakefile ADDED
@@ -0,0 +1,52 @@
1
+ begin
2
+ require 'jeweler'
3
+ Jeweler::Tasks.new do |s|
4
+ s.name = "less"
5
+ s.authors = ["cloudhead"]
6
+ s.email = "self@cloudhead.net"
7
+ s.summary = "LESS compiler"
8
+ s.homepage = "http://www.lesscss.org"
9
+ s.description = "LESS is leaner CSS"
10
+ s.rubyforge_project = 'less'
11
+ s.add_dependency('treetop', '>= 1.4.2')
12
+ s.add_dependency('mutter', '>= 0.4.2')
13
+ end
14
+ Jeweler::GemcutterTasks.new
15
+ rescue LoadError
16
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
17
+ end
18
+
19
+ require 'spec/rake/spectask'
20
+
21
+ Spec::Rake::SpecTask.new("spec") do |t|
22
+ t.libs << 'lib' << 'spec'
23
+ t.spec_files = FileList['spec/**/*_spec.rb']
24
+ t.spec_opts = ['--color', '--format=specdoc']
25
+ end
26
+
27
+ task :test do
28
+ Rake::Task['spec'].invoke
29
+ end
30
+
31
+ begin
32
+ require 'lib/less'
33
+ require 'benchmark'
34
+
35
+ task :compile do
36
+ abort "compiling isn't necessary anymore."
37
+ puts "compiling #{LESS_GRAMMAR.split('/').last}..."
38
+ File.open(LESS_PARSER, 'w') {|f| f.write Treetop::Compiler::GrammarCompiler.new.ruby_source(LESS_GRAMMAR) }
39
+ end
40
+
41
+ task :benchmark do
42
+ less = File.read("spec/less/big.less")
43
+ result = nil
44
+ Benchmark.bmbm do |b|
45
+ b.report("parse: ") { result = Less::Engine.new(less).parse(false) }
46
+ b.report("build: ") { result = result.build(Less::Node::Element.new) }
47
+ b.report("compile:") { result.to_css }
48
+ end
49
+ end
50
+ end
51
+
52
+ task :default => :spec
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.2.21
data/bin/lessc ADDED
@@ -0,0 +1,103 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $:.unshift File.dirname(__FILE__) + "/../lib"
4
+ $:.unshift File.dirname(__FILE__) + "/../lib/less"
5
+
6
+ require 'optparse'
7
+ require 'rubygems'
8
+ require 'less'
9
+
10
+ begin
11
+ require 'notification'
12
+ rescue LoadError
13
+ Less::NOTIFY = false
14
+ else
15
+ Less::NOTIFY = true
16
+ end
17
+
18
+ # Argument defaults
19
+ options = {
20
+ :watch => false,
21
+ :compress => false,
22
+ :debug => false,
23
+ :growl => false,
24
+ :timestamps => false,
25
+ :color => $stdout.tty?
26
+ }
27
+
28
+ # Get arguments
29
+ opts = OptionParser.new do |o|
30
+ o.banner = "usage: lessc source [destination] [--watch]"
31
+ o.separator ""
32
+
33
+ # Watch mode
34
+ o.on("-w", "--watch", "watch for changes") do
35
+ options[:watch] = true
36
+ end
37
+
38
+ # Growl
39
+ o.on("-g", "--growl", "growl notifications") do
40
+ if Less::NOTIFY && (Notifier.installed? rescue false)
41
+ options[:growl] = true
42
+ elsif Less::NOTIFY
43
+ abort "Growl or 'growlnotify' wasn't found on your system."
44
+ else
45
+ abort "Growl gem not found, please install with: " +
46
+ "`sudo gem install visionmedia-growl -s http://gems.github.com`"
47
+ end
48
+ end
49
+
50
+ # Timestamps
51
+ o.on("-t", "--timestamps", "show timestamps in watch mode") do
52
+ options[:timestamps] = true
53
+ end
54
+
55
+ # No color in output
56
+ o.on("--no-color", "suppress color in output") do
57
+ options[:color] = false
58
+ end
59
+
60
+ o.on('--verbose', 'show success messages when using growl') do
61
+ options[:verbose] = true
62
+ end
63
+
64
+ # Compression needs a proper algorithm
65
+ #
66
+ # o.on("-x", "--compress", "compress css file") do
67
+ # options[:compress] = true
68
+ # end
69
+
70
+ o.separator ""
71
+
72
+ # Help
73
+ o.on_tail("-h", "--help", "show this message") do
74
+ puts opts
75
+ exit
76
+ end
77
+
78
+ o.on_tail("-d", "--debug", "show full error messages") do
79
+ options[:debug] = true
80
+ end
81
+
82
+ # Version
83
+ o.on_tail("-v", "--version", "show version") do
84
+ puts "lessc " + Less.version
85
+ exit
86
+ end
87
+ end
88
+
89
+ opts.parse! # Parse arguments into `options` hash
90
+
91
+ # Get source and destintation from command line
92
+ case ARGV.size
93
+ when 1
94
+ options[:source] = ARGV[ 0 ]
95
+ when 2
96
+ options[:source] = ARGV[ 0 ]
97
+ options[:destination] = ARGV[ 1 ]
98
+ else
99
+ puts opts
100
+ exit
101
+ end
102
+
103
+ Less::Command.new( options ).run! ? exit(0) : exit(1)