hash_maps 0.0.4 → 0.0.5
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/.gitattributes +17 -0
- data/Manifest.txt +3 -2
- data/lib/{hash_extensions.rb → hash_maps.rb} +1 -1
- data/spec/{hash_extensions_spec.rb → hash_maps_spec.rb} +0 -0
- data/spec/spec_helper.rb +1 -1
- metadata +5 -4
data/.gitattributes
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Set default behaviour, in case users don't have core.autocrlf set.
|
|
2
|
+
* text=auto
|
|
3
|
+
|
|
4
|
+
# Explicitly declare text files we want to always be normalized and converted
|
|
5
|
+
# to native line endings on checkout.
|
|
6
|
+
*.c text
|
|
7
|
+
*.h text
|
|
8
|
+
*.rb text
|
|
9
|
+
*.css text
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# Declare files that will always have CRLF line endings on checkout.
|
|
13
|
+
*.sln text eol=crlf
|
|
14
|
+
|
|
15
|
+
# Denote all files that are truly binary and should not be modified.
|
|
16
|
+
*.png binary
|
|
17
|
+
*.jpg binary
|
data/Manifest.txt
CHANGED
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hash_maps
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-02-
|
|
12
|
+
date: 2013-02-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rdoc
|
|
@@ -101,13 +101,14 @@ extra_rdoc_files:
|
|
|
101
101
|
- Manifest.txt
|
|
102
102
|
- README.txt
|
|
103
103
|
files:
|
|
104
|
+
- .gitattributes
|
|
104
105
|
- .rspec
|
|
105
106
|
- History.txt
|
|
106
107
|
- Manifest.txt
|
|
107
108
|
- README.txt
|
|
108
109
|
- Rakefile
|
|
109
|
-
- lib/
|
|
110
|
-
- spec/
|
|
110
|
+
- lib/hash_maps.rb
|
|
111
|
+
- spec/hash_maps_spec.rb
|
|
111
112
|
- spec/spec_helper.rb
|
|
112
113
|
- .gemtest
|
|
113
114
|
homepage: https://github.com/dsisnero/hash_maps.git
|