less 1.2.16 → 1.2.17

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.16
1
+ 1.2.17
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{less}
8
- s.version = "1.2.16"
8
+ s.version = "1.2.17"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["cloudhead"]
@@ -27,7 +27,6 @@ Gem::Specification.new do |s|
27
27
  "VERSION",
28
28
  "bin/lessc",
29
29
  "less.gemspec",
30
- "lib/ext.rb",
31
30
  "lib/less.rb",
32
31
  "lib/less/command.rb",
33
32
  "lib/less/engine.rb",
@@ -42,6 +41,7 @@ Gem::Specification.new do |s|
42
41
  "lib/less/engine/nodes/property.rb",
43
42
  "lib/less/engine/nodes/ruleset.rb",
44
43
  "lib/less/engine/nodes/selector.rb",
44
+ "lib/less/ext.rb",
45
45
  "spec/command_spec.rb",
46
46
  "spec/css/accessors.css",
47
47
  "spec/css/big.css",
@@ -9,7 +9,7 @@ LESS_GRAMMAR = File.join(LESS_ROOT, 'less', 'engine', 'grammar')
9
9
 
10
10
  $:.unshift File.dirname(__FILE__)
11
11
 
12
- require 'ext'
12
+ require 'less/ext'
13
13
  require 'less/command'
14
14
  require 'less/engine'
15
15
 
@@ -5,8 +5,8 @@ module Treetop
5
5
  o = color ? Mutter.new.clear : lambda {|i, *args| i }
6
6
  return nil unless (tf = terminal_failures) && tf.size > 0
7
7
  msg = "on line #{failure_line}: expected " + (
8
- tf.size == 1 ?
9
- o[tf[0].expected_string, :yellow] :
8
+ tf.size == 1 ?
9
+ o[tf[0].expected_string, :yellow] :
10
10
  "one of #{o[tf.map {|f| f.expected_string }.uniq * ' ', :yellow]}"
11
11
  )
12
12
  f = input[failure_index]
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.2.16
4
+ version: 1.2.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - cloudhead
@@ -50,7 +50,6 @@ files:
50
50
  - VERSION
51
51
  - bin/lessc
52
52
  - less.gemspec
53
- - lib/ext.rb
54
53
  - lib/less.rb
55
54
  - lib/less/command.rb
56
55
  - lib/less/engine.rb
@@ -65,6 +64,7 @@ files:
65
64
  - lib/less/engine/nodes/property.rb
66
65
  - lib/less/engine/nodes/ruleset.rb
67
66
  - lib/less/engine/nodes/selector.rb
67
+ - lib/less/ext.rb
68
68
  - spec/command_spec.rb
69
69
  - spec/css/accessors.css
70
70
  - spec/css/big.css