cli-console 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/cli-console.gemspec +1 -0
- data/lib/cli-console/version.rb +1 -1
- metadata +3 -2
data/README.md
CHANGED
data/cli-console.gemspec
CHANGED
@@ -12,6 +12,7 @@ Gem::Specification.new do |gem|
|
|
12
12
|
gem.description = 'Basic library for making interactive command-line applications much easier'
|
13
13
|
gem.summary = 'Create CLI applications easily'
|
14
14
|
gem.homepage = 'https://github.com/davispuh/CLI-Console'
|
15
|
+
gem.license = 'UNLICENSE'
|
15
16
|
|
16
17
|
gem.files = `git ls-files`.split($/)
|
17
18
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/cli-console/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cli-console
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -32,7 +32,8 @@ files:
|
|
32
32
|
- spec/cli-console_spec.rb
|
33
33
|
- spec/spec_helper.rb
|
34
34
|
homepage: https://github.com/davispuh/CLI-Console
|
35
|
-
licenses:
|
35
|
+
licenses:
|
36
|
+
- UNLICENSE
|
36
37
|
post_install_message:
|
37
38
|
rdoc_options: []
|
38
39
|
require_paths:
|