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 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
@@ -1,9 +1,10 @@
1
+ .gitattributes
1
2
  .rspec
2
3
  History.txt
3
4
  Manifest.txt
4
5
  README.txt
5
6
  Rakefile
6
- lib/hash_extensions.rb
7
- spec/hash_extensions_spec.rb
7
+ lib/hash_maps.rb
8
+ spec/hash_maps_spec.rb
8
9
  spec/spec_helper.rb
9
10
 
@@ -1,5 +1,5 @@
1
1
  module HashExtensions
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
 
4
4
 
5
5
  def map_kv
File without changes
data/spec/spec_helper.rb CHANGED
@@ -6,7 +6,7 @@
6
6
  # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
7
7
  require 'rspec'
8
8
 
9
- require 'hash_extensions'
9
+ require 'hash_maps'
10
10
 
11
11
  RSpec.configure do |config|
12
12
  config.treat_symbols_as_metadata_keys_with_true_values = true
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
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-18 00:00:00.000000000 Z
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/hash_extensions.rb
110
- - spec/hash_extensions_spec.rb
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