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 +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +0 -2
- data/lib/footing/hash.rb +1 -1
- data/lib/footing/version.rb +1 -1
- metadata +3 -4
- data/footing.gemspec +0 -22
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a152cfe8660c6db89105f8bc2e801b9a11a8890d
|
|
4
|
+
data.tar.gz: 973289123e55ac3c23d50e0af382cb064b97ece5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d8ffdfca7c7e2718fc14791ecb6e7322797514a4e9a31a3c50b8b7a2e21a3c2c90b20556b8902d2527b14cd5dc00679663ad406b5526fb06cd318d20524840f
|
|
7
|
+
data.tar.gz: 9d8e872f26e4d5d32a086c736730edbc9d8f56af02638e181f12fae1e352218c616a4ea9fdd3d45322526d19a362b2ce55daf6ee73f3a6b63ec818395245a5f1
|
data/Gemfile.lock
CHANGED
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
|
data/lib/footing/hash.rb
CHANGED
data/lib/footing/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
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
|
data/footing.gemspec
DELETED
|
@@ -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
|