-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added documentation for icons within tables.
- Loading branch information
1 parent
c09f08a
commit cf5dea2
Showing
6 changed files
with
70 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
.DS_Store | ||
Gemfile.lock | ||
/doc | ||
.yardoc/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--charset UTF-8 | ||
--main README.md | ||
--title 'Prawn/Icon Documentation' | ||
--no-private | ||
- | ||
COPYING | ||
LICENSE | ||
README.md | ||
CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# 0.6.2 - February 10, 2015 | ||
|
||
- Added this CHANGELOG. | ||
- Added the `table_icon` method to simplify icon use in conjuction with `Prawn::Table`. | ||
- Added a `.yardopts` file for better documentation. | ||
- Clean `.gemspec` to increase readability. | ||
|
||
# 0.6.1 - January 27, 2015 | ||
|
||
- Upgraded FontAwesome to `v4.3.0`. | ||
|
||
# 0.6.0 - January 20, 2015 | ||
|
||
- Single-quoted attributes are now supported when using `inline_format: true`. | ||
- Prawn is now specified as a runtime dependency of `prawn/icon`. | ||
|
||
# 0.5.1 - November 2, 2014 | ||
|
||
- Bugfix for improperly cached font data. | ||
- Added Codeclimate and Travis CI. | ||
|
||
# 0.5.0 - October 29, 2014 | ||
|
||
- Initial public release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,23 +2,25 @@ basedir = File.expand_path(File.dirname(__FILE__)) | |
require "#{basedir}/lib/prawn/icon/version" | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'prawn-icon' | ||
spec.version = Prawn::Icon::VERSION | ||
spec.name = 'prawn-icon' | ||
spec.version = Prawn::Icon::VERSION | ||
spec.platform = Gem::Platform::RUBY | ||
spec.summary = 'Provides icon fonts for PrawnPDF' | ||
spec.files = Dir.glob('{lib,spec,fonts,examples}/**/**/*') + | ||
['prawn-icon.gemspec', 'Gemfile', 'Rakefile', | ||
'COPYING', 'LICENSE', 'GPLv2', 'GPLv3'] | ||
spec.require_path = 'lib' | ||
spec.required_ruby_version = '>= 1.9.3' | ||
spec.summary = 'Provides icon fonts for PrawnPDF' | ||
spec.files = Dir.glob('{lib,spec,fonts,examples}/**/**/*') + | ||
%w(prawn-icon.gemspec Gemfile Rakefile) + | ||
%w(README.md CHANGELOG.md) + | ||
%w(COPYING LICENSE GPLv2 GPLv3) | ||
|
||
spec.require_path = 'lib' | ||
spec.required_ruby_version = '>= 1.9.3' | ||
spec.required_rubygems_version = '>= 1.3.6' | ||
|
||
spec.homepage = 'https://github.com/jessedoyle/prawn-icon/' | ||
|
||
spec.test_files = Dir['spec/*_spec.rb'] | ||
spec.authors = ['Jesse Doyle'] | ||
spec.email = ['[email protected]'] | ||
spec.licenses = ['RUBY', 'GPL-2', 'GPL-3'] | ||
spec.authors = ['Jesse Doyle'] | ||
spec.email = ['[email protected]'] | ||
spec.licenses = ['RUBY', 'GPL-2', 'GPL-3'] | ||
|
||
spec.add_dependency('prawn', '>= 1.3.0', '< 3.0.0') | ||
|
||
|