argsy 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -0
  3. data/argsy.gemspec +5 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 88526113ba2dd53ad74e38032ff79b7779e1aed1d45f7717405e850cc4b5ba83
4
- data.tar.gz: a4a5fc03b8c24c355cd8dd9b59db891b4c90d36846f07602742f1ed46fa072ac
3
+ metadata.gz: 3256f0bcb885a31edda0e07a835d5ece79ec013ad4fe814d9e0fa558ea956c57
4
+ data.tar.gz: b13b330f2c9f38e8977dc1b9d8a012d3209a0ed30001ec46cab48d21e01f23b4
5
5
  SHA512:
6
- metadata.gz: 2f64292c7aea41e91ba44eb0cde25aab733282aba5744e2b396a9e907b1501d892385d4dda3244fdc5c88a2f033b1c2de6016f2be10ecc840b2615615b60ab1e
7
- data.tar.gz: '0789bbc4c7047c9e696f913b1868d1d7dd9ca1b77bbbcfe9d04b911f49bdee3a1524a85b6ff6ebbdab08eeda2320b6182538952cfd57ce557a10cd72e2b0e944'
6
+ metadata.gz: efd6018c20f1176ac6e62ecc9d742f449903720589a0b5b6f55ac31dd299dd1e57cd37c553e8ef095b8fe897b8eefbda75d88b841c92252336fe3e6924c329d9
7
+ data.tar.gz: 567b0893f7b2545c178dff01f2081fb2684fa84cd26b6a8b6726834afe5c9e023d79b99c241d4eb33fc2605be4b6e0d5bd6b41e7df36e8e28c05901d17b2f636
data/README.md CHANGED
@@ -4,6 +4,7 @@ Tiny helper snippet you can paste into your CLI script(s) to obtain "commands +
4
4
  external dependencies.
5
5
 
6
6
  [![Build](https://travis-ci.org/kolotaev/argsy.svg?branch=master)](https://travis-ci.org/kolotaev/argsy)
7
+ [![Gem Version](https://badge.fury.io/rb/argsy.svg)](https://badge.fury.io/rb/argsy)
7
8
  [![License](https://upload.wikimedia.org/wikipedia/commons/e/ee/Unlicense_Blue_Badge.svg)](https://raw.githubusercontent.com/kolotaev/argsy/master/LICENSE.txt)
8
9
 
9
10
  ## Rationale
@@ -1,6 +1,5 @@
1
- lib = 'lib/argsy.rb'
2
-
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
1
+ lib = File.expand_path("../lib/", __FILE__)
2
+ $LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
4
3
 
5
4
  Gem::Specification.new do |spec|
6
5
  spec.authors = ['Egor Kolotaev']
@@ -9,9 +8,9 @@ Gem::Specification.new do |spec|
9
8
  spec.homepage = 'https://github.com/kolotaev/argsy'
10
9
  spec.license = 'The Unlicense'
11
10
  spec.name = 'argsy'
12
- spec.require_paths = [lib]
11
+ spec.require_paths = %w(lib)
13
12
  spec.required_ruby_version = '>= 2.4.5'
14
13
  spec.description = spec.summary
15
- spec.files = %w(LICENSE.txt README.md argsy.gemspec) + Dir[lib]
16
- spec.version = '0.1.0'
14
+ spec.files = %w(LICENSE.txt README.md argsy.gemspec) + Dir["lib/**/*.rb"]
15
+ spec.version = '0.1.1'
17
16
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: argsy
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
  - Egor Kolotaev
@@ -28,7 +28,7 @@ metadata: {}
28
28
  post_install_message:
29
29
  rdoc_options: []
30
30
  require_paths:
31
- - lib/argsy.rb
31
+ - lib
32
32
  required_ruby_version: !ruby/object:Gem::Requirement
33
33
  requirements:
34
34
  - - ">="