ds_hash 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +15 -0
  2. data/Gemfile +15 -0
  3. data/Gemfile.lock +71 -0
  4. data/LICENSE.txt +20 -0
  5. data/README.rdoc +43 -0
  6. data/Rakefile +50 -0
  7. data/VERSION +1 -0
  8. data/doc/DsHash.html +169 -0
  9. data/doc/Gemfile.html +111 -0
  10. data/doc/Gemfile_lock.html +170 -0
  11. data/doc/Hash.html +266 -0
  12. data/doc/LICENSE_txt.html +115 -0
  13. data/doc/README_rdoc.html +138 -0
  14. data/doc/Rakefile.html +151 -0
  15. data/doc/created.rid +15 -0
  16. data/doc/doc/created_rid.html +95 -0
  17. data/doc/images/add.png +0 -0
  18. data/doc/images/arrow_up.png +0 -0
  19. data/doc/images/brick.png +0 -0
  20. data/doc/images/brick_link.png +0 -0
  21. data/doc/images/bug.png +0 -0
  22. data/doc/images/bullet_black.png +0 -0
  23. data/doc/images/bullet_toggle_minus.png +0 -0
  24. data/doc/images/bullet_toggle_plus.png +0 -0
  25. data/doc/images/date.png +0 -0
  26. data/doc/images/delete.png +0 -0
  27. data/doc/images/find.png +0 -0
  28. data/doc/images/loadingAnimation.gif +0 -0
  29. data/doc/images/macFFBgHack.png +0 -0
  30. data/doc/images/package.png +0 -0
  31. data/doc/images/page_green.png +0 -0
  32. data/doc/images/page_white_text.png +0 -0
  33. data/doc/images/page_white_width.png +0 -0
  34. data/doc/images/plugin.png +0 -0
  35. data/doc/images/ruby.png +0 -0
  36. data/doc/images/tag_blue.png +0 -0
  37. data/doc/images/tag_green.png +0 -0
  38. data/doc/images/transparent.png +0 -0
  39. data/doc/images/wrench.png +0 -0
  40. data/doc/images/wrench_orange.png +0 -0
  41. data/doc/images/zoom.png +0 -0
  42. data/doc/index.html +92 -0
  43. data/doc/js/darkfish.js +155 -0
  44. data/doc/js/jquery.js +18 -0
  45. data/doc/js/navigation.js +142 -0
  46. data/doc/js/search.js +94 -0
  47. data/doc/js/search_index.js +1 -0
  48. data/doc/js/searcher.js +228 -0
  49. data/doc/rdoc.css +595 -0
  50. data/doc/table_of_contents.html +84 -0
  51. data/ds_hash.gemspec +106 -0
  52. data/ds_hash.rb +6 -0
  53. data/lib/ds_hash/hash_core_ext.rb +31 -0
  54. data/lib/ds_hash.rb +6 -0
  55. data/spec/ds_hash_spec.rb +28 -0
  56. data/spec/spec_helper.rb +14 -0
  57. metadata +170 -0
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YWM0YjZjMTBlOTU3OGE4NDFhMTMzMjdlYTE2ZWMzMjg4OGQ1MTI1Zg==
5
+ data.tar.gz: !binary |-
6
+ OTg5MTE5NTRmOGRiZTcwYWE4YTU4OWEyZTNjYmQzODM3ODgxY2YzNg==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ NTM0MzQ2MWRiM2EyYTkxYWNjZDhhZjlhNTA0OTQ1M2EzZDMzNGNkN2RhYzI1
10
+ N2EwNzNkZTY1MzA3YjJmYjg2MTczYmQ4MWQ5YzY1N2RkYmExNGNiZWM2M2E2
11
+ ZjU0ZGZjNGE0NDYxNjQzNjBlNTU4MTE3NDRiYTM1M2U5NGY2NDU=
12
+ data.tar.gz: !binary |-
13
+ NmEzNDcyM2NmNzY1ZDVkOTBjMGQwYmMxYzdiYjllMWQ0NzEyNGRmNDFkMjVh
14
+ YjA0MzYxMTRiNzU2MTJjZGVmN2FiYWQ0YzBjNzJkY2ZkZDdjNWExMGNlMjI1
15
+ NTM4MjBhOGNlMzkwNDM2YzU2NjRhMmYzZjllOWYwYWU3MjZhNTA=
data/Gemfile ADDED
@@ -0,0 +1,15 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "rspec", "~> 2.8.0"
10
+ gem "rdoc", "~> 3.12"
11
+ gem "bundler", "~> 1.0"
12
+ gem "jeweler", "~> 1.8.7"
13
+ # gem "rcov", ">= 0"
14
+ gem "debugger"
15
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,71 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ addressable (2.3.5)
5
+ builder (3.2.2)
6
+ columnize (0.3.6)
7
+ debugger (1.6.2)
8
+ columnize (>= 0.3.1)
9
+ debugger-linecache (~> 1.2.0)
10
+ debugger-ruby_core_source (~> 1.2.3)
11
+ debugger-linecache (1.2.0)
12
+ debugger-ruby_core_source (1.2.4)
13
+ diff-lcs (1.1.3)
14
+ faraday (0.8.8)
15
+ multipart-post (~> 1.2.0)
16
+ git (1.2.6)
17
+ github_api (0.10.1)
18
+ addressable
19
+ faraday (~> 0.8.1)
20
+ hashie (>= 1.2)
21
+ multi_json (~> 1.4)
22
+ nokogiri (~> 1.5.2)
23
+ oauth2
24
+ hashie (2.0.5)
25
+ highline (1.6.20)
26
+ httpauth (0.2.0)
27
+ jeweler (1.8.8)
28
+ builder
29
+ bundler (~> 1.0)
30
+ git (>= 1.2.5)
31
+ github_api (= 0.10.1)
32
+ highline (>= 1.6.15)
33
+ nokogiri (= 1.5.10)
34
+ rake
35
+ rdoc
36
+ json (1.8.1)
37
+ jwt (0.1.8)
38
+ multi_json (>= 1.5)
39
+ multi_json (1.8.2)
40
+ multi_xml (0.5.5)
41
+ multipart-post (1.2.0)
42
+ nokogiri (1.5.10)
43
+ oauth2 (0.9.2)
44
+ faraday (~> 0.8)
45
+ httpauth (~> 0.2)
46
+ jwt (~> 0.1.4)
47
+ multi_json (~> 1.0)
48
+ multi_xml (~> 0.5)
49
+ rack (~> 1.2)
50
+ rack (1.5.2)
51
+ rake (10.1.0)
52
+ rdoc (3.12.2)
53
+ json (~> 1.4)
54
+ rspec (2.8.0)
55
+ rspec-core (~> 2.8.0)
56
+ rspec-expectations (~> 2.8.0)
57
+ rspec-mocks (~> 2.8.0)
58
+ rspec-core (2.8.0)
59
+ rspec-expectations (2.8.0)
60
+ diff-lcs (~> 1.1.2)
61
+ rspec-mocks (2.8.0)
62
+
63
+ PLATFORMS
64
+ ruby
65
+
66
+ DEPENDENCIES
67
+ bundler (~> 1.0)
68
+ debugger
69
+ jeweler (~> 1.8.7)
70
+ rdoc (~> 3.12)
71
+ rspec (~> 2.8.0)
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2013 Nardele Salomon
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,43 @@
1
+ = DsHash
2
+
3
+ A Ruby Hash class extensions.
4
+
5
+ == Install
6
+
7
+ gem install ds_hash
8
+
9
+ == Learning by example
10
+
11
+ _Hash_.+compact+
12
+
13
+ { a: 1, b: nil }.compact == { a: 1 } # remove nil values
14
+ { a: 1, nil: 1 }.compact == { a: 1 } # remove nil keys
15
+
16
+ _Hash_.+compact!+
17
+
18
+ vide: Hash.compact
19
+
20
+ _Hash_.+deep_dup+
21
+
22
+ hash = { :a => { :b => 'b' } }
23
+ dup = hash.deep_dup # Returns a deep copy of hash (like rails active support)
24
+ dup[:a][:c] = 'c'
25
+
26
+ hash[:a][:c] #=> nil
27
+ dup[:a][:c] #=> "c"
28
+
29
+ == Contributing to ds_hash
30
+
31
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
32
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
33
+ * Fork the project.
34
+ * Start a feature/bugfix branch.
35
+ * Commit and push until you are happy with your contribution.
36
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
37
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
38
+
39
+ == Copyright
40
+
41
+ Copyright (c) 2013 nardele salomon. See LICENSE.txt for
42
+ further details.
43
+
data/Rakefile ADDED
@@ -0,0 +1,50 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "ds_hash"
18
+ gem.homepage = "http://github.com/del.soft.99@gmail.com/ds_hash"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Hash class extensions}
21
+ gem.description = %Q{Hash class extensions}
22
+ gem.email = "noliveira@telelistas.net"
23
+ gem.author = "nardele salomon"
24
+ # dependencies defined in Gemfile
25
+ end
26
+
27
+ Jeweler::RubygemsDotOrgTasks.new
28
+
29
+ require 'rspec/core'
30
+ require 'rspec/core/rake_task'
31
+ RSpec::Core::RakeTask.new(:spec) do |spec|
32
+ spec.pattern = FileList['spec/**/*_spec.rb']
33
+ end
34
+
35
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
36
+ spec.pattern = 'spec/**/*_spec.rb'
37
+ spec.rcov = true
38
+ end
39
+
40
+ task :default => :spec
41
+
42
+ require 'rdoc/task'
43
+ Rake::RDocTask.new do |rdoc|
44
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
45
+
46
+ rdoc.rdoc_dir = 'rdoc'
47
+ rdoc.title = "ds_hash version"
48
+ rdoc.rdoc_files.include('README*')
49
+ rdoc.rdoc_files.include('lib/**/*.rb')
50
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
data/doc/DsHash.html ADDED
@@ -0,0 +1,169 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>module DsHash - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "./";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="module">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="./index.html">Home</a>
28
+ <a href="./table_of_contents.html#classes">Classes</a>
29
+ <a href="./table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+
47
+
48
+ <div id="file-metadata">
49
+ <nav id="file-list-section" class="section">
50
+ <h3 class="section-header">Defined In</h3>
51
+ <ul>
52
+ <li>ds_hash.rb
53
+ <li>lib/ds_hash.rb
54
+ <li>lib/ds_hash/version.rb
55
+ </ul>
56
+ </nav>
57
+
58
+
59
+ </div>
60
+
61
+ <div id="class-metadata">
62
+
63
+
64
+
65
+
66
+
67
+ </div>
68
+
69
+ <div id="project-metadata">
70
+ <nav id="fileindex-section" class="section project-section">
71
+ <h3 class="section-header">Pages</h3>
72
+
73
+ <ul>
74
+
75
+ <li class="file"><a href="./Gemfile.html">Gemfile</a>
76
+
77
+ <li class="file"><a href="./Gemfile_lock.html">Gemfile.lock</a>
78
+
79
+ <li class="file"><a href="./LICENSE_txt.html">LICENSE</a>
80
+
81
+ <li class="file"><a href="./README_rdoc.html">README</a>
82
+
83
+ <li class="file"><a href="./Rakefile.html">Rakefile</a>
84
+
85
+ <li class="file"><a href="./doc/created_rid.html">created.rid</a>
86
+
87
+ </ul>
88
+ </nav>
89
+
90
+ <nav id="classindex-section" class="section project-section">
91
+ <h3 class="section-header">Class and Module Index</h3>
92
+
93
+ <ul class="link-list">
94
+
95
+ <li><a href="./DsHash.html">DsHash</a>
96
+
97
+ <li><a href="./Hash.html">Hash</a>
98
+
99
+ </ul>
100
+ </nav>
101
+
102
+ </div>
103
+ </nav>
104
+
105
+ <div id="documentation">
106
+ <h1 class="module">module DsHash</h1>
107
+
108
+ <div id="description" class="description">
109
+
110
+ </div><!-- description -->
111
+
112
+
113
+
114
+
115
+ <section id="5Buntitled-5D" class="documentation-section">
116
+
117
+
118
+
119
+
120
+
121
+ <!-- Constants -->
122
+ <section id="constants-list" class="section">
123
+ <h3 class="section-header">Constants</h3>
124
+ <dl>
125
+
126
+ <dt id="BUILD">BUILD
127
+
128
+ <dd class="description">
129
+
130
+
131
+ <dt id="MAJOR">MAJOR
132
+
133
+ <dd class="description">
134
+
135
+
136
+ <dt id="MINOR">MINOR
137
+
138
+ <dd class="description">
139
+
140
+
141
+ <dt id="PATCH">PATCH
142
+
143
+ <dd class="description">
144
+
145
+
146
+ <dt id="VERSION">VERSION
147
+
148
+ <dd class="description">
149
+
150
+
151
+ </dl>
152
+ </section>
153
+
154
+
155
+
156
+
157
+ <!-- Methods -->
158
+
159
+ </section><!-- 5Buntitled-5D -->
160
+
161
+ </div><!-- documentation -->
162
+
163
+
164
+ <footer id="validator-badges">
165
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
166
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.1.
167
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
168
+ </footer>
169
+
data/doc/Gemfile.html ADDED
@@ -0,0 +1,111 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>Gemfile - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "./";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
21
+
22
+
23
+ <body class="file">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="./index.html">Home</a>
28
+ <a href="./table_of_contents.html#classes">Classes</a>
29
+ <a href="./table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+
47
+
48
+ <div id="project-metadata">
49
+ <nav id="fileindex-section" class="section project-section">
50
+ <h3 class="section-header">Pages</h3>
51
+
52
+ <ul>
53
+
54
+ <li class="file"><a href="./Gemfile.html">Gemfile</a>
55
+
56
+ <li class="file"><a href="./Gemfile_lock.html">Gemfile.lock</a>
57
+
58
+ <li class="file"><a href="./LICENSE_txt.html">LICENSE</a>
59
+
60
+ <li class="file"><a href="./README_rdoc.html">README</a>
61
+
62
+ <li class="file"><a href="./Rakefile.html">Rakefile</a>
63
+
64
+ <li class="file"><a href="./doc/created_rid.html">created.rid</a>
65
+
66
+ </ul>
67
+ </nav>
68
+
69
+ <nav id="classindex-section" class="section project-section">
70
+ <h3 class="section-header">Class and Module Index</h3>
71
+
72
+ <ul class="link-list">
73
+
74
+ <li><a href="./DsHash.html">DsHash</a>
75
+
76
+ <li><a href="./Hash.html">Hash</a>
77
+
78
+ </ul>
79
+ </nav>
80
+
81
+ </div>
82
+ </nav>
83
+
84
+ <div id="documentation" class="description">
85
+
86
+ <p>source “<a href="http://rubygems.org">rubygems.org</a>” # Add dependencies
87
+ required to use your gem here. # Example: # gem “activesupport”, “&gt;=
88
+ 2.3.5”</p>
89
+
90
+ <p># Add dependencies to develop your gem here. # Include everything needed to
91
+ run rake, tests, features, etc. group :development do</p>
92
+
93
+ <pre>gem &quot;rspec&quot;, &quot;~&gt; 2.8.0&quot;
94
+ gem &quot;rdoc&quot;, &quot;~&gt; 3.12&quot;
95
+ gem &quot;bundler&quot;, &quot;~&gt; 1.0&quot;
96
+ gem &quot;jeweler&quot;, &quot;~&gt; 1.8.7&quot;
97
+ # gem &quot;rcov&quot;, &quot;&gt;= 0&quot;
98
+ gem &quot;debugger&quot;</pre>
99
+
100
+ <p>end</p>
101
+
102
+ </div>
103
+
104
+
105
+
106
+ <footer id="validator-badges">
107
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
108
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.1.
109
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
110
+ </footer>
111
+
@@ -0,0 +1,170 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>Gemfile.lock - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "./";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
21
+
22
+
23
+ <body class="file">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="./index.html">Home</a>
28
+ <a href="./table_of_contents.html#classes">Classes</a>
29
+ <a href="./table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+
47
+
48
+ <div id="project-metadata">
49
+ <nav id="fileindex-section" class="section project-section">
50
+ <h3 class="section-header">Pages</h3>
51
+
52
+ <ul>
53
+
54
+ <li class="file"><a href="./Gemfile.html">Gemfile</a>
55
+
56
+ <li class="file"><a href="./Gemfile_lock.html">Gemfile.lock</a>
57
+
58
+ <li class="file"><a href="./LICENSE_txt.html">LICENSE</a>
59
+
60
+ <li class="file"><a href="./README_rdoc.html">README</a>
61
+
62
+ <li class="file"><a href="./Rakefile.html">Rakefile</a>
63
+
64
+ <li class="file"><a href="./doc/created_rid.html">created.rid</a>
65
+
66
+ </ul>
67
+ </nav>
68
+
69
+ <nav id="classindex-section" class="section project-section">
70
+ <h3 class="section-header">Class and Module Index</h3>
71
+
72
+ <ul class="link-list">
73
+
74
+ <li><a href="./DsHash.html">DsHash</a>
75
+
76
+ <li><a href="./Hash.html">Hash</a>
77
+
78
+ </ul>
79
+ </nav>
80
+
81
+ </div>
82
+ </nav>
83
+
84
+ <div id="documentation" class="description">
85
+
86
+ <p>GEM</p>
87
+
88
+ <pre>remote: http://rubygems.org/
89
+ specs:
90
+ addressable (2.3.5)
91
+ builder (3.2.2)
92
+ columnize (0.3.6)
93
+ debugger (1.6.2)
94
+ columnize (&gt;= 0.3.1)
95
+ debugger-linecache (~&gt; 1.2.0)
96
+ debugger-ruby_core_source (~&gt; 1.2.3)
97
+ debugger-linecache (1.2.0)
98
+ debugger-ruby_core_source (1.2.4)
99
+ diff-lcs (1.1.3)
100
+ faraday (0.8.8)
101
+ multipart-post (~&gt; 1.2.0)
102
+ git (1.2.6)
103
+ github_api (0.10.1)
104
+ addressable
105
+ faraday (~&gt; 0.8.1)
106
+ hashie (&gt;= 1.2)
107
+ multi_json (~&gt; 1.4)
108
+ nokogiri (~&gt; 1.5.2)
109
+ oauth2
110
+ hashie (2.0.5)
111
+ highline (1.6.20)
112
+ httpauth (0.2.0)
113
+ jeweler (1.8.8)
114
+ builder
115
+ bundler (~&gt; 1.0)
116
+ git (&gt;= 1.2.5)
117
+ github_api (= 0.10.1)
118
+ highline (&gt;= 1.6.15)
119
+ nokogiri (= 1.5.10)
120
+ rake
121
+ rdoc
122
+ json (1.8.1)
123
+ jwt (0.1.8)
124
+ multi_json (&gt;= 1.5)
125
+ multi_json (1.8.2)
126
+ multi_xml (0.5.5)
127
+ multipart-post (1.2.0)
128
+ nokogiri (1.5.10)
129
+ oauth2 (0.9.2)
130
+ faraday (~&gt; 0.8)
131
+ httpauth (~&gt; 0.2)
132
+ jwt (~&gt; 0.1.4)
133
+ multi_json (~&gt; 1.0)
134
+ multi_xml (~&gt; 0.5)
135
+ rack (~&gt; 1.2)
136
+ rack (1.5.2)
137
+ rake (10.1.0)
138
+ rdoc (3.12.2)
139
+ json (~&gt; 1.4)
140
+ rspec (2.8.0)
141
+ rspec-core (~&gt; 2.8.0)
142
+ rspec-expectations (~&gt; 2.8.0)
143
+ rspec-mocks (~&gt; 2.8.0)
144
+ rspec-core (2.8.0)
145
+ rspec-expectations (2.8.0)
146
+ diff-lcs (~&gt; 1.1.2)
147
+ rspec-mocks (2.8.0)</pre>
148
+
149
+ <p>PLATFORMS</p>
150
+
151
+ <pre>ruby</pre>
152
+
153
+ <p>DEPENDENCIES</p>
154
+
155
+ <pre>bundler (~&gt; 1.0)
156
+ debugger
157
+ jeweler (~&gt; 1.8.7)
158
+ rdoc (~&gt; 3.12)
159
+ rspec (~&gt; 2.8.0)</pre>
160
+
161
+ </div>
162
+
163
+
164
+
165
+ <footer id="validator-badges">
166
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
167
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.1.
168
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
169
+ </footer>
170
+