prawn-table-0.2.1/ 0000755 0000041 0000041 00000000000 12436072751 013765 5 ustar www-data www-data prawn-table-0.2.1/Gemfile 0000644 0000041 0000041 00000000047 12436072751 015261 0 ustar www-data www-data source "https://rubygems.org"
gemspec
prawn-table-0.2.1/manual/ 0000755 0000041 0000041 00000000000 12436072751 015242 5 ustar www-data www-data prawn-table-0.2.1/manual/contents.rb 0000644 0000041 0000041 00000000430 12436072751 017421 0 ustar www-data www-data # encoding: utf-8
#
# Generates the Prawn by example manual.
require_relative "example_helper"
Encoding.default_external = Encoding::UTF_8
Prawn::ManualBuilder::Example.generate("manual.pdf",
:skip_page_creation => true, :page_size => "FOLIO") do
load_package "table"
end
prawn-table-0.2.1/manual/example_helper.rb 0000644 0000041 0000041 00000000243 12436072751 020560 0 ustar www-data www-data # encoding: UTF-8
require "prawn"
require_relative "../lib/prawn/table"
require "prawn/manual_builder"
Prawn::ManualBuilder.manual_dir = File.dirname(__FILE__)
prawn-table-0.2.1/manual/table/ 0000755 0000041 0000041 00000000000 12436072751 016331 5 ustar www-data www-data prawn-table-0.2.1/manual/table/image_cells.rb 0000644 0000041 0000041 00000002733 12436072751 021127 0 ustar www-data www-data # encoding: utf-8
#
# Prawn can insert images into a table. Just pass a hash into
# table()
with an :image
key pointing to the image.
#
# You can pass the :scale
, :fit
,
# :position
, and :vposition
arguments in alongside
# :image
; these will function just as in image()
.
#
# The :image_width
and :image_height
arguments set
# the width/height of the image within the cell, as opposed to the
# :width
and :height
arguments, which set the table
# cell's dimensions.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
image = "#{Prawn::DATADIR}/images/prawn.png"
table [
["Standard image cell", {:image => image}],
[":scale => 0.5", {:image => image, :scale => 0.5}],
[":fit => [100, 200]", {:image => image, :fit => [100, 200]}],
[":image_height => 50,
:image_width => 100", {:image => image, :image_height => 50,
:image_width => 100}],
[":position => :center", {:image => image, :position => :center}],
[":vposition => :center", {:image => image, :vposition => :center,
:height => 200}]
], :width => bounds.width
end
prawn-table-0.2.1/manual/table/row_colors.rb 0000644 0000041 0000041 00000001201 12436072751 021040 0 ustar www-data www-data # encoding: utf-8
#
# One of the most common table styling techniques is to stripe the rows with
# alternating colors.
#
# There is one helper just for that. Just provide the :row_colors
# option an array with color values.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
data = [["This row should have one color"],
["And this row should have another"]]
data += [["..."]] * 10
table(data, :row_colors => ["F0F0F0", "FFFFCC"])
end
prawn-table-0.2.1/manual/table/style.rb 0000644 0000041 0000041 00000001411 12436072751 020013 0 ustar www-data www-data # encoding: utf-8
#
# We've seen how to apply styles to a selection of cells by setting the
# individual properties. Another option is to use the style
method
#
# style
lets us define multiple properties at once with a hash. It
# also accepts a block that will be called for each cell and can be used for
# some complex styling.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
table([[""] * 8] * 8) do
cells.style(:width => 24, :height => 24)
cells.style do |c|
c.background_color = ((c.row + c.column) % 2).zero? ? '000000' : 'ffffff'
end
end
end
prawn-table-0.2.1/manual/table/creation.rb 0000644 0000041 0000041 00000002162 12436072751 020463 0 ustar www-data www-data # encoding: utf-8
#
# Creating tables with Prawn is fairly easy. There are two methods that will
# create tables for us table
and make_table
.
#
# Both are wrappers that create a new Prawn::Table
object. The
# difference is that table
calls the draw
method
# after creating the table and make_table
only returns the created
# table, so you have to call the draw
method yourself.
#
# The most simple table can be created by providing only an array of arrays
# containing your data where each inner array represents one row.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
t = make_table([ ["this is the first row"],
["this is the second row"] ])
t.draw
move_down 20
table([ ["short", "short", "loooooooooooooooooooong"],
["short", "loooooooooooooooooooong", "short"],
["loooooooooooooooooooong", "short", "short"] ])
end
prawn-table-0.2.1/manual/table/span.rb 0000644 0000041 0000041 00000002460 12436072751 017621 0 ustar www-data www-data # encoding: utf-8
#
# Table cells can span multiple columns, rows, or both. When building a cell,
# use the hash argument constructor with a :colspan
and/or
# :rowspan
argument. Row or column spanning must be specified when
# building the data array; you can't set the span in the table's initialization
# block. This is because cells are laid out in the grid before that block is
# called, so that references to row and column numbers make sense.
#
# Cells are laid out in the order given, skipping any positions spanned by
# previously instantiated cells. Therefore, a cell with rowspan: 2
# will be missing at least one cell in the row below it. See the code and table
# below for an example.
#
# It is illegal to overlap cells via spanning. A
# Prawn::Errors::InvalidTableSpan
error will be raised if spans
# would cause cells to overlap.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
table([
["A", {:content => "2x1", :colspan => 2}, "B"],
[{:content => "1x2", :rowspan => 2}, "C", "D", "E"],
[{:content => "2x2", :colspan => 2, :rowspan => 2}, "F"],
["G", "H"]
])
end
prawn-table-0.2.1/manual/table/cell_borders_and_bg.rb 0000644 0000041 0000041 00000002054 12436072751 022610 0 ustar www-data www-data # encoding: utf-8
#
# The borders
option accepts an array with the border sides that
# will be drawn. The default is [:top, :bottom, :left, :right]
.
#
# border_width
may be set with a numeric value.
#
# Both border_color
and background_color
accept an
# HTML like RGB color string ("FF0000")
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
data = [ ["Look at how the cells will look when styled", "", ""],
["They probably won't look the same", "", ""]
]
{ :borders => [:top, :left],
:border_width => 3,
:border_color => "FF0000"}.each do |property, value|
text "Cell #{property}: #{value.inspect}"
table(data, :cell_style => {property => value})
move_down 20
end
text "Cell background_color: FFFFCC"
table(data, :cell_style => {:background_color => "FFFFCC"})
end
prawn-table-0.2.1/manual/table/filtering.rb 0000644 0000041 0000041 00000002030 12436072751 020634 0 ustar www-data www-data # encoding: utf-8
#
# Another way to reduce the number of cells is to filter
the table.
#
# filter
is just like Enumerable#select
. Pass it a
# block and it will iterate through the cells returning a new
# Prawn::Table::Cells
instance containing only those cells for
# which the block was not false.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
data = [ ["Item", "Jan Sales", "Feb Sales"],
["Oven", 17, 89],
["Fridge", 62, 30],
["Microwave", 71, 47]
]
table(data) do
values = cells.columns(1..-1).rows(1..-1)
bad_sales = values.filter do |cell|
cell.content.to_i < 40
end
bad_sales.background_color = "FFAAAA"
good_sales = values.filter do |cell|
cell.content.to_i > 70
end
good_sales.background_color = "AAFFAA"
end
end
prawn-table-0.2.1/manual/table/table.rb 0000644 0000041 0000041 00000002724 12436072751 017752 0 ustar www-data www-data # encoding: utf-8
#
# Examples for tables.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
Prawn::ManualBuilder::Example.generate("table.pdf", :page_size => "FOLIO") do
package "table" do |p|
p.name = "Prawn::Table"
p.section "Basics" do |s|
s.example "creation"
s.example "content_and_subtables"
s.example "flow_and_header"
s.example "position"
end
p.section "Styling" do |s|
s.example "column_widths"
s.example "width"
s.example "row_colors"
s.example "cell_dimensions"
s.example "cell_borders_and_bg"
s.example "cell_border_lines"
s.example "cell_text"
s.example "image_cells"
s.example "span"
s.example "before_rendering_page"
end
p.section "Initializer Block" do |s|
s.example "basic_block"
s.example "filtering"
s.example "style"
end
p.intro do
prose("Prawn comes with table support out of the box. Tables can be styled in whatever way you see fit. The whole table, rows, columns and cells can be styled independently from each other.
The examples show:")
list( "How to create tables",
"What content can be placed on tables",
"Subtables (or tables within tables)",
"How to style the whole table",
"How to use initializer blocks to style only specific portions of the table"
)
end
end
end
prawn-table-0.2.1/manual/table/cell_border_lines.rb 0000644 0000041 0000041 00000001564 12436072751 022332 0 ustar www-data www-data # encoding: utf-8
#
# The border_lines
option accepts an array with the styles of the
# border sides. The default is [:solid, :solid, :solid, :solid]
.
#
# border_lines
must be set to an array.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
data = [ ["Look at how the cell border lines can be mixed", "", ""],
["dotted top border", "", ""],
["solid right border", "", ""],
["dotted bottom border", "", ""],
["dashed left border", "", ""]
]
text "Cell :border_lines => [:dotted, :solid, :dotted, :dashed]"
table(data, :cell_style =>
{ :border_lines => [:dotted, :solid, :dotted, :dashed] })
end
prawn-table-0.2.1/manual/table/position.rb 0000644 0000041 0000041 00000001550 12436072751 020523 0 ustar www-data www-data # encoding: utf-8
#
# The table()
method accepts a :position
argument to
# determine horizontal position of the table within its bounding box. It can be
# :left
(the default), :center
, :right
,
# or a number specifying a distance in PDF points from the left side.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
data = [["The quick brown fox jumped over the lazy dogs."]] * 2
text "Left:"
table data, :position => :left
move_down 10
text "Center:"
table data, :position => :center
move_down 10
text "Right:"
table data, :position => :right
move_down 10
text "100pt:"
table data, :position => 100
end
prawn-table-0.2.1/manual/table/basic_block.rb 0000644 0000041 0000041 00000004067 12436072751 021120 0 ustar www-data www-data # encoding: utf-8
#
# All of the previous styling options we've seen deal with all the table cells
# at once.
#
# With initializer blocks we may deal with specific cells.
# A block passed to one of the table methods (Prawn::Table.new
,
# Prawn::Document#table
, Prawn::Document#make_table
)
# will be called after cell setup but before layout. This is a very flexible way
# to specify styling and layout constraints.
#
# Just like the Prawn::Document.generate
method, the table
# initializer blocks may be used with and without a block argument.
#
# The table class has three methods that are handy within an initializer block:
# cells
, rows
and columns
. All three
# return an instance of Prawn::Table::Cells
which represents
# a selection of cells.
#
# cells
return all the table cells, while rows
and
# columns
accept a number or a range as argument which returns a
# single row/column or a range of rows/columns respectively. (rows
# and columns
are also aliased as row
and
# column
)
#
# The Prawn::Table::Cells
class also defines rows
and
# columns
so they may be chained to narrow the selection of cells.
#
# All of the cell styling options we've seen on previous examples may be set as
# properties of the selection of cells.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
data = [ ["Header", "A " * 5, "B"],
["Data row", "C", "D " * 5],
["Another data row", "E", "F"]]
table(data) do
cells.padding = 12
cells.borders = []
row(0).borders = [:bottom]
row(0).border_width = 2
row(0).font_style = :bold
columns(0..1).borders = [:right]
row(0).columns(0..1).borders = [:bottom, :right]
end
end
prawn-table-0.2.1/manual/table/flow_and_header.rb 0000644 0000041 0000041 00000001165 12436072751 021762 0 ustar www-data www-data # encoding: utf-8
#
# If the table cannot fit on the current page it will flow to the next page just
# like free flowing text. If you would like to have the first row treated as a
# header which will be repeated on subsequent pages set the :header
# option to true.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
data = [["This row should be repeated on every new page"]]
data += [["..."]] * 30
table(data, :header => true)
end
prawn-table-0.2.1/manual/table/column_widths.rb 0000644 0000041 0000041 00000002144 12436072751 021536 0 ustar www-data www-data # encoding: utf-8
#
# Prawn will make its best attempt to identify the best width for the columns.
# If the end result isn't good, we can override it with some styling.
#
# Individual column widths can be set with the :column_widths
# option. Just provide an array with the sequential width values for the columns
# or a hash were each key-value pair represents the column 0-based index and its
# width.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
data = [ ["this is not quite as long as the others",
"here we have a line that is long but with smaller words",
"this is so very looooooooooooooooooooooooooooooong"] ]
text "Prawn trying to guess the column widths"
table(data)
move_down 20
text "Manually setting all the column widths"
table(data, :column_widths => [100, 200, 240])
move_down 20
text "Setting only the last column width"
table(data, :column_widths => {2 => 240})
end
prawn-table-0.2.1/manual/table/width.rb 0000644 0000041 0000041 00000001446 12436072751 020002 0 ustar www-data www-data # encoding: utf-8
#
# The default table width depends on the content provided. It will expand up
# to the current bounding box width to fit the content. If you want the table to
# have a fixed width no matter the content you may use the :width
# option to manually set the width.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
text "Normal width:"
table [%w[A B C]]
move_down 20
text "Fixed width:"
table([%w[A B C]], :width => 300)
move_down 20
text "Normal width:"
table([["A", "Blah " * 20, "C"]])
move_down 20
text "Fixed width:"
table([["A", "Blah " * 20, "C"]], :width => 300)
end
prawn-table-0.2.1/manual/table/before_rendering_page.rb 0000644 0000041 0000041 00000001727 12436072751 023160 0 ustar www-data www-data # encoding: utf-8
#
# Prawn::Table#initialize
takes a
# :before_rendering_page
argument, to adjust the way an entire page
# of table cells is styled. This allows you to do things like draw a border
# around the entire table as displayed on a page.
#
# The callback is passed a Cells object that is numbered based on the order of
# the cells on the page (e.g., the first row on the page is
# cells.row(0)
).
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
table([["foo", "bar", "baz"]] * 40) do |t|
t.cells.border_width = 1
t.before_rendering_page do |page|
page.row(0).border_top_width = 3
page.row(-1).border_bottom_width = 3
page.column(0).border_left_width = 3
page.column(-1).border_right_width = 3
end
end
end
prawn-table-0.2.1/manual/table/cell_text.rb 0000644 0000041 0000041 00000002734 12436072751 020647 0 ustar www-data www-data # encoding: utf-8
#
# Text cells accept the following options: align
,
# font
, font_style
, inline_format
,
# kerning
, leading
, min_font_size
,
# overflow
, rotate
, rotate_around
,
# single_line
, size
, text_color
,
# and valign
.
#
# Most of these style options are direct translations from the text methods
# styling options.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
data = [ ["Look at how the cells will look when styled", "", ""],
["They probably won't look the same", "", ""]
]
table data, :cell_style => { :font => "Times-Roman", :font_style => :italic }
move_down 20
table data, :cell_style => { :size => 18, :text_color => "346842" }
move_down 20
table [["Just some inline", "", ""],
["styles being applied here", "", ""]],
:cell_style => { :inline_format => true }
move_down 20
table [["1", "2", "3", "rotate"]], :cell_style => { :rotate => 30 }
move_down 20
table data, :cell_style => { :overflow => :shrink_to_fit, :min_font_size => 8,
:width => 60, :height => 30 }
end
prawn-table-0.2.1/manual/table/cell_dimensions.rb 0000644 0000041 0000041 00000002264 12436072751 022031 0 ustar www-data www-data # encoding: utf-8
#
# To style all the table cells you can use the :cell_style
option
# with the table methods. It accepts a hash with the cell style options.
#
# Some straightforward options are width
, height
,
# and padding
. All three accept numeric values to set the property.
#
# padding
also accepts a four number array that defines the padding
# in a CSS like syntax setting the top, right, bottom, left sequentially. The
# default is 5pt for all sides.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
data = [ ["Look at how the cells will look when styled", "", ""],
["They probably won't look the same", "", ""]
]
{:width => 160, :height => 50, :padding => 12}.each do |property, value|
text "Cell's #{property}: #{value}"
table(data, :cell_style => {property => value})
move_down 20
end
text "Padding can also be set with an array: [0, 0, 0, 30]"
table(data, :cell_style => {:padding => [0, 0, 0, 30]})
end
prawn-table-0.2.1/manual/table/content_and_subtables.rb 0000644 0000041 0000041 00000002720 12436072751 023217 0 ustar www-data www-data # encoding: utf-8
#
# There are five kinds of objects which can be put in table cells:
# 1. String: produces a text cell (the most common usage)
# 2. Prawn::Table::Cell
# 3. Prawn::Table
# 4. Array
# 5. Images
#
# Whenever a table or an array is provided as a cell, a subtable will be created
# (a table within a cell).
#
# If you'd like to provide a cell or table directly, the best way is to
# use the make_cell
and make_table
methods as they
# don't call draw
on the created object.
#
# To insert an image just provide a hash with an with an :image
key
# pointing to the image path.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
cell_1 = make_cell(:content => "this row content comes directly ")
cell_2 = make_cell(:content => "from cell objects")
two_dimensional_array = [ ["..."], ["subtable from an array"], ["..."] ]
my_table = make_table([ ["..."], ["subtable from another table"], ["..."] ])
image_path = "#{Prawn::DATADIR}/images/stef.jpg"
table([ ["just a regular row", "", "", "blah blah blah"],
[cell_1, cell_2, "", ""],
["", "", two_dimensional_array, ""],
["just another regular row", "", "", ""],
[{:image => image_path}, "", my_table, ""]])
end
prawn-table-0.2.1/GPLv2 0000644 0000041 0000041 00000043110 12436072751 014601 0 ustar www-data www-data GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Copyright (C)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Library General
Public License instead of this License.
prawn-table-0.2.1/prawn-table.gemspec 0000644 0000041 0000041 00000003124 12436072751 017546 0 ustar www-data www-data basedir = File.expand_path(File.dirname(__FILE__))
require "#{basedir}/lib/prawn/table/version"
Gem::Specification.new do |spec|
spec.name = "prawn-table"
spec.version = Prawn::Table::VERSION
spec.platform = Gem::Platform::RUBY
spec.summary = "Provides tables for PrawnPDF"
spec.files = Dir.glob("{examples,lib,spec,manual}/**/**/*") +
["prawn-table.gemspec", "Gemfile",
"COPYING", "LICENSE", "GPLv2", "GPLv3"]
spec.require_path = "lib"
spec.required_ruby_version = '>= 1.9.3'
spec.required_rubygems_version = ">= 1.3.6"
spec.test_files = Dir[ "spec/*_spec.rb" ]
spec.authors = ["Gregory Brown","Brad Ediger","Daniel Nelson","Jonathan Greenberg","James Healy", "Hartwig Brandl"]
spec.email = ["gregory.t.brown@gmail.com","brad@bradediger.com","dnelson@bluejade.com","greenberg@entryway.net","jimmy@deefa.com", "mail@hartwigbrandl.at"]
spec.rubyforge_project = "prawn"
spec.licenses = ['RUBY', 'GPL-2', 'GPL-3']
spec.add_development_dependency('prawn', '>= 1.3.0', '< 3.0.0')
spec.add_development_dependency('pdf-inspector', '~> 1.1.0')
spec.add_development_dependency('yard')
spec.add_development_dependency('rspec', '2.14.1')
spec.add_development_dependency('mocha')
spec.add_development_dependency('rake')
spec.add_development_dependency('simplecov')
spec.add_development_dependency('prawn-manual_builder', ">= 0.2.0")
spec.add_development_dependency('pdf-reader', '~>1.2')
spec.homepage = "https://github.com/prawnpdf/prawn-table"
spec.description = <