footing 1.0.1 → 1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e66b564326f970428910e2be5bd1d662ef34bfbc
4
- data.tar.gz: 015758361e2e8bbaa11af55463600a71f64d6afb
3
+ metadata.gz: a152cfe8660c6db89105f8bc2e801b9a11a8890d
4
+ data.tar.gz: 973289123e55ac3c23d50e0af382cb064b97ece5
5
5
  SHA512:
6
- metadata.gz: f1eaea2d976f77af0181df11cb0aa505ae3cf8bb5fd80dd68664921c8a6c5a303bc153a10b4af0d702451647eabc8b028ffbb6458f039578821f4f286b97b4b3
7
- data.tar.gz: bf2537037bf8556cb851d692aae8bd69f0ede809a0831f908d075628163da54456ccea5d8eedee33c7b8d052c1c0795010990f6060694541bab8aa53a8391949
6
+ metadata.gz: 7d8ffdfca7c7e2718fc14791ecb6e7322797514a4e9a31a3c50b8b7a2e21a3c2c90b20556b8902d2527b14cd5dc00679663ad406b5526fb06cd318d20524840f
7
+ data.tar.gz: 9d8e872f26e4d5d32a086c736730edbc9d8f56af02638e181f12fae1e352218c616a4ea9fdd3d45322526d19a362b2ce55daf6ee73f3a6b63ec818395245a5f1
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- footing (1.0.1)
4
+ footing (1.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -77,4 +77,4 @@ DEPENDENCIES
77
77
  rake
78
78
 
79
79
  BUNDLED WITH
80
- 1.11.2
80
+ 1.12.5
data/README.md CHANGED
@@ -12,8 +12,6 @@ An [ActiveSupport](https://github.com/rails/rails/tree/master/activesupport)
12
12
  style utility library that employs [delegation](https://en.wikipedia.org/wiki/Delegation_(programming))
13
13
  instead of [monkey patching](https://en.wikipedia.org/wiki/Monkey_patch).
14
14
 
15
- __NOTE:__ _The project is structured so that it can support explicit monkey patching if you prefer to use that strategy._
16
-
17
15
  ## Immutabilty
18
16
 
19
17
  Footing employs some principles of [immutability](https://en.wikipedia.org/wiki/Immutable_object) that are common in
@@ -86,7 +86,7 @@ module Footing
86
86
  elsif value.is_a?(::Array)
87
87
  value.each do |val|
88
88
  if val.is_a?(Footing::Hash)
89
- value.filter!(keys, replacement: replacement)
89
+ val.filter!(keys, replacement: replacement)
90
90
  end
91
91
  end
92
92
  else
@@ -1,3 +1,3 @@
1
1
  module Footing
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: footing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Hopkins
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-16 00:00:00.000000000 Z
11
+ date: 2016-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -64,7 +64,6 @@ files:
64
64
  - LICENSE.txt
65
65
  - README.md
66
66
  - Rakefile
67
- - footing.gemspec
68
67
  - lib/footing.rb
69
68
  - lib/footing/hash.rb
70
69
  - lib/footing/object.rb
@@ -89,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
88
  version: '0'
90
89
  requirements: []
91
90
  rubyforge_project:
92
- rubygems_version: 2.4.5.1
91
+ rubygems_version: 2.5.1
93
92
  signing_key:
94
93
  specification_version: 4
95
94
  summary: An ActiveSupport style utility library that employs delegation instead of
@@ -1,22 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path("../lib", __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "footing/version"
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "footing"
8
- spec.license = "MIT"
9
- spec.version = Footing::VERSION
10
- spec.homepage = "https://github.com/hopsoft/footing"
11
- spec.summary = "An ActiveSupport style utility library that employs delegation instead of monkey patching"
12
-
13
- spec.authors = ["Nathan Hopkins"]
14
- spec.email = ["natehop@gmail.com"]
15
-
16
- spec.files = Dir["lib/**/*.rb", "[A-Z]*"]
17
- spec.test_files = Dir["lib/**/*.rb"]
18
-
19
- spec.add_development_dependency "rake"
20
- spec.add_development_dependency "pry-test"
21
- spec.add_development_dependency "coveralls"
22
- end