Class: PDFKit::Source
- Inherits:
-
Object
- Object
- PDFKit::Source
- Defined in:
- lib/pdfkit/source.rb
Constant Summary collapse
- SOURCE_FROM_STDIN =
'-'
Instance Method Summary collapse
- #file? ⇒ Boolean
- #html? ⇒ Boolean
-
#initialize(url_file_or_html) ⇒ Source
constructor
A new instance of Source.
- #to_input_for_command ⇒ Object
- #to_s ⇒ Object
- #url? ⇒ Boolean
Constructor Details
#initialize(url_file_or_html) ⇒ Source
Returns a new instance of Source.
8 9 10 |
# File 'lib/pdfkit/source.rb', line 8 def initialize(url_file_or_html) @source = url_file_or_html end |
Instance Method Details
#file? ⇒ Boolean
16 17 18 |
# File 'lib/pdfkit/source.rb', line 16 def file? @is_file ||= @source.kind_of?(File) || @source.kind_of?(Tempfile) end |
#html? ⇒ Boolean
20 21 22 |
# File 'lib/pdfkit/source.rb', line 20 def html? @is_html ||= !(url? || file?) end |
#to_input_for_command ⇒ Object
24 25 26 27 28 29 30 31 32 |
# File 'lib/pdfkit/source.rb', line 24 def to_input_for_command if file? @source.path elsif url? %{"#{shell_safe_url}"} else SOURCE_FROM_STDIN end end |
#to_s ⇒ Object
34 35 36 |
# File 'lib/pdfkit/source.rb', line 34 def to_s file? ? @source.path : @source end |
#url? ⇒ Boolean
12 13 14 |
# File 'lib/pdfkit/source.rb', line 12 def url? @is_url ||= @source.is_a?(String) && @source.match(/\Ahttp/) end |