This repository has been archived by the owner on Dec 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
/
less.gemspec
133 lines (128 loc) · 4.12 KB
/
less.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{less}
s.version = "1.2.21"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["cloudhead"]
s.date = %q{2010-01-13}
s.default_executable = %q{lessc}
s.description = %q{LESS is leaner CSS}
s.email = %q{self@cloudhead.net}
s.executables = ["lessc"]
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = [
".gitignore",
"CHANGELOG",
"LICENSE",
"README.md",
"Rakefile",
"VERSION",
"bin/lessc",
"less.gemspec",
"lib/less.rb",
"lib/less/command.rb",
"lib/less/engine.rb",
"lib/less/engine/grammar/common.tt",
"lib/less/engine/grammar/entity.tt",
"lib/less/engine/grammar/less.tt",
"lib/less/engine/nodes.rb",
"lib/less/engine/nodes/element.rb",
"lib/less/engine/nodes/entity.rb",
"lib/less/engine/nodes/function.rb",
"lib/less/engine/nodes/literal.rb",
"lib/less/engine/nodes/property.rb",
"lib/less/engine/nodes/ruleset.rb",
"lib/less/engine/nodes/selector.rb",
"lib/less/ext.rb",
"spec/command_spec.rb",
"spec/css/accessors.css",
"spec/css/big.css",
"spec/css/colors.css",
"spec/css/comments.css",
"spec/css/css-3.css",
"spec/css/css.css",
"spec/css/dash-prefix.css",
"spec/css/functions.css",
"spec/css/import-with-extra-paths.css",
"spec/css/import-with-partial-in-extra-path.css",
"spec/css/import.css",
"spec/css/lazy-eval.css",
"spec/css/mixins-args.css",
"spec/css/mixins.css",
"spec/css/operations.css",
"spec/css/parens.css",
"spec/css/rulesets.css",
"spec/css/scope.css",
"spec/css/selectors.css",
"spec/css/strings.css",
"spec/css/variables.css",
"spec/css/whitespace.css",
"spec/engine_spec.rb",
"spec/less/accessors.less",
"spec/less/big.less",
"spec/less/colors.less",
"spec/less/comments.less",
"spec/less/css-3.less",
"spec/less/css.less",
"spec/less/dash-prefix.less",
"spec/less/exceptions/mixed-units-error.less",
"spec/less/exceptions/name-error-1.0.less",
"spec/less/exceptions/syntax-error-1.0.less",
"spec/less/extra_import_path/extra.less",
"spec/less/extra_import_path/import/import-test-a.css",
"spec/less/extra_import_path/import/import-test-a.less",
"spec/less/functions.less",
"spec/less/hidden.less",
"spec/less/import-with-extra-paths.less",
"spec/less/import.less",
"spec/less/import/import-test-a.less",
"spec/less/import/import-test-b.less",
"spec/less/import/import-test-c.less",
"spec/less/import/import-test-d.css",
"spec/less/lazy-eval.less",
"spec/less/literal-css.less",
"spec/less/mixins-args.less",
"spec/less/mixins.less",
"spec/less/operations.less",
"spec/less/parens.less",
"spec/less/rulesets.less",
"spec/less/scope.less",
"spec/less/selectors.less",
"spec/less/strings.less",
"spec/less/variables.less",
"spec/less/whitespace.less",
"spec/spec.css",
"spec/spec_helper.rb"
]
s.homepage = %q{http://www.lesscss.org}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{less}
s.rubygems_version = %q{1.3.5}
s.summary = %q{LESS compiler}
s.test_files = [
"spec/command_spec.rb",
"spec/engine_spec.rb",
"spec/spec_helper.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<treetop>, [">= 1.4.2"])
s.add_runtime_dependency(%q<mutter>, [">= 0.4.2"])
else
s.add_dependency(%q<treetop>, [">= 1.4.2"])
s.add_dependency(%q<mutter>, [">= 0.4.2"])
end
else
s.add_dependency(%q<treetop>, [">= 1.4.2"])
s.add_dependency(%q<mutter>, [">= 0.4.2"])
end
end