tonsser_hash_utils 1.0.6 → 1.0.7

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c0ca8eee5e33287735e7ff0dd2378f23c6ae751429d7446a329f39ac90889cb8
4
- data.tar.gz: f93694d8ffa36d6dd3d5685399c0010b984583318e4bc4d7fc5c413ba3a29586
3
+ metadata.gz: fda51f9686ea5ee379c8142b2bc82d07e2b5c1da0f377be6733a6aedabed90c3
4
+ data.tar.gz: 6272902b8f7939cde94cddde0a47a70cf8f9dddc4b3696c93d1a926bb0aa96db
5
5
  SHA512:
6
- metadata.gz: 316f000845afcd76cbf374498feba119f39bbd13796c6e1cba6ed6189b813428e7869370fd9e1a78abb5c1be0600922f161a1b4c4967cd958da20ec1877297dc
7
- data.tar.gz: a8b21521b44c1b4b6e15c775e9ddfb747a1be2a9eba443fee10ebd06e75d92b9f03756af1c5ffffab2ab92909c85cd5c2a0cb87284e3bba716c9c78d5032908a
6
+ metadata.gz: 045bd922b11053b035c8707bcca0a6a83929ecbc6b027b2e840fb3e8d48859c5e6ae96d4f8cdb0d5935db58035f6ebb9fddeda70b33f77dba9bf7233ba390edd
7
+ data.tar.gz: 83f0a8cb86f49e3b5b05c692d8bb572f8df81d2b2f6f56b00c89ccf3e159c742c3d8446fc5a5b971979a3e553b413c2fd78194a534223d0f6224d994bee3994f
@@ -1,3 +1,3 @@
1
1
  module TonsserHashUtils
2
- VERSION = "1.0.6"
2
+ VERSION = "1.0.7"
3
3
  end
@@ -87,7 +87,6 @@ describe HashWithQuickAccess do
87
87
 
88
88
  it "doesn't memoize Hash methods" do
89
89
  pp (Hash.new.methods - Object.new.methods).sort
90
- raise
91
90
 
92
91
  hash = HashWithQuickAccess.new(a: 1)
93
92
 
@@ -13,6 +13,8 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = "http://github.com/tonsser/tonsser_hash_utils"
14
14
  spec.license = "MIT"
15
15
 
16
+ spec.required_ruby_version = ">= 2.2.0"
17
+
16
18
  spec.files = `git ls-files -z`.split("\x0")
17
19
  spec.executables = spec.files.grep(/^bin/) { |f| File.basename(f) }
18
20
  spec.test_files = spec.files.grep(/^(test|spec|features)/)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tonsser_hash_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Pedersen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-02 00:00:00.000000000 Z
11
+ date: 2020-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -69,19 +69,16 @@ dependencies:
69
69
  description: ''
70
70
  email:
71
71
  - david@tonsser.com
72
- executables:
73
- - rspec
72
+ executables: []
74
73
  extensions: []
75
74
  extra_rdoc_files: []
76
75
  files:
77
76
  - ".gitignore"
78
77
  - ".rspec"
79
- - ".ruby-version"
80
78
  - Gemfile
81
79
  - LICENSE.txt
82
80
  - README.md
83
81
  - Rakefile
84
- - bin/rspec
85
82
  - lib/deep_hash.rb
86
83
  - lib/hash_builder.rb
87
84
  - lib/hash_merger.rb
@@ -106,15 +103,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
106
103
  requirements:
107
104
  - - ">="
108
105
  - !ruby/object:Gem::Version
109
- version: '0'
106
+ version: 2.2.0
110
107
  required_rubygems_version: !ruby/object:Gem::Requirement
111
108
  requirements:
112
109
  - - ">="
113
110
  - !ruby/object:Gem::Version
114
111
  version: '0'
115
112
  requirements: []
116
- rubyforge_project:
117
- rubygems_version: 2.7.3
113
+ rubygems_version: 3.1.2
118
114
  signing_key:
119
115
  specification_version: 4
120
116
  summary: A collection of classes for dealing with hashes
@@ -1 +0,0 @@
1
- 2.2.0
data/bin/rspec DELETED
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
- #
4
- # This file was generated by Bundler.
5
- #
6
- # The application 'rspec' is installed as part of a gem, and
7
- # this file is here to facilitate running it.
8
- #
9
-
10
- require "pathname"
11
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
- Pathname.new(__FILE__).realpath)
13
-
14
- require "rubygems"
15
- require "bundler/setup"
16
-
17
- load Gem.bin_path("rspec-core", "rspec")