randgen 1.0.3 → 1.0.4
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/extconf.rb +1 -1
- data/{test_randgen.rb → test/test_randgen.rb} +0 -0
- metadata +10 -9
- data/randgen.gemspec +0 -31
data/extconf.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 1.0.
|
|
8
|
+
- 4
|
|
9
|
+
version: 1.0.4
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Juha-Jarmo Heinonen
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date:
|
|
17
|
+
date: 2011-01-02 00:00:00 +02:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies: []
|
|
20
20
|
|
|
@@ -34,18 +34,18 @@ files:
|
|
|
34
34
|
- README.rdoc
|
|
35
35
|
- extconf.rb
|
|
36
36
|
- randgen.c
|
|
37
|
-
-
|
|
38
|
-
- test_randgen.rb
|
|
37
|
+
- test/test_randgen.rb
|
|
39
38
|
has_rdoc: true
|
|
40
39
|
homepage: http://www.riassence.org/
|
|
41
40
|
licenses: []
|
|
42
41
|
|
|
43
42
|
post_install_message:
|
|
44
|
-
rdoc_options:
|
|
45
|
-
|
|
43
|
+
rdoc_options:
|
|
44
|
+
- --charset=UTF-8
|
|
46
45
|
require_paths:
|
|
47
46
|
- randgen
|
|
48
47
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
48
|
+
none: false
|
|
49
49
|
requirements:
|
|
50
50
|
- - ">="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
@@ -55,6 +55,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
55
55
|
- 6
|
|
56
56
|
version: 1.8.6
|
|
57
57
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
|
+
none: false
|
|
58
59
|
requirements:
|
|
59
60
|
- - ">="
|
|
60
61
|
- !ruby/object:Gem::Version
|
|
@@ -64,9 +65,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
64
65
|
requirements: []
|
|
65
66
|
|
|
66
67
|
rubyforge_project:
|
|
67
|
-
rubygems_version: 1.3.
|
|
68
|
+
rubygems_version: 1.3.7
|
|
68
69
|
signing_key:
|
|
69
70
|
specification_version: 3
|
|
70
71
|
summary: Riassence RandGen
|
|
71
72
|
test_files:
|
|
72
|
-
- test_randgen.rb
|
|
73
|
+
- test/test_randgen.rb
|
data/randgen.gemspec
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
Gem::Specification.new do |s|
|
|
2
|
-
s.name = 'randgen'
|
|
3
|
-
s.author = 'Juha-Jarmo Heinonen'
|
|
4
|
-
s.email = 'o@rsence.org'
|
|
5
|
-
s.version = '1.0.3'
|
|
6
|
-
s.date = '2010-02-26'
|
|
7
|
-
s.homepage = 'http://www.riassence.org/'
|
|
8
|
-
s.summary = 'Riassence RandGen'
|
|
9
|
-
s.has_rdoc = true
|
|
10
|
-
s.require_path = 'randgen'
|
|
11
|
-
s.description = <<END
|
|
12
|
-
Simple C extension that produces variable-length random ascii-safe strings quickly.
|
|
13
|
-
This used to be a fixed part of the Riassence Framework, but it's distributed as a separate gem now.
|
|
14
|
-
END
|
|
15
|
-
s.files = %w(
|
|
16
|
-
License.txt
|
|
17
|
-
README.rdoc
|
|
18
|
-
extconf.rb
|
|
19
|
-
randgen.c
|
|
20
|
-
randgen.gemspec
|
|
21
|
-
test_randgen.rb
|
|
22
|
-
)
|
|
23
|
-
s.files.reject! { |fn| fn.include? ".svn" }
|
|
24
|
-
s.files.reject! { |fn| fn.include? ".git" }
|
|
25
|
-
s.test_file = 'test_randgen.rb'
|
|
26
|
-
s.required_ruby_version = '>= 1.8.6'
|
|
27
|
-
s.extensions = [
|
|
28
|
-
'extconf.rb'
|
|
29
|
-
]
|
|
30
|
-
end
|
|
31
|
-
|