less 1.1.6 → 1.1.7

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ 1.1.6
2
+ - hsl() fix
1
3
  1.1.5
2
4
  - rgb() fix
3
5
  1.1.4
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.6
1
+ 1.1.7
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{less}
5
- s.version = "1.1.6"
5
+ s.version = "1.1.7"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["cloudhead"]
@@ -181,12 +181,11 @@ Gem::Specification.new do |s|
181
181
  "spec/spec.less",
182
182
  "spec/spec_helper.rb"
183
183
  ]
184
- s.has_rdoc = true
185
184
  s.homepage = %q{http://www.lesscss.org}
186
185
  s.rdoc_options = ["--charset=UTF-8"]
187
186
  s.require_paths = ["lib"]
188
187
  s.rubyforge_project = %q{less}
189
- s.rubygems_version = %q{1.3.1}
188
+ s.rubygems_version = %q{1.3.5}
190
189
  s.summary = %q{LESS compiler}
191
190
  s.test_files = [
192
191
  "spec/command_spec.rb",
@@ -196,7 +195,7 @@ Gem::Specification.new do |s|
196
195
 
197
196
  if s.respond_to? :specification_version then
198
197
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
199
- s.specification_version = 2
198
+ s.specification_version = 3
200
199
 
201
200
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
202
201
  else
@@ -8,7 +8,7 @@ module Less
8
8
  end
9
9
 
10
10
  def hsl *args
11
- hsla *args, 1.0
11
+ hsla *[args, 1.0].flatten
12
12
  end
13
13
 
14
14
  #
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: less
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.6
4
+ version: 1.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - cloudhead
@@ -189,6 +189,8 @@ files:
189
189
  - spec/spec_helper.rb
190
190
  has_rdoc: true
191
191
  homepage: http://www.lesscss.org
192
+ licenses: []
193
+
192
194
  post_install_message:
193
195
  rdoc_options:
194
196
  - --charset=UTF-8
@@ -209,9 +211,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
209
211
  requirements: []
210
212
 
211
213
  rubyforge_project: less
212
- rubygems_version: 1.3.1
214
+ rubygems_version: 1.3.5
213
215
  signing_key:
214
- specification_version: 2
216
+ specification_version: 3
215
217
  summary: LESS compiler
216
218
  test_files:
217
219
  - spec/command_spec.rb