hexy 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README +2 -5
- data/Rakefile +5 -5
- metadata +8 -13
data/README
CHANGED
@@ -52,11 +52,8 @@ package.
|
|
52
52
|
|
53
53
|
gem install hexy -r
|
54
54
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
http://github.com/a2800276/hexy
|
59
|
-
|
55
|
+
alternatively, you can download +.tar.gz+ or +.zip+ archives from
|
56
|
+
Rubyforge[http://rubyforge.org/frs/?group_id=2203].
|
60
57
|
|
61
58
|
|
62
59
|
== Mail
|
data/Rakefile
CHANGED
@@ -9,9 +9,9 @@ require "rubygems"
|
|
9
9
|
|
10
10
|
SHORTNAME ='hexy' # this should be the rubyforge project name
|
11
11
|
DESC ='Utility for hexdumps'
|
12
|
-
PKG_VERSION ='0.1.
|
12
|
+
PKG_VERSION ='0.1.2'
|
13
13
|
LONG_DESC = <<END_DESC
|
14
|
-
|
14
|
+
This is a short project description.
|
15
15
|
END_DESC
|
16
16
|
RUBYFORGE_USER ='a2800276'
|
17
17
|
|
@@ -71,6 +71,9 @@ end
|
|
71
71
|
PKG_FILES = FileList['lib/**/*.rb', 'bin/**/*', 'examples/**/*', '[A-Z]*', 'test/**/*'].to_a
|
72
72
|
|
73
73
|
spec = Gem::Specification.new do |s|
|
74
|
+
s.author = "Tim Becker"
|
75
|
+
s.email = "tim@kuriositaet.de"
|
76
|
+
s.homepage = "https://github.com/a2800276/hexy"
|
74
77
|
s.platform = Gem::Platform::RUBY
|
75
78
|
s.summary = "#{SHORTNAME}: #{DESC}"
|
76
79
|
s.name = SHORTNAME
|
@@ -79,9 +82,6 @@ spec = Gem::Specification.new do |s|
|
|
79
82
|
s.requirements << "none"
|
80
83
|
s.require_path = 'lib'
|
81
84
|
s.description = LONG_DESC
|
82
|
-
s.authors = ["Tim Becker"]
|
83
|
-
s.email = "tim.becker@kuriositaet.de"
|
84
|
-
s.homepage = "http://github.com/a2800276/hexy"
|
85
85
|
end
|
86
86
|
|
87
87
|
# Adding a new GemPackageTask adds a task named `package`, which generates
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hexy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 25
|
5
4
|
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 0
|
8
7
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
8
|
+
- 2
|
9
|
+
version: 0.1.2
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- Tim Becker
|
@@ -15,12 +14,12 @@ autorequire:
|
|
15
14
|
bindir: bin
|
16
15
|
cert_chain: []
|
17
16
|
|
18
|
-
date:
|
17
|
+
date: 2012-02-16 00:00:00 +01:00
|
19
18
|
default_executable:
|
20
19
|
dependencies: []
|
21
20
|
|
22
|
-
description: "
|
23
|
-
email: tim
|
21
|
+
description: "\tThis is a short project description.\n"
|
22
|
+
email: tim@kuriositaet.de
|
24
23
|
executables: []
|
25
24
|
|
26
25
|
extensions: []
|
@@ -33,13 +32,13 @@ files:
|
|
33
32
|
- CHANGELOG
|
34
33
|
- COPYING
|
35
34
|
- LICENSE
|
36
|
-
- Rakefile
|
37
35
|
- README
|
36
|
+
- Rakefile
|
38
37
|
- THANKS
|
39
38
|
- TODO
|
40
39
|
- test/hexy_text.rb
|
41
40
|
has_rdoc: true
|
42
|
-
homepage:
|
41
|
+
homepage: https://github.com/a2800276/hexy
|
43
42
|
licenses: []
|
44
43
|
|
45
44
|
post_install_message:
|
@@ -48,27 +47,23 @@ rdoc_options: []
|
|
48
47
|
require_paths:
|
49
48
|
- lib
|
50
49
|
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
-
none: false
|
52
50
|
requirements:
|
53
51
|
- - ">="
|
54
52
|
- !ruby/object:Gem::Version
|
55
|
-
hash: 3
|
56
53
|
segments:
|
57
54
|
- 0
|
58
55
|
version: "0"
|
59
56
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
-
none: false
|
61
57
|
requirements:
|
62
58
|
- - ">="
|
63
59
|
- !ruby/object:Gem::Version
|
64
|
-
hash: 3
|
65
60
|
segments:
|
66
61
|
- 0
|
67
62
|
version: "0"
|
68
63
|
requirements:
|
69
64
|
- none
|
70
65
|
rubyforge_project:
|
71
|
-
rubygems_version: 1.3.
|
66
|
+
rubygems_version: 1.3.6
|
72
67
|
signing_key:
|
73
68
|
specification_version: 3
|
74
69
|
summary: "hexy: Utility for hexdumps"
|