leather-satchel 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15ee87d76e6b5c7aa9316453df972a619fddf82971d21208137edf3a3d0b7ebf
4
- data.tar.gz: 9dadbe1159d2e3a9ba5ad40c40c45b80ac65b532751b4a4028c24f6032067fe5
3
+ metadata.gz: 9c531f034f0e6cf6c139f9eaa51b5280df321a2ce8ec370cc5f5429a1cfb9402
4
+ data.tar.gz: 0a05b7cb604130890d73f43db41b8b1459b4b588f2e375cb99c5afbf4b94fcc9
5
5
  SHA512:
6
- metadata.gz: 668268e41263032d6736113f0756c4348bd7e38d2e4464a6af1152c5b3a0951d4686a6007d6c350c442a5f4ba2a20e4af2e3b89606c9216897e90737d313b25a
7
- data.tar.gz: 55eb24fcc57552e6e00ed1ae3551c016153dafa761e4c107c5e0cd903d304314d3ed3552afb035b8e1fe969a8c81590cd0ea8875e94ef1418c1297654382ec78
6
+ metadata.gz: d8b4a4a05edab3a71ce914619af0d35b73348d51e1914eb763cd816deeeb4f8218b9110308d934b20f12f1230737b09742d93519e9399eaa3ddd923f4ef077c7
7
+ data.tar.gz: 65d7be73ad4b1bcf280ac3554df72cab3847432744257a66ae11b0e591f8b6ac2dd2cdf076a946af3758ce51cdcbc607e345381d26134c2fc1acfbe6099ed698
@@ -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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Leather
4
4
  module Satchel
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.1'
6
6
  end
7
7
  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.0
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: 2019-10-08 00:00:00.000000000 Z
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