alki 0.2.0 → 0.3.0

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: bab3b631c216a5a4ca029904251c38faec707269
4
- data.tar.gz: 3e495653eb662df01c8e5b3e0e65a0a07bc88d34
3
+ metadata.gz: e86bb1b3528f9cb309acbc92afc214435f8a2277
4
+ data.tar.gz: a58361e3a16adfdeabfe85f340baef09559250c2
5
5
  SHA512:
6
- metadata.gz: 50dec6b5e5a8dfa767d1b21e05041a95033f8a2e5e76282d6f4a1306b9d7169364d83a252d9e83a96012047ac1ff31d9d02ca6e21a4a2b27077bf42340d5d7e2
7
- data.tar.gz: e8b4b00970c0baea4f6486dbcc2d9e34f810dc38ec48288ac856851433b5727670e3174e47bdabf60770de2fae96d95b9acc1f0ac521f67e45812fc41fa0f8d1
6
+ metadata.gz: de5bc37efcdadd68024bad12dcc29219484888ed31c2d0b09cd634d877ac097696335ff5ac38fbb6fd917ca3b0b35458c4fd18a549e10b967801aa50dfb48989
7
+ data.tar.gz: 2e129fbb5b609d32be08ace86498a77183a59ceccf2b60330cf09f77986408484e503f021ce61d5f430ac2f882a2a2c90fb9757bd622b8975cfd5d305cd45dbb
@@ -7,10 +7,10 @@ Gem::Specification.new do |spec|
7
7
  spec.name = "alki"
8
8
  spec.version = Alki::VERSION
9
9
  spec.authors = ["Matt Edlefsen"]
10
- spec.email = ["matt@xforty.com"]
10
+ spec.email = ["matt.edlefsen@gmail.com"]
11
11
  spec.summary = %q{Base library for building applications.}
12
12
  spec.description = %q{Base library for building applications. Provides tools for organizing and connection application units.}
13
- spec.homepage = "https://gitlab.xforty.com/matt/base-alki"
13
+ spec.homepage = "https://github.com/medlefsen/alki"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
@@ -22,6 +22,12 @@ module Alki
22
22
  super root
23
23
  end
24
24
 
25
- Alki::Util.create_class(name,klass)
25
+ mod = Module.new
26
+ mod.const_set :Package, klass
27
+ mod.send :define_singleton_method, :new do
28
+ klass.new
29
+ end
30
+
31
+ Alki::Util.create_class(name,mod)
26
32
  end
27
33
  end
@@ -1,5 +1,6 @@
1
- require 'minitest/autorun'
1
+ require 'bundler'
2
2
  Bundler.setup(:default,:test)
3
+ require 'minitest/autorun'
3
4
 
4
5
  class Minitest::Spec
5
6
  def app_root
@@ -1,3 +1,3 @@
1
1
  module Alki
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alki
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Edlefsen
@@ -41,7 +41,7 @@ dependencies:
41
41
  description: Base library for building applications. Provides tools for organizing
42
42
  and connection application units.
43
43
  email:
44
- - matt@xforty.com
44
+ - matt.edlefsen@gmail.com
45
45
  executables: []
46
46
  extensions: []
47
47
  extra_rdoc_files: []
@@ -84,7 +84,7 @@ files:
84
84
  - test/integration/loader_test.rb
85
85
  - test/test_helper.rb
86
86
  - test/unit/package_processor_test.rb
87
- homepage: https://gitlab.xforty.com/matt/base-alki
87
+ homepage: https://github.com/medlefsen/alki
88
88
  licenses:
89
89
  - MIT
90
90
  metadata: {}