leather-satchel 0.1.0 → 0.1.1
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/lib/leather/satchel.rb +3 -4
- data/lib/leather/satchel/error.rb +10 -0
- data/lib/leather/satchel/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9c531f034f0e6cf6c139f9eaa51b5280df321a2ce8ec370cc5f5429a1cfb9402
|
|
4
|
+
data.tar.gz: 0a05b7cb604130890d73f43db41b8b1459b4b588f2e375cb99c5afbf4b94fcc9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8b4a4a05edab3a71ce914619af0d35b73348d51e1914eb763cd816deeeb4f8218b9110308d934b20f12f1230737b09742d93519e9399eaa3ddd923f4ef077c7
|
|
7
|
+
data.tar.gz: 65d7be73ad4b1bcf280ac3554df72cab3847432744257a66ae11b0e591f8b6ac2dd2cdf076a946af3758ce51cdcbc607e345381d26134c2fc1acfbe6099ed698
|
data/lib/leather/satchel.rb
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require 'leather/satchel/version'
|
|
4
|
-
require 'leather/satchel/error/unknown_identifier_error'
|
|
5
|
-
require 'leather/satchel/error/invalid_factory_error'
|
|
6
|
-
|
|
7
3
|
module Leather
|
|
8
4
|
module Satchel
|
|
5
|
+
autoload :VERSION, 'leather/satchel/version'
|
|
6
|
+
autoload :Error, 'leather/satchel/error'
|
|
7
|
+
|
|
9
8
|
# IOC Container Class
|
|
10
9
|
class Container
|
|
11
10
|
# Container constructor
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Leather
|
|
4
|
+
module Satchel
|
|
5
|
+
module Error
|
|
6
|
+
autoload :UnknownIdentifierError, 'leather/satchel/error/unknown_identifier_error'
|
|
7
|
+
autoload :InvalidFactoryError, 'leather/satchel/error/invalid_factory_error'
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: leather-satchel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christopher Birmingham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -61,6 +61,7 @@ extra_rdoc_files: []
|
|
|
61
61
|
files:
|
|
62
62
|
- LICENSE
|
|
63
63
|
- lib/leather/satchel.rb
|
|
64
|
+
- lib/leather/satchel/error.rb
|
|
64
65
|
- lib/leather/satchel/error/invalid_factory_error.rb
|
|
65
66
|
- lib/leather/satchel/error/unknown_identifier_error.rb
|
|
66
67
|
- lib/leather/satchel/version.rb
|