nguyen 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a44dcf2a059382fd666d8f50513b80b75443e931
4
- data.tar.gz: 1e8f257e22bc2db5671889e7dc743bfe8af9dd9c
3
+ metadata.gz: 87249f3df0276b081523efa08c46dd8feb43db2f
4
+ data.tar.gz: d872b66be7d38fbd3f20f3a053b5cb6b260dda36
5
5
  SHA512:
6
- metadata.gz: 7b9d0ae6cb1b05de9f3d950ea503ad72b856281c3585974aead3756baf7fbcee220d161cc8c4f57ec075dc48ef0be8cc357627dea26f0e701a8e8ff27830f7c9
7
- data.tar.gz: 07ade59b2fd802ea844b5fe3a683ac1a3c25a4fbccc368c294764fb3a89c35b14cde35c98bb1dce927a290a60ec6ccb6cb56d772cb07afe27e03b6f98bf37a1d
6
+ metadata.gz: 0d1e6f777d4603591fc638e70af122cf1913c0aa7df534833062d653ba869bf8696b30a96e25658bc00f202dc5e241adae4acc76728629d117e2259db8bc78b2
7
+ data.tar.gz: bef8d65f125f49319afb248023a9be1eda31a44f5679f101d2e22d619309ffe172376a37ed2d3ad64ca323c90a639b96a74702b9e3bc8f8ab3457de6252a0df6
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  (The MIT License)
2
2
 
3
- Copyright (c) 2013 Trung Lê
3
+ Copyright (c) 2014 Trung Lê
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Nguyên the PDF Field Merger
1
+ # Nguyên the PDF Field Merger
2
2
 
3
3
  A very lightweight library that fill PDF forms using XFDF/FDF with pdftk
4
4
 
@@ -6,8 +6,8 @@ You could download pdftk at http://www.accesspdf.com/pdftk/
6
6
 
7
7
  Nguyên is a fork of Jens Krämer's pdf-forms with addition of filling forms with XFDF feature.
8
8
 
9
- [![Build Status](https://secure.travis-ci.org/joneslee85/nguyen.png)](http://travis-ci.org/joneslee85/nguyen)
10
- [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/joneslee85/nguyen)
9
+ [![Build Status](https://secure.travis-ci.org/ruby-journal/nguyen.png)](http://travis-ci.org/ruby-journal/nguyen)
10
+ [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/ruby-journal/nguyen)
11
11
 
12
12
  ## EXAMPLE:
13
13
 
@@ -57,7 +57,7 @@ pdftk.fill_form('/path/to/form.pdf', 'myform.pdf', xfdf)
57
57
 
58
58
  ## Source Code:
59
59
 
60
- git clone http://github.com/joneslee85/nguyen.git
60
+ git clone http://github.com/ruby-journal/nguyen.git
61
61
 
62
62
  ## Contribution:
63
63
 
@@ -29,7 +29,7 @@ module Nguyen
29
29
  end
30
30
 
31
31
  # pdftk.read '/path/to/form.pdf'
32
- # returns an instance of PdfForms::Pdf representing the given template
32
+ # returns an instance of Nguyen::Pdf representing the given template
33
33
  def read(path)
34
34
  Pdf.new path, self
35
35
  end
@@ -0,0 +1,3 @@
1
+ module Nguyen
2
+ VERSION = '1.0.2'
3
+ end
metadata CHANGED
@@ -1,45 +1,46 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nguyen
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Trung Lê
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-20 00:00:00.000000000 Z
11
+ date: 2014-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.5.6
19
+ version: '1.5'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.5.6
26
+ version: '1.5'
27
27
  description: Forms for Nguyên is Ruby library that could merge PDF fields by XFDF/FDF
28
28
  via pdftk.
29
- email: joneslee85@gmail.com
29
+ email: trung.le@ruby-journal.com
30
30
  executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
+ - CONTRIBUTING.md
35
+ - LICENSE
36
+ - README.md
37
+ - lib/nguyen.rb
34
38
  - lib/nguyen/fdf.rb
35
39
  - lib/nguyen/pdf.rb
36
40
  - lib/nguyen/pdftk_wrapper.rb
41
+ - lib/nguyen/version.rb
37
42
  - lib/nguyen/xfdf.rb
38
- - lib/nguyen.rb
39
- - LICENSE
40
- - CONTRIBUTING.md
41
- - README.md
42
- homepage: http://github.com/joneslee85/nguyen
43
+ homepage: http://github.com/ruby-journal/nguyen
43
44
  licenses:
44
45
  - MIT
45
46
  metadata: {}
@@ -49,18 +50,18 @@ require_paths:
49
50
  - lib
50
51
  required_ruby_version: !ruby/object:Gem::Requirement
51
52
  requirements:
52
- - - '>='
53
+ - - ">="
53
54
  - !ruby/object:Gem::Version
54
55
  version: 1.9.3
55
56
  required_rubygems_version: !ruby/object:Gem::Requirement
56
57
  requirements:
57
- - - '>='
58
+ - - ">="
58
59
  - !ruby/object:Gem::Version
59
60
  version: 1.8.25
60
61
  requirements:
61
62
  - pdtk 1.44.1 or newer
62
63
  rubyforge_project:
63
- rubygems_version: 2.1.8
64
+ rubygems_version: 2.2.2
64
65
  signing_key:
65
66
  specification_version: 4
66
67
  summary: Fill out PDF forms by XFDF/FDF via pdftk.