pl-commerce 0.1.0
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.
- data/History.txt +5 -0
- data/Manifest.txt +11 -0
- data/README.txt +37 -0
- data/Rakefile +17 -0
- data/lib/pl-commerce.rb +3 -0
- data/lib/pl-commerce/ir_codes.rb +737 -0
- data/lib/pl-commerce/nip.rb +122 -0
- data/lib/pl-commerce/pesel.rb +169 -0
- data/test/test_ir_codes.rb +19 -0
- data/test/test_nip.rb +66 -0
- data/test/test_pesel.rb +137 -0
- metadata +66 -0
metadata
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.0
|
3
|
+
specification_version: 1
|
4
|
+
name: pl-commerce
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.0
|
7
|
+
date: 2007-05-13 00:00:00 +01:00
|
8
|
+
summary: "Polish commerce utility classes: PESEL, NIP, REGON validation and more helpful things for polish web-pages"
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: Mateusz.Szczap@gmail.com
|
12
|
+
homepage: http://rubyforge.org/projects/pl-commerce/
|
13
|
+
rubyforge_project: pl-commerce
|
14
|
+
description: Validation of popular Polish codes, such as PESEL, NIP, REGON, post codes, car registration numbers, credit card numbers and anything really that can be helpful in advanced commercial application for Polish customers.
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Mateusz Szczap
|
31
|
+
files:
|
32
|
+
- History.txt
|
33
|
+
- Manifest.txt
|
34
|
+
- README.txt
|
35
|
+
- Rakefile
|
36
|
+
- lib/pl-commerce.rb
|
37
|
+
- lib/pl-commerce/pesel.rb
|
38
|
+
- lib/pl-commerce/nip.rb
|
39
|
+
- lib/pl-commerce/ir_codes.rb
|
40
|
+
- test/test_pesel.rb
|
41
|
+
- test/test_nip.rb
|
42
|
+
- test/test_ir_codes.rb
|
43
|
+
test_files:
|
44
|
+
- test/test_ir_codes.rb
|
45
|
+
- test/test_nip.rb
|
46
|
+
- test/test_pesel.rb
|
47
|
+
rdoc_options: []
|
48
|
+
|
49
|
+
extra_rdoc_files: []
|
50
|
+
|
51
|
+
executables: []
|
52
|
+
|
53
|
+
extensions: []
|
54
|
+
|
55
|
+
requirements: []
|
56
|
+
|
57
|
+
dependencies:
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: hoe
|
60
|
+
version_requirement:
|
61
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 1.2.0
|
66
|
+
version:
|