ohash 0.0.1 → 0.0.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/HISTORY.markdown +11 -0
- data/Manifest.txt +4 -0
- data/{README.txt → README.markdown} +13 -7
- data/Rakefile +27 -0
- data/VERSION +1 -0
- data/ohash.gemspec +45 -0
- metadata +17 -48
- data.tar.gz.sig +0 -0
- data/History.txt +0 -4
- metadata.gz.sig +0 -0
data/HISTORY.markdown
ADDED
data/Manifest.txt
ADDED
@@ -1,13 +1,16 @@
|
|
1
|
-
|
1
|
+
ohash
|
2
|
+
=====
|
2
3
|
|
3
|
-
*
|
4
|
+
* http://github.com/karottenreibe/ohash
|
4
5
|
|
5
|
-
|
6
|
+
Description
|
7
|
+
-----------
|
6
8
|
|
7
9
|
OpenHash (short: ohash) is a simple, enhanced hash structure with the direct
|
8
10
|
member access of OpenStruct, but without all the restrictions.
|
9
11
|
|
10
|
-
|
12
|
+
Synopsis
|
13
|
+
--------
|
11
14
|
|
12
15
|
require 'rubygems'
|
13
16
|
require 'ohash'
|
@@ -23,11 +26,14 @@ member access of OpenStruct, but without all the restrictions.
|
|
23
26
|
o.merge!({:goo => 23})
|
24
27
|
o.goo #=> 23
|
25
28
|
|
26
|
-
|
29
|
+
Installing
|
30
|
+
----------
|
27
31
|
|
28
|
-
*
|
32
|
+
* sudo gem install karottenreibe-ohash --source http://gems.github.com
|
33
|
+
* sudo gem install ohash
|
29
34
|
|
30
|
-
|
35
|
+
License
|
36
|
+
-------
|
31
37
|
|
32
38
|
/*---- DON'T PANIC License 1.1 -----------
|
33
39
|
|
data/Rakefile
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'jeweler'
|
2
|
+
|
3
|
+
task :release do
|
4
|
+
sh "vim HISTORY.markdown"
|
5
|
+
sh "vim README.markdown"
|
6
|
+
sh "git commit -a -m 'prerelease adjustments'; true"
|
7
|
+
end
|
8
|
+
|
9
|
+
Jeweler::Tasks.new do |gem|
|
10
|
+
gem.name = "ohash"
|
11
|
+
gem.summary = gem.description = "A simple, enhanced hash structure with the direct member access of OpenStruct, but without all the restrictions."
|
12
|
+
gem.email = "karottenreibe@gmail.com"
|
13
|
+
gem.homepage = "http://github.com/karottenreibe/vim-syntax"
|
14
|
+
gem.authors = ["Fabian Streitel"]
|
15
|
+
gem.rubyforge_project = 'ohash'
|
16
|
+
end
|
17
|
+
|
18
|
+
Jeweler::RubyforgeTasks.new
|
19
|
+
|
20
|
+
require 'rake/rdoctask'
|
21
|
+
Rake::RDocTask.new do |rdoc|
|
22
|
+
rdoc.rdoc_dir = 'rdoc'
|
23
|
+
rdoc.title = 'ohash'
|
24
|
+
rdoc.rdoc_files.include(%w{README.markdown LICENSE.txt HISTORY.markdown})
|
25
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
26
|
+
end
|
27
|
+
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.2
|
data/ohash.gemspec
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{ohash}
|
8
|
+
s.version = "0.0.2"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Fabian Streitel"]
|
12
|
+
s.date = %q{2009-08-05}
|
13
|
+
s.description = %q{A simple, enhanced hash structure with the direct member access of OpenStruct, but without all the restrictions.}
|
14
|
+
s.email = %q{karottenreibe@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE.txt",
|
17
|
+
"README.markdown"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
"HISTORY.markdown",
|
21
|
+
"LICENSE.txt",
|
22
|
+
"Manifest.txt",
|
23
|
+
"README.markdown",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"lib/ohash.rb",
|
27
|
+
"ohash.gemspec"
|
28
|
+
]
|
29
|
+
s.homepage = %q{http://github.com/karottenreibe/vim-syntax}
|
30
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
31
|
+
s.require_paths = ["lib"]
|
32
|
+
s.rubyforge_project = %q{ohash}
|
33
|
+
s.rubygems_version = %q{1.3.4}
|
34
|
+
s.summary = %q{A simple, enhanced hash structure with the direct member access of OpenStruct, but without all the restrictions.}
|
35
|
+
|
36
|
+
if s.respond_to? :specification_version then
|
37
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
38
|
+
s.specification_version = 3
|
39
|
+
|
40
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
41
|
+
else
|
42
|
+
end
|
43
|
+
else
|
44
|
+
end
|
45
|
+
end
|
metadata
CHANGED
@@ -1,74 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ohash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fabian Streitel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
|
-
cert_chain:
|
11
|
-
- |
|
12
|
-
-----BEGIN CERTIFICATE-----
|
13
|
-
MIIDPDCCAiSgAwIBAgIBADANBgkqhkiG9w0BAQUFADBEMRYwFAYDVQQDDA1rYXJv
|
14
|
-
dHRlbnJlaWJlMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/IsZAEZ
|
15
|
-
FgNjb20wHhcNMDkwNTA1MjAxMTE2WhcNMTAwNTA1MjAxMTE2WjBEMRYwFAYDVQQD
|
16
|
-
DA1rYXJvdHRlbnJlaWJlMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJ
|
17
|
-
k/IsZAEZFgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDOsc84
|
18
|
-
PKHQeZvHhPQg2aU/wdYsrLIMLa8cGM3MSkyPsqIlGsxBUrf5lZ5yG3mBmJ8ZYE5x
|
19
|
-
BITTpHaTJ8gKa1CS8xPaJrXfoVevJlJ+v+rVyh8tmJtkURLQYXgeDyYu3eYXgSwC
|
20
|
-
m2Add6pJHqIahzCwhoOFpL4FqWnS92Wuy9+m0/BCl24sLsfF9gkO1RTTtg5hSbVD
|
21
|
-
nIjgd93H63Bi+9oIAPcVKHjEq59jOeMOQ2Xpn2/Xu9Kewm58qnX77TEsoCaH3KSG
|
22
|
-
5uU7jLpvTsrAwgpjMyo95VDf8WZ4w4gerXS0TkQqiJCFGoL2hYXnAVScePOKy7/c
|
23
|
-
JCHfubfg66XQPtwVAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0G
|
24
|
-
A1UdDgQWBBTmln6vFmGxmMAqlps5OOEQV6JpPDANBgkqhkiG9w0BAQUFAAOCAQEA
|
25
|
-
R4adrapjUePzH1OjgDWQItPIu2D+2vapjN5rHfW2iyaFTP0DSvDcwAyam4Gy4g47
|
26
|
-
oAMvqZLN/Fk9/pjDJK0G1suDLiC1CAbZyF1SH0ty0x3OsqprM3qRNQhViFOFF+tG
|
27
|
-
WlXAEvCrvpSGuddbjA9v9A3Dvwmg+9wq06XQviTgXs2Jvf9DC/QKw31Kbm1uxF7e
|
28
|
-
ea+/ZXhbYi/6ZCifLOdERB9R6d4c6CjvncB5O3PsNBEJJyZlId+5Cjoa5zIr5ZRV
|
29
|
-
skRklVhmwIBdRWmDs55zR67GyUpB5zcaCmI6bJJdYznJfhB7H2MRjNa5fR37/R81
|
30
|
-
VTOC4p362V8lN9C3G+M8FA==
|
31
|
-
-----END CERTIFICATE-----
|
10
|
+
cert_chain: []
|
32
11
|
|
33
|
-
date: 2009-
|
12
|
+
date: 2009-08-05 00:00:00 +02:00
|
34
13
|
default_executable:
|
35
|
-
dependencies:
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
version_requirement:
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
requirements:
|
42
|
-
- - ">="
|
43
|
-
- !ruby/object:Gem::Version
|
44
|
-
version: 2.3.2
|
45
|
-
version:
|
46
|
-
description: |-
|
47
|
-
OpenHash (short: ohash) is a simple, enhanced hash structure with the direct
|
48
|
-
member access of OpenStruct, but without all the restrictions.
|
49
|
-
email:
|
50
|
-
- karottenreibe@gmail.com
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: A simple, enhanced hash structure with the direct member access of OpenStruct, but without all the restrictions.
|
17
|
+
email: karottenreibe@gmail.com
|
51
18
|
executables: []
|
52
19
|
|
53
20
|
extensions: []
|
54
21
|
|
55
22
|
extra_rdoc_files:
|
56
|
-
- History.txt
|
57
23
|
- LICENSE.txt
|
58
|
-
- README.
|
24
|
+
- README.markdown
|
59
25
|
files:
|
60
|
-
-
|
26
|
+
- HISTORY.markdown
|
61
27
|
- LICENSE.txt
|
62
|
-
-
|
28
|
+
- Manifest.txt
|
29
|
+
- README.markdown
|
30
|
+
- Rakefile
|
31
|
+
- VERSION
|
63
32
|
- lib/ohash.rb
|
33
|
+
- ohash.gemspec
|
64
34
|
has_rdoc: true
|
65
|
-
homepage: http://github.com/karottenreibe/
|
35
|
+
homepage: http://github.com/karottenreibe/vim-syntax
|
66
36
|
licenses: []
|
67
37
|
|
68
38
|
post_install_message:
|
69
39
|
rdoc_options:
|
70
|
-
- --
|
71
|
-
- README.txt
|
40
|
+
- --charset=UTF-8
|
72
41
|
require_paths:
|
73
42
|
- lib
|
74
43
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -89,6 +58,6 @@ rubyforge_project: ohash
|
|
89
58
|
rubygems_version: 1.3.4
|
90
59
|
signing_key:
|
91
60
|
specification_version: 3
|
92
|
-
summary:
|
61
|
+
summary: A simple, enhanced hash structure with the direct member access of OpenStruct, but without all the restrictions.
|
93
62
|
test_files: []
|
94
63
|
|
data.tar.gz.sig
DELETED
Binary file
|
data/History.txt
DELETED
metadata.gz.sig
DELETED
Binary file
|