middleman-fontcustom 0.2.1 → 0.3.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ab3935b15c1c76d3547783c33128a2f999a948c6
4
- data.tar.gz: 216af5ee76c1d260dc7921d1af36b298209f35f3
3
+ metadata.gz: 06c06ab444e2c72f378d8ace194411773ebc1435
4
+ data.tar.gz: c20af1af6bba5e3f02967bc648194c8409700ef4
5
5
  SHA512:
6
- metadata.gz: 6b7b73d43de2a64e6a69f9ee082cc976bfd7101f99fe9c7b29f5c44ab49695d92de03affb5b9e32b63e339e62f21dba0e66e66901ff4a10d7b6a24fb545865d7
7
- data.tar.gz: 705b124900efe67d7489325ced66ad1d39678c513713524baae5398d2c245e07bb6b1c5a4e4567c29158481d779dd6c9e15b6815b1c848fcfd7a9d89cc62a843
6
+ metadata.gz: 62644fe5a745188b52e56780caf5616ef5d5a8c1e3048e97ccf9855e75de72be057fa959cb39bbcae31a70ab9571f1ea738f376d33874fd54390338d104a6ff1
7
+ data.tar.gz: 639b8cc5a23192fc6a17bd6d8d6014c35bcd812a7477783d4efd7f7e0b20600ef3ad45dfe016bfad1e3e3050a916126017a188f65e86f3f69ecdb59f2d76246a
@@ -1,3 +1,7 @@
1
+ # 0.3.0
2
+
3
+ - New "autowidth" option for fontcustom(@RickMeijer)
4
+
1
5
  # 0.2.1
2
6
 
3
7
  - Add editorconfig support(@izaakschroeder)
@@ -9,6 +9,7 @@ module Middleman
9
9
  option :templates, 'scss', 'Output templates'
10
10
  option :no_hash, true, 'Create hash for no cache policy'
11
11
  option :preprocessor_path, nil, 'Relative path from your compiled CSS to your output directory'
12
+ option :autowidth, false, 'Trims horizontal white space from each glyph.'
12
13
 
13
14
  def initialize(app, options_hash={}, &block)
14
15
  super
@@ -27,7 +28,8 @@ module Middleman
27
28
  },
28
29
  :templates => config[:templates].split(/\s/),
29
30
  :no_hash => config[:no_hash],
30
- :preprocessor_path => config[:preprocessor_path]
31
+ :preprocessor_path => config[:preprocessor_path],
32
+ :autowidth => config[:autowidth]
31
33
  }).compile
32
34
  }
33
35
 
@@ -1,5 +1,5 @@
1
1
  module Middleman
2
2
  module Fontcustom
3
- VERSION = "0.2.1"
3
+ VERSION = "0.3.0"
4
4
  end
5
5
  end
@@ -19,8 +19,8 @@ Gem::Specification.new do |s|
19
19
 
20
20
  s.required_ruby_version = ">= 1.9.3"
21
21
 
22
- s.add_runtime_dependency "middleman-core", "~> 3.3", ">= 3.3.7"
23
- s.add_runtime_dependency "fontcustom", "~> 1.3.7"
22
+ s.add_runtime_dependency "middleman-core", ">= 3.3"
23
+ s.add_runtime_dependency "fontcustom", "~> 1.3"
24
24
 
25
25
  s.add_development_dependency "rake"
26
26
  end
metadata CHANGED
@@ -1,49 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-fontcustom
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yasuaki Uechi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-21 00:00:00.000000000 Z
11
+ date: 2015-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: middleman-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '3.3'
20
17
  - - ">="
21
18
  - !ruby/object:Gem::Version
22
- version: 3.3.7
19
+ version: '3.3'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
- - - "~>"
28
- - !ruby/object:Gem::Version
29
- version: '3.3'
30
24
  - - ">="
31
25
  - !ruby/object:Gem::Version
32
- version: 3.3.7
26
+ version: '3.3'
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: fontcustom
35
29
  requirement: !ruby/object:Gem::Requirement
36
30
  requirements:
37
31
  - - "~>"
38
32
  - !ruby/object:Gem::Version
39
- version: 1.3.7
33
+ version: '1.3'
40
34
  type: :runtime
41
35
  prerelease: false
42
36
  version_requirements: !ruby/object:Gem::Requirement
43
37
  requirements:
44
38
  - - "~>"
45
39
  - !ruby/object:Gem::Version
46
- version: 1.3.7
40
+ version: '1.3'
47
41
  - !ruby/object:Gem::Dependency
48
42
  name: rake
49
43
  requirement: !ruby/object:Gem::Requirement