pathname2 1.6.3-x86-mswin32-60
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +120 -0
- data/MANIFEST +11 -0
- data/README +109 -0
- data/Rakefile +41 -0
- data/benchmarks/bench_pathname.rb +127 -0
- data/benchmarks/bench_plus.rb +34 -0
- data/examples/example_pathname.rb +25 -0
- data/lib/pathname2.rb +1108 -0
- data/pathname2.gemspec +37 -0
- data/test/test_pathname.rb +484 -0
- data/test/test_pathname_windows.rb +666 -0
- metadata +96 -0
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pathname2
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.6.3
|
5
|
+
platform: x86-mswin32-60
|
6
|
+
authors:
|
7
|
+
- Daniel J. Berger
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-10-02 00:00:00 -06:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: facade
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.0.4
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: test-unit
|
27
|
+
type: :development
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.0.3
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: windows-pr
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 0.8.6
|
44
|
+
version:
|
45
|
+
description: " The pathname2 library provides an implementation of the Pathname\n class different from the one that ships as part of the Ruby standard\n library. It is a subclass of String, though several methods have been\n overridden to better fit a path context. In addition, it supports file\n URL's as paths, provides additional methods for Windows paths, and\n handles UNC paths on Windows properly. See the README file for more\n details.\n"
|
46
|
+
email: djberg96@gmail.com
|
47
|
+
executables: []
|
48
|
+
|
49
|
+
extensions: []
|
50
|
+
|
51
|
+
extra_rdoc_files:
|
52
|
+
- README
|
53
|
+
- CHANGES
|
54
|
+
- MANIFEST
|
55
|
+
files:
|
56
|
+
- benchmarks/bench_pathname.rb
|
57
|
+
- benchmarks/bench_plus.rb
|
58
|
+
- CHANGES
|
59
|
+
- examples/example_pathname.rb
|
60
|
+
- lib/pathname2.rb
|
61
|
+
- MANIFEST
|
62
|
+
- pathname2.gemspec
|
63
|
+
- Rakefile
|
64
|
+
- README
|
65
|
+
- test/test_pathname.rb
|
66
|
+
- test/test_pathname_windows.rb
|
67
|
+
has_rdoc: true
|
68
|
+
homepage: http://www.rubyforge.org/projects/shards
|
69
|
+
licenses:
|
70
|
+
- Artistic 2.0
|
71
|
+
post_install_message:
|
72
|
+
rdoc_options: []
|
73
|
+
|
74
|
+
require_paths:
|
75
|
+
- lib
|
76
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: "0"
|
81
|
+
version:
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: "0"
|
87
|
+
version:
|
88
|
+
requirements: []
|
89
|
+
|
90
|
+
rubyforge_project: shards
|
91
|
+
rubygems_version: 1.3.5
|
92
|
+
signing_key:
|
93
|
+
specification_version: 3
|
94
|
+
summary: An alternate implementation of the Pathname class
|
95
|
+
test_files:
|
96
|
+
- test/test_pathname_windows.rb
|