ptools 1.2.2-universal-mingw32
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/.gemtest +0 -0
- data/CHANGES +121 -0
- data/MANIFEST +17 -0
- data/README +65 -0
- data/Rakefile +130 -0
- data/lib/ptools.rb +429 -0
- data/ptools.gemspec +30 -0
- data/test/test_binary.rb +47 -0
- data/test/test_constants.rb +38 -0
- data/test/test_head.rb +51 -0
- data/test/test_image.rb +43 -0
- data/test/test_is_sparse.rb +52 -0
- data/test/test_middle.rb +61 -0
- data/test/test_nlconvert.rb +99 -0
- data/test/test_null.rb +40 -0
- data/test/test_tail.rb +56 -0
- data/test/test_touch.rb +55 -0
- data/test/test_wc.rb +76 -0
- data/test/test_whereis.rb +98 -0
- data/test/test_which.rb +113 -0
- metadata +129 -0
metadata
ADDED
@@ -0,0 +1,129 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ptools
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 2
|
9
|
+
- 2
|
10
|
+
version: 1.2.2
|
11
|
+
platform: universal-mingw32
|
12
|
+
authors:
|
13
|
+
- Daniel J. Berger
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2012-04-06 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: test-unit
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 31
|
29
|
+
segments:
|
30
|
+
- 2
|
31
|
+
- 4
|
32
|
+
- 0
|
33
|
+
version: 2.4.0
|
34
|
+
type: :development
|
35
|
+
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: win32-file
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 3
|
45
|
+
segments:
|
46
|
+
- 0
|
47
|
+
- 5
|
48
|
+
- 4
|
49
|
+
version: 0.5.4
|
50
|
+
type: :runtime
|
51
|
+
version_requirements: *id002
|
52
|
+
description: " The ptools (power tools) library provides several handy methods to\n Ruby's core File class, such as File.which for finding executables,\n File.null to return the null device on your platform, and so on.\n"
|
53
|
+
email: djberg96@gmail.com
|
54
|
+
executables: []
|
55
|
+
|
56
|
+
extensions: []
|
57
|
+
|
58
|
+
extra_rdoc_files:
|
59
|
+
- README
|
60
|
+
- CHANGES
|
61
|
+
- MANIFEST
|
62
|
+
files:
|
63
|
+
- CHANGES
|
64
|
+
- lib/ptools.rb
|
65
|
+
- MANIFEST
|
66
|
+
- ptools.gemspec
|
67
|
+
- Rakefile
|
68
|
+
- README
|
69
|
+
- test/test_binary.rb
|
70
|
+
- test/test_constants.rb
|
71
|
+
- test/test_head.rb
|
72
|
+
- test/test_image.rb
|
73
|
+
- test/test_is_sparse.rb
|
74
|
+
- test/test_middle.rb
|
75
|
+
- test/test_nlconvert.rb
|
76
|
+
- test/test_null.rb
|
77
|
+
- test/test_tail.rb
|
78
|
+
- test/test_touch.rb
|
79
|
+
- test/test_wc.rb
|
80
|
+
- test/test_whereis.rb
|
81
|
+
- test/test_which.rb
|
82
|
+
- .gemtest
|
83
|
+
homepage: http://www.rubyforge.org/projects/shards
|
84
|
+
licenses:
|
85
|
+
- Artistic 2.0
|
86
|
+
post_install_message:
|
87
|
+
rdoc_options: []
|
88
|
+
|
89
|
+
require_paths:
|
90
|
+
- lib
|
91
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
92
|
+
none: false
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
hash: 3
|
97
|
+
segments:
|
98
|
+
- 0
|
99
|
+
version: "0"
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
|
+
none: false
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
hash: 3
|
106
|
+
segments:
|
107
|
+
- 0
|
108
|
+
version: "0"
|
109
|
+
requirements: []
|
110
|
+
|
111
|
+
rubyforge_project: shards
|
112
|
+
rubygems_version: 1.8.10
|
113
|
+
signing_key:
|
114
|
+
specification_version: 3
|
115
|
+
summary: Extra methods for the File class
|
116
|
+
test_files:
|
117
|
+
- test/test_binary.rb
|
118
|
+
- test/test_constants.rb
|
119
|
+
- test/test_head.rb
|
120
|
+
- test/test_image.rb
|
121
|
+
- test/test_is_sparse.rb
|
122
|
+
- test/test_middle.rb
|
123
|
+
- test/test_nlconvert.rb
|
124
|
+
- test/test_null.rb
|
125
|
+
- test/test_tail.rb
|
126
|
+
- test/test_touch.rb
|
127
|
+
- test/test_wc.rb
|
128
|
+
- test/test_whereis.rb
|
129
|
+
- test/test_which.rb
|