impuri 0.9.0 → 0.11.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.
- checksums.yaml +4 -4
- data/CHANGELOG +24 -3
- data/{ImpURI.gemspec → impuri.gemspec} +2 -3
- data/lib/ImpURI/VERSION.rb +1 -1
- data/lib/{ImpURI.rb → impuri.rb} +1 -1
- data/test/ImpURI/class_methods.rb +439 -463
- data/test/ImpURI/instance_methods.rb +413 -439
- metadata +3 -17
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: impuri
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- thoran
|
|
@@ -23,20 +23,6 @@ dependencies:
|
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
25
|
version: '6.0'
|
|
26
|
-
- !ruby/object:Gem::Dependency
|
|
27
|
-
name: minitest-global_expectations
|
|
28
|
-
requirement: !ruby/object:Gem::Requirement
|
|
29
|
-
requirements:
|
|
30
|
-
- - "~>"
|
|
31
|
-
- !ruby/object:Gem::Version
|
|
32
|
-
version: '1.0'
|
|
33
|
-
type: :development
|
|
34
|
-
prerelease: false
|
|
35
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
-
requirements:
|
|
37
|
-
- - "~>"
|
|
38
|
-
- !ruby/object:Gem::Version
|
|
39
|
-
version: '1.0'
|
|
40
26
|
description: This is a hand-written non-validating parser for URI's and ssh/scp almost
|
|
41
27
|
URI resource descriptors, which is intended to be cleaner and simpler than Ruby's
|
|
42
28
|
standard URI.
|
|
@@ -47,9 +33,9 @@ extra_rdoc_files: []
|
|
|
47
33
|
files:
|
|
48
34
|
- CHANGELOG
|
|
49
35
|
- Gemfile
|
|
50
|
-
- ImpURI.gemspec
|
|
51
36
|
- README.md
|
|
52
37
|
- TODO.txt
|
|
38
|
+
- impuri.gemspec
|
|
53
39
|
- lib/Array/all_but_first.rb
|
|
54
40
|
- lib/Array/all_but_last.rb
|
|
55
41
|
- lib/Array/blankQ.rb
|
|
@@ -59,7 +45,6 @@ files:
|
|
|
59
45
|
- lib/FalseClass/blankQ.rb
|
|
60
46
|
- lib/Hash/blankQ.rb
|
|
61
47
|
- lib/Hash/x_www_form_urlencode.rb
|
|
62
|
-
- lib/ImpURI.rb
|
|
63
48
|
- lib/ImpURI/VERSION.rb
|
|
64
49
|
- lib/Module/alias_methods.rb
|
|
65
50
|
- lib/NilClass/blankQ.rb
|
|
@@ -70,6 +55,7 @@ files:
|
|
|
70
55
|
- lib/Thoran/String/Urlencode/urlencode.rb
|
|
71
56
|
- lib/TrueClass/blankQ.rb
|
|
72
57
|
- lib/_meta/blankQ.rb
|
|
58
|
+
- lib/impuri.rb
|
|
73
59
|
- test/ImpURI.rb
|
|
74
60
|
- test/ImpURI/class_methods.rb
|
|
75
61
|
- test/ImpURI/instance_methods.rb
|