itext 2.0.7-jruby
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +21 -0
- data/README +7 -0
- data/Rakefile +31 -0
- data/lib/iText-2.0.7.jar +0 -0
- data/lib/itext.rb +7 -0
- metadata +45 -0
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
From the iText website: http://www.lowagie.com/iText/
|
2
|
+
|
3
|
+
License Agreement
|
4
|
+
=================
|
5
|
+
iText is published under 2 different licenses: MPL and LGPL.
|
6
|
+
|
7
|
+
If you are a new user of iText, MPL is recommended (without the LGPL). MPL is less strict than LGPL. Please read the MPL license agreement before downloading and/or using iText.
|
8
|
+
|
9
|
+
LGPL is maintained for backward compatibility only. If you choose the LGPL, you need to mention the MPL as an alternative license. Please read the LGPL license agreement for more info.
|
10
|
+
|
11
|
+
This library is free and I want it to stay free: you can use it without paying a fee; you don't need to register anywhere. Only keep in mind that agreeing with the license is crucial to protect the software, its developers and its users. This library is distributed in the hope that it will be useful, but WITHOUT any warranty. If you don't like free software, don't (ab)use it!
|
12
|
+
|
13
|
+
(MPL is the Mozilla Public License, found at http://www.lowagie.com/iText/MPL-1.1.txt.)
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README
ADDED
data/Rakefile
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake/gempackagetask'
|
3
|
+
|
4
|
+
GEM = "itext"
|
5
|
+
GEM_VERSION = "2.0.7"
|
6
|
+
AUTHOR = "Clinton R. Nixon"
|
7
|
+
EMAIL = "crnixon@gmail.com"
|
8
|
+
HOMEPAGE = "http://clintonrnixon.net/projects/jruby-gems/"
|
9
|
+
SUMMARY = "A gem that packages the iText library for Java."
|
10
|
+
|
11
|
+
spec = Gem::Specification.new do |s|
|
12
|
+
s.name = GEM
|
13
|
+
s.version = GEM_VERSION
|
14
|
+
s.platform = 'jruby'
|
15
|
+
s.has_rdoc = true
|
16
|
+
s.extra_rdoc_files = ["README", "LICENSE"]
|
17
|
+
s.summary = SUMMARY
|
18
|
+
s.description = s.summary
|
19
|
+
s.author = AUTHOR
|
20
|
+
s.email = EMAIL
|
21
|
+
s.homepage = HOMEPAGE
|
22
|
+
s.require_path = 'lib'
|
23
|
+
s.files = %w(LICENSE README Rakefile) + Dir.glob("lib/*")
|
24
|
+
s.rubyforge_project = 'wolfe'
|
25
|
+
end
|
26
|
+
|
27
|
+
Rake::GemPackageTask.new(spec) do |pkg|
|
28
|
+
pkg.gem_spec = spec
|
29
|
+
end
|
30
|
+
|
31
|
+
task :default => :repackage
|
data/lib/iText-2.0.7.jar
ADDED
Binary file
|
data/lib/itext.rb
ADDED
metadata
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
homepage: http://clintonrnixon.net/projects/jruby-gems/
|
3
|
+
extensions: []
|
4
|
+
executables: []
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 2.0.7
|
7
|
+
post_install_message:
|
8
|
+
date: 2007-12-25 05:00:00 +00:00
|
9
|
+
files:
|
10
|
+
- LICENSE
|
11
|
+
- README
|
12
|
+
- Rakefile
|
13
|
+
- lib/iText-2.0.7.jar
|
14
|
+
- lib/itext.rb
|
15
|
+
rubygems_version: 0.9.4
|
16
|
+
rdoc_options: []
|
17
|
+
signing_key:
|
18
|
+
cert_chain:
|
19
|
+
name: itext
|
20
|
+
has_rdoc: true
|
21
|
+
platform: jruby
|
22
|
+
summary: A gem that packages the iText library for Java.
|
23
|
+
default_executable:
|
24
|
+
bindir: bin
|
25
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
26
|
+
version:
|
27
|
+
requirements:
|
28
|
+
- - '>'
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: 0.0.0
|
31
|
+
require_paths:
|
32
|
+
- lib
|
33
|
+
specification_version: 1
|
34
|
+
test_files: []
|
35
|
+
dependencies: []
|
36
|
+
description: A gem that packages the iText library for Java.
|
37
|
+
authors:
|
38
|
+
- Clinton R. Nixon
|
39
|
+
email: crnixon@gmail.com
|
40
|
+
extra_rdoc_files:
|
41
|
+
- README
|
42
|
+
- LICENSE
|
43
|
+
requirements: []
|
44
|
+
rubyforge_project: wolfe
|
45
|
+
autorequire:
|