inplace 1.2.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.
- data/.gitignore +18 -0
- data/BSDmakefile +18 -0
- data/Gemfile +4 -0
- data/LICENSE +24 -0
- data/README.md +247 -0
- data/Rakefile +8 -0
- data/bin/inplace +10 -0
- data/inplace.gemspec +20 -0
- data/lib/inplace.rb +555 -0
- data/lib/inplace/version.rb +1 -0
- data/man/inplace.1 +254 -0
- data/test/test.sh +292 -0
- metadata +77 -0
metadata
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: inplace
|
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: ruby
|
12
|
+
authors:
|
13
|
+
- Akinori MUSHA
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2012-03-05 00:00:00 Z
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: A command line utility that edits files in-place through given filter commands
|
22
|
+
email:
|
23
|
+
- knu@idaemons.org
|
24
|
+
executables:
|
25
|
+
- inplace
|
26
|
+
extensions: []
|
27
|
+
|
28
|
+
extra_rdoc_files: []
|
29
|
+
|
30
|
+
files:
|
31
|
+
- .gitignore
|
32
|
+
- BSDmakefile
|
33
|
+
- Gemfile
|
34
|
+
- LICENSE
|
35
|
+
- README.md
|
36
|
+
- Rakefile
|
37
|
+
- bin/inplace
|
38
|
+
- inplace.gemspec
|
39
|
+
- lib/inplace.rb
|
40
|
+
- lib/inplace/version.rb
|
41
|
+
- man/inplace.1
|
42
|
+
- test/test.sh
|
43
|
+
homepage: https://github.com/knu/inplace
|
44
|
+
licenses: []
|
45
|
+
|
46
|
+
post_install_message:
|
47
|
+
rdoc_options: []
|
48
|
+
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
hash: 3
|
57
|
+
segments:
|
58
|
+
- 0
|
59
|
+
version: "0"
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
hash: 3
|
66
|
+
segments:
|
67
|
+
- 0
|
68
|
+
version: "0"
|
69
|
+
requirements: []
|
70
|
+
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 1.8.15
|
73
|
+
signing_key:
|
74
|
+
specification_version: 3
|
75
|
+
summary: Inplace(1) is a command line utility that edits files in-place through given filter commands. e.g. inplace 'sort' file1 file2 file3
|
76
|
+
test_files:
|
77
|
+
- test/test.sh
|