alki-loader 0.2.3 → 0.2.4

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: ced8913faadb5b05cb55df071adfc382551ad962
4
- data.tar.gz: 44ad42d0a521ad8a1e81dc44b542649d672795c0
3
+ metadata.gz: c88316dfc8d853022896fef7cf996e1b569d2f9e
4
+ data.tar.gz: a778bce27e8c4424b8dbbc5e86d462d05be7528d
5
5
  SHA512:
6
- metadata.gz: 8d482a63aeac51417d3ba69f601f8e8a3b8a6a25d7c3cbb96d9aeb3549e8e2ec39061b6c5130ab7dac156246887d5ae16c65814596a8f14a278ab08f2efc45e7
7
- data.tar.gz: 1e3f1365fd9a2cb2f210777c8748c8902a407df781504a82238e45541a88e4e3107fa46353fffec1f0cdd3e1474004d0e94467e4c43cea590ecc569b6dc05440
6
+ metadata.gz: d5d5d4e1f957f4211aeabd1ceb0cfe4531be561c63288c5f2ffb090d199b46dd1b4ab4b4688dcf7124e7c51986c79375a1587fd13ae3d3a7b67d0f4ea90d51dd
7
+ data.tar.gz: d6640524d4b4fe44197c6487eb423edcb3c9367e76e5ccf937dfa91b7d4d6e445314941c3cde6d54043148014a5bd2304ba0e6ccda92b2d1346a8e03923b8a68
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /spec/reports/
9
9
  /tmp/
10
10
  *.gem
11
+ /bin/
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.10
4
+ - 2.5.1
5
+ - jruby
data/README.adoc CHANGED
@@ -1,5 +1,7 @@
1
1
  # Alki::Loader
2
2
 
3
+ image:https://travis-ci.org/alki-project/alki-loader.svg?branch=master["Build Status", link="https://travis-ci.org/alki-project/alki-loader"]
4
+
3
5
  Alki loader is a library for using "non-standard" source files in your project. What is
4
6
  a non-standard source file?
5
7
 
data/alki-loader.gemspec CHANGED
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{Library for loading non-traditional ruby files}
13
13
  spec.homepage = "https://github.com/alki-project/alki-loader"
14
14
  spec.license = "MIT"
15
+ spec.required_ruby_version = '>= 2.1.0'
15
16
 
16
17
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
18
  f.match(%r{^(test|spec|features)/})
@@ -20,5 +21,5 @@ Gem::Specification.new do |spec|
20
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
22
  spec.require_paths = ["lib"]
22
23
 
23
- spec.add_dependency "alki-support", "~> 0.7"
24
+ spec.add_dependency "alki-support", "~> 0.7", ">= 0.7.1"
24
25
  end
@@ -1,5 +1,5 @@
1
1
  module Alki
2
2
  module Loader
3
- VERSION = "0.2.3"
3
+ VERSION = "0.2.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alki-loader
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Edlefsen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-08-31 00:00:00.000000000 Z
11
+ date: 2018-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: alki-support
@@ -17,6 +17,9 @@ dependencies:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0.7'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.7.1
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -24,6 +27,9 @@ dependencies:
24
27
  - - "~>"
25
28
  - !ruby/object:Gem::Version
26
29
  version: '0.7'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 0.7.1
27
33
  description:
28
34
  email:
29
35
  - matt.edlefsen@gmail.com
@@ -32,14 +38,13 @@ extensions: []
32
38
  extra_rdoc_files: []
33
39
  files:
34
40
  - ".gitignore"
41
+ - ".travis.yml"
35
42
  - CODE_OF_CONDUCT.md
36
43
  - Gemfile
37
44
  - LICENSE.txt
38
45
  - README.adoc
39
46
  - Rakefile
40
47
  - alki-loader.gemspec
41
- - bin/bundler
42
- - bin/rake
43
48
  - lib/alki/loader.rb
44
49
  - lib/alki/loader/core_ext/kernel.rb
45
50
  - lib/alki/loader/entry.rb
@@ -57,7 +62,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
57
62
  requirements:
58
63
  - - ">="
59
64
  - !ruby/object:Gem::Version
60
- version: '0'
65
+ version: 2.1.0
61
66
  required_rubygems_version: !ruby/object:Gem::Requirement
62
67
  requirements:
63
68
  - - ">="
@@ -65,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
70
  version: '0'
66
71
  requirements: []
67
72
  rubyforge_project:
68
- rubygems_version: 2.5.2
73
+ rubygems_version: 2.6.12
69
74
  signing_key:
70
75
  specification_version: 4
71
76
  summary: Library for loading non-traditional ruby files
data/bin/bundler DELETED
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
- #
4
- # This file was generated by Bundler.
5
- #
6
- # The application 'bundler' is installed as part of a gem, and
7
- # this file is here to facilitate running it.
8
- #
9
-
10
- require "pathname"
11
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
- Pathname.new(__FILE__).realpath)
13
-
14
- require "rubygems"
15
- require "bundler/setup"
16
-
17
- load Gem.bin_path("bundler", "bundler")
data/bin/rake DELETED
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
- #
4
- # This file was generated by Bundler.
5
- #
6
- # The application 'rake' is installed as part of a gem, and
7
- # this file is here to facilitate running it.
8
- #
9
-
10
- require "pathname"
11
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
- Pathname.new(__FILE__).realpath)
13
-
14
- require "rubygems"
15
- require "bundler/setup"
16
-
17
- load Gem.bin_path("rake", "rake")