forked from gettalong/hexapdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
121 lines (104 loc) · 3.7 KB
/
Rakefile
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
require 'rake/testtask'
require 'rake/clean'
require 'rubygems/package_task'
$:.unshift('lib')
require 'hexapdf'
Rake::TestTask.new do |t|
t.libs << 'test'
t.test_files = FileList['test/**/*.rb']
t.verbose = false
t.warning = true
end
namespace :dev do
PKG_FILES = FileList.new([
'Rakefile',
'LICENSE', 'agpl-3.0.txt',
'README.md',
'VERSION', 'CONTRIBUTERS',
'bin/*',
'lib/**/*.rb',
'man/man1/hexapdf.1',
'data/**/*',
'examples/*',
'test/**/*'
])
CLOBBER << "man/man1/hexapdf.1"
file 'man/man1/hexapdf.1' => ['man/man1/hexapdf.1.md'] do
puts "Generating hexapdf man page"
system "ronn --pipe -r man/man1/hexapdf.1.md > man/man1/hexapdf.1"
end
CLOBBER << "VERSION"
file 'VERSION' do
puts "Generating VERSION file"
File.open('VERSION', 'w+') {|file| file.write(HexaPDF::VERSION + "\n")}
end
CLOBBER << 'CONTRIBUTERS'
file 'CONTRIBUTERS' do
puts "Generating CONTRIBUTERS file"
`echo " Count Name" > CONTRIBUTERS`
`echo "======= ====" >> CONTRIBUTERS`
`git log | grep ^Author: | sed 's/^Author: //' | sort | uniq -c | sort -nr >> CONTRIBUTERS`
end
spec = Gem::Specification.new do |s|
s.name = 'hexapdf'
s.version = HexaPDF::VERSION
s.summary = "HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby"
s.description = "HexaPDF is a pure Ruby library with an accompanying application for " \
"working with PDF files.\n\nIn short, it allows creating new PDF files, manipulating " \
"existing PDF files, merging multiple PDF files into one, extracting meta information, " \
"text, images and files from PDF files, securing PDF files by encrypting them and " \
"optimizing PDF files for smaller file size or other criteria.\n\nHexaPDF was designed " \
"with ease of use and performance in mind. It uses lazy loading and lazy computing when " \
"possible and tries to produce small PDF files by default."
s.license = 'AGPL-3.0'
s.files = PKG_FILES.to_a
s.require_path = 'lib'
s.executables = ['hexapdf']
s.default_executable = 'hexapdf'
s.add_dependency('cmdparse', '~> 3.0', '>= 3.0.1')
s.add_development_dependency('ronn', '~> 0.7')
s.author = 'Thomas Leitner'
s.email = '[email protected]'
s.homepage = "http://hexapdf.gettalong.org"
end
Gem::PackageTask.new(spec) do |pkg|
pkg.need_zip = true
pkg.need_tar = true
end
desc "Upload the release to Rubygems"
task publish_files: [:package] do
sh "gem push pkg/hexapdf-#{HexaPDF::VERSION}.gem"
puts 'done'
end
desc 'Release HexaPDF version ' + HexaPDF::VERSION
task release: [:clobber, :package, :publish_files]
CLOBBER << 'hexapdf.gemspec'
task :gemspec do
puts "Generating Gemspec"
contents = spec.to_ruby
File.open("hexapdf.gemspec", 'w+') {|f| f.puts(contents)}
end
CODING_LINE = "# -*- encoding: utf-8 -*-\n"
desc "Insert/Update copyright notice"
task :update_copyright do
license = File.readlines(File.join(__dir__, 'LICENSE')).map do |l|
l.strip.empty? ? "#\n" : "# #{l}"
end.join
statement = CODING_LINE + "#\n#--\n# This file is part of HexaPDF.\n#\n" + license + "#++\n"
inserted = false
Dir["lib/**/*.rb"].each do |file|
unless File.read(file).start_with?(statement)
inserted = true
puts "Updating file #{file}"
old = File.read(file)
unless old.gsub!(/\A#{Regexp.escape(CODING_LINE)}#\n#--.*?\n#\+\+\n/m, statement)
old.gsub!(/\A(#{Regexp.escape(CODING_LINE)})?/, statement)
end
File.write(file, old)
end
end
puts "Look through the above mentioned files and correct all problems" if inserted
end
end
task clobber: 'dev:clobber'
task default: 'test'