prawn-icon 0.6.2 → 0.6.3

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: c71b726e45b44b50467f1410b717c9aca2901d25
4
- data.tar.gz: c0bd60125ff1e91e4d0e1789f3f01ab2f1342058
3
+ metadata.gz: ec51a24710039426e3be1813e3a646b8f3bddbc6
4
+ data.tar.gz: e3c7921cc6d0bdb8fad15ebf7db72aa179fcfe9e
5
5
  SHA512:
6
- metadata.gz: 9154c806a2213b4d772c20ab888fdc86b283d931918a2fe63d8e7896461757a6e05ad0aad88d4a8b75396ae4f4ec6c2f7f7ed3263b0980546db24a6263e2a859
7
- data.tar.gz: 8c4b4a26ed6119e7fba8431a9d62ca2b2976c1ae935a86fc9ea6f2ac371201666e88adf9fad6803b840ab9aeed3e158b01ba735306fdce2f16b01ca7343056cc
6
+ metadata.gz: d1ff3e1377258207ce033841fbd4bb279fa221024f2362145e1afdba1304744a8f9b174ba31d27ed17eec66c0093a50f2702f8eb6ca51e7f326b6ea5bb2b3625
7
+ data.tar.gz: c9d51b98b80c2197c378f3a162d73d229444effb687bd9bace6690b1852be5addeed7ba4434bcbdffeab8fdd4645eea4e7ab96707dca2a8849853a552131fbdf
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 0.6.3 - March 4, 2015
2
+
3
+ - Relaxed Prawn runtime dependency from >= 1.3.0 to >= 1.1.0.
4
+ - Added CI tests for multiple versions of Prawn.
5
+ - Added missing `end` statement to example code in README.
6
+
1
7
  # 0.6.2 - February 10, 2015
2
8
 
3
9
  - Added this CHANGELOG.
data/README.md CHANGED
@@ -66,13 +66,14 @@ require 'prawn/table'
66
66
 
67
67
  Prawn::Document.generate('table_icons.pdf') do |pdf|
68
68
 
69
- data = [
70
- # Explicit brackets must be used here
71
- [pdf.table_icon('fa-birthday-cake'), 'Cake'],
72
- ['is', 'Great!']
73
- ]
69
+ data = [
70
+ # Explicit brackets must be used here
71
+ [pdf.table_icon('fa-birthday-cake'), 'Cake'],
72
+ ['is', 'Great!']
73
+ ]
74
74
 
75
- pdf.table(data) # => (2 x 2 table)
75
+ pdf.table(data) # => (2 x 2 table)
76
+ end
76
77
  ```
77
78
 
78
79
  Note that the `table_icon` method does not support the `inline_format: true` option.
@@ -8,6 +8,6 @@
8
8
 
9
9
  module Prawn
10
10
  class Icon
11
- VERSION = '0.6.2'.freeze
11
+ VERSION = '0.6.3'.freeze
12
12
  end
13
13
  end
data/prawn-icon.gemspec CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.email = ['jdoyle@ualberta.ca']
23
23
  spec.licenses = ['RUBY', 'GPL-2', 'GPL-3']
24
24
 
25
- spec.add_dependency('prawn', '>= 1.3.0', '< 3.0.0')
25
+ spec.add_dependency('prawn', '>= 1.1.0', '< 3.0.0')
26
26
 
27
27
  spec.add_development_dependency('pdf-inspector', '~> 1.1.0')
28
28
  spec.add_development_dependency('rspec', '~>2.14.1')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prawn-icon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jesse Doyle
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-11 00:00:00.000000000 Z
11
+ date: 2015-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: prawn
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - '>='
18
18
  - !ruby/object:Gem::Version
19
- version: 1.3.0
19
+ version: 1.1.0
20
20
  - - <
21
21
  - !ruby/object:Gem::Version
22
22
  version: 3.0.0
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - '>='
28
28
  - !ruby/object:Gem::Version
29
- version: 1.3.0
29
+ version: 1.1.0
30
30
  - - <
31
31
  - !ruby/object:Gem::Version
32
32
  version: 3.0.0
@@ -138,10 +138,35 @@ executables: []
138
138
  extensions: []
139
139
  extra_rdoc_files: []
140
140
  files:
141
+ - CHANGELOG.md
142
+ - COPYING
143
+ - GPLv2
144
+ - GPLv3
145
+ - Gemfile
146
+ - LICENSE
147
+ - README.md
148
+ - Rakefile
149
+ - examples/example_helper.rb
150
+ - examples/fa-beer-inline.png
151
+ - examples/fa-beer.png
152
+ - examples/fontawesome.rb
153
+ - examples/foundation_icons.rb
154
+ - examples/octicons.rb
155
+ - fonts/DejaVuSans.ttf
156
+ - fonts/fa/LICENSE
157
+ - fonts/fa/fa.yml
158
+ - fonts/fa/fontawesome.ttf
159
+ - fonts/fi/LICENSE
160
+ - fonts/fi/fi.yml
161
+ - fonts/fi/foundation-icons.ttf
162
+ - fonts/octicon/LICENSE
163
+ - fonts/octicon/octicon.yml
164
+ - fonts/octicon/octicons.ttf
165
+ - lib/prawn/icon.rb
141
166
  - lib/prawn/icon/font_data.rb
142
167
  - lib/prawn/icon/parser.rb
143
168
  - lib/prawn/icon/version.rb
144
- - lib/prawn/icon.rb
169
+ - prawn-icon.gemspec
145
170
  - spec/integration/icon_spec.rb
146
171
  - spec/spec_helper.rb
147
172
  - spec/support/parser_helper.rb
@@ -149,31 +174,6 @@ files:
149
174
  - spec/unit/font_data_spec.rb
150
175
  - spec/unit/icon_spec.rb
151
176
  - spec/unit/parser_spec.rb
152
- - fonts/DejaVuSans.ttf
153
- - fonts/fa/fa.yml
154
- - fonts/fa/fontawesome.ttf
155
- - fonts/fa/LICENSE
156
- - fonts/fi/fi.yml
157
- - fonts/fi/foundation-icons.ttf
158
- - fonts/fi/LICENSE
159
- - fonts/octicon/LICENSE
160
- - fonts/octicon/octicon.yml
161
- - fonts/octicon/octicons.ttf
162
- - examples/example_helper.rb
163
- - examples/fa-beer-inline.png
164
- - examples/fa-beer.png
165
- - examples/fontawesome.rb
166
- - examples/foundation_icons.rb
167
- - examples/octicons.rb
168
- - prawn-icon.gemspec
169
- - Gemfile
170
- - Rakefile
171
- - README.md
172
- - CHANGELOG.md
173
- - COPYING
174
- - LICENSE
175
- - GPLv2
176
- - GPLv3
177
177
  homepage: https://github.com/jessedoyle/prawn-icon/
178
178
  licenses:
179
179
  - RUBY
@@ -196,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
196
196
  version: 1.3.6
197
197
  requirements: []
198
198
  rubyforge_project:
199
- rubygems_version: 2.0.14
199
+ rubygems_version: 2.4.5
200
200
  signing_key:
201
201
  specification_version: 4
202
202
  summary: Provides icon fonts for PrawnPDF