File: cover.rb

package info (click to toggle)
ruby-prawn 2.2.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,320 kB
  • sloc: ruby: 15,654; sh: 43; makefile: 20
file content (43 lines) | stat: -rw-r--r-- 1,129 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Prawn manual how to read this manual page.

require_relative 'example_helper'

filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
  move_down 200

  image "#{Prawn::DATADIR}/images/prawn.png",
    scale: 0.9,
    at: [10, cursor]

  formatted_text_box(
    [{ text: "Prawn\n", styles: [:bold], size: 100 }],
    at: [170, cursor - 50]
  )

  formatted_text_box(
    [{ text: 'by example', font: 'Courier', size: 60 }],
    at: [170, cursor - 160]
  )

  last_update = Time.at(ENV['BUILD_EPOCH'].to_i) if ENV['BUILD_EPOCH']
  if Dir.exist?("#{Prawn::BASEDIR}/.git")
    commit = `git show --pretty=%h`
    git_commit = "git commit: #{commit.lines.first}"
    last_update ||= Time.at(`git log -1 --pretty='%ct'`.to_i)
  else
    git_commit = ''
    last_update ||= Time.at(`git log -1 --pretty='%ct'`.to_i)
  end

  unless ENV['CI']
    formatted_text_box(
      [{
        text: "Last Update: #{last_update.utc.strftime("%Y-%m-%d")}\n" \
          "Prawn Version: #{Prawn::VERSION}\n#{git_commit}",
        size: 12
      }],
      at: [390, cursor - 620]
    )
  end
end